org.apache.iotdb.itbase.env.BaseConfig Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.iotdb.itbase.env;
import java.util.Properties;
public interface BaseConfig {
default void clearAllProperties() throws UnsupportedOperationException {
throw new UnsupportedOperationException("Method clearAllProperties not implement");
}
default Properties getEngineProperties() throws UnsupportedOperationException {
throw new UnsupportedOperationException("Method getEngineProperties not implement");
}
default Properties getClusterProperties() throws UnsupportedOperationException {
throw new UnsupportedOperationException("Method getClusterProperties not implement");
}
default BaseConfig setMaxNumberOfPointsInPage(int maxNumberOfPointsInPage) {
return this;
}
default BaseConfig setPageSizeInByte(int pageSizeInByte) {
return this;
}
default BaseConfig setGroupSizeInByte(int groupSizeInByte) {
return this;
}
default BaseConfig setMemtableSizeThreshold(long memtableSizeThreshold) {
return this;
}
default BaseConfig setDataRegionNum(int dataRegionNum) {
return this;
}
default BaseConfig setPartitionInterval(long partitionInterval) {
return this;
}
default BaseConfig setCompressor(String compressor) {
return this;
}
default BaseConfig setMaxQueryDeduplicatedPathNum(int maxQueryDeduplicatedPathNum) {
return this;
}
default BaseConfig setRpcThriftCompressionEnable(boolean rpcThriftCompressionEnable) {
return this;
}
default BaseConfig setRpcAdvancedCompressionEnable(boolean rpcAdvancedCompressionEnable) {
return this;
}
default BaseConfig setUdfCollectorMemoryBudgetInMB(float udfCollectorMemoryBudgetInMB) {
return this;
}
default BaseConfig setUdfTransformerMemoryBudgetInMB(float udfTransformerMemoryBudgetInMB) {
return this;
}
default BaseConfig setUdfReaderMemoryBudgetInMB(float udfReaderMemoryBudgetInMB) {
return this;
}
default BaseConfig setEnableSeqSpaceCompaction(boolean enableSeqSpaceCompaction) {
return this;
}
default BaseConfig setEnableUnseqSpaceCompaction(boolean enableUnseqSpaceCompaction) {
return this;
}
default BaseConfig setEnableCrossSpaceCompaction(boolean enableCrossSpaceCompaction) {
return this;
}
default BaseConfig setEnableIDTable(boolean isEnableIDTable) {
return this;
}
default BaseConfig setDeviceIDTransformationMethod(String deviceIDTransformationMethod) {
return this;
}
default BaseConfig setAutoCreateSchemaEnabled(boolean enableAutoCreateSchema) {
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy