Package org.apache.iotdb.itbase.env
Interface ClusterConfig
- All Known Implementing Classes:
MppClusterConfig,RemoteClusterConfig
public interface ClusterConfig
-
Method Summary
Modifier and TypeMethodDescriptionGet the iotdb-common.properties setter for both the ConfigNodes and DataNodes.Get the iotdb-common.properties setter of ConfigNodes.Get the iotdb-confignode.properties setter of ConfigNodes.Get the JVM Configuration setter of ConfigNodes.Get the iotdb-common.properties setter of DataNodes.Get the iotdb-datanode.properties setter of DataNodes.Get the JVM Configuration setter of DataNodes.
-
Method Details
-
getDataNodeConfig
DataNodeConfig getDataNodeConfig()Get the iotdb-datanode.properties setter of DataNodes.- Returns:
- the
DataNodeConfiginstance.
-
getDataNodeCommonConfig
CommonConfig getDataNodeCommonConfig()Get the iotdb-common.properties setter of DataNodes. Updating the instance will affect ConfigNodes only.- Returns:
- the
CommonConfiginstance.
-
getConfigNodeConfig
ConfigNodeConfig getConfigNodeConfig()Get the iotdb-confignode.properties setter of ConfigNodes.- Returns:
- the
ConfigNodeConfiginstance.
-
getConfigNodeCommonConfig
CommonConfig getConfigNodeCommonConfig()Get the iotdb-common.properties setter of ConfigNodes. Updating the instance will affect ConfigNodes only.- Returns:
- the
CommonConfiginstance.
-
getCommonConfig
CommonConfig getCommonConfig()Get the iotdb-common.properties setter for both the ConfigNodes and DataNodes. Updating the instance will affect ConfigNodes as well as DataNodes.- Returns:
- the
CommonConfiginstance.
-
getConfigNodeJVMConfig
JVMConfig getConfigNodeJVMConfig()Get the JVM Configuration setter of ConfigNodes.- Returns:
- the
JVMConfiginstance.
-
getDataNodeJVMConfig
JVMConfig getDataNodeJVMConfig()Get the JVM Configuration setter of DataNodes.- Returns:
- the
JVMConfiginstance.
-