You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use the same configuration files for IoTDB DataNode and Standalone version, all under the conf.
datanode-env.sh/bat:Environment configurations, in which we could set the memory allocation of DataNode and Standalone.
iotdb-datanode.properties:IoTDB DataNode system configurations.
Hot Modification Configuration
For the convenience of users, IoTDB provides users with hot modification function, that is, modifying some configuration parameters in iotdb-datanode.properties and iotdb-common.properties during the system operation and applying them to the system immediately.
In the parameters described below, these parameters whose way of Effective is hot-load support hot modification.
Trigger way: The client sends the command(sql) load configuration to the IoTDB server.
The environment configuration file is mainly used to configure the Java environment related parameters when DataNode is running, such as JVM related configuration. This part of the configuration is passed to the JVM when the DataNode starts.
The details of each parameter are as follows:
MAX_HEAP_SIZE
Name
MAX_HEAP_SIZE
Description
The maximum heap memory size that IoTDB can use
Type
String
Default
On Linux or MacOS, the default is one quarter of the memory. On Windows, the default value for 32-bit systems is 512M, and the default for 64-bit systems is 2G.
Effective
After restarting system
HEAP_NEWSIZE
Name
HEAP_NEWSIZE
Description
The minimum heap memory size that IoTDB will use when startup
Type
String
Default
On Linux or MacOS, the default is min{cores * 100M, one quarter of MAX_HEAP_SIZE}. On Windows, the default value for 32-bit systems is 512M, and the default for 64-bit systems is 2G.
Effective
After restarting system
MAX_DIRECT_MEMORY_SIZE
Name
MAX_DIRECT_MEMORY_SIZE
Description
The max direct memory that IoTDB could use
Type
String
Default
Equal to the MAX_HEAP_SIZE
Effective
After restarting system
JMX_LOCAL
Name
JMX_LOCAL
Description
JMX monitoring mode, configured as yes to allow only local monitoring, no to allow remote monitoring
Type
Enum String: "true", "false"
Default
true
Effective
After restarting system
JMX_PORT
Name
JMX_PORT
Description
JMX listening port. Please confirm that the port is not a system reserved port and is not occupied
Type
Short Int: [0,65535]
Default
31999
Effective
After restarting system
JMX_IP
Name
JMX_IP
Description
JMX listening address. Only take effect if JMX_LOCAL=false. 0.0.0.0 is never allowed
Type
String
Default
127.0.0.1
Effective
After restarting system
JMX Authorization
We STRONGLY RECOMMENDED you CHANGE the PASSWORD for the JMX remote connection.
The user and passwords are in ${IOTDB_CONF}/conf/jmx.password.
The permission definitions are in ${IOTDB_CONF}/conf/jmx.access.
The directories of data files. Multiple directories are separated by comma. The starting directory of the relative path is related to the operating system. It is recommended to use an absolute path. If the path does not exist, the system will automatically create it.
Type
String[]
Default
data/datanode/data (Windows: data\datanode\data)
Effective
After restarting system
dn_multi_dir_strategy
Name
dn_multi_dir_strategy
Description
IoTDB's strategy for selecting directories for TsFile in tsfile_dir. You can use a simple class name or a full name of the class. The system provides the following three strategies: 1. SequenceStrategy: IoTDB selects the directory from tsfile_dir in order, traverses all the directories in tsfile_dir in turn, and keeps counting; 2. MaxDiskUsableSpaceFirstStrategy: IoTDB first selects the directory with the largest free disk space in tsfile_dir; 3. MinFolderOccupiedSpaceFirstStrategy: IoTDB prefers the directory with the least space used in tsfile_dir; 4. UserDfineStrategyPackage (user-defined policy) You can complete a user-defined policy in the following ways: 1. Inherit the cn.edu.tsinghua.iotdb.conf.directories.strategy.DirectoryStrategy class and implement its own Strategy method; 2. Fill in the configuration class with the full class name of the implemented class (package name plus class name, UserDfineStrategyPackage); 3. Add the jar file to the project.
Type
String
Default
SequenceStrategy
Effective
hot-load
dn_consensus_dir
Name
dn_consensus_dir
Description
The directories of consensus files. It is recommended to use an absolute path.
Type
String
Default
data/datanode/consensus
Effective
After restarting system
dn_wal_dirs
Name
dn_wal_dirs
Description
Write Ahead Log storage path. It is recommended to use an absolute path.
Type
String
Default
data/datanode/wal
Effective
After restarting system
dn_tracing_dir
Name
dn_tracing_dir
Description
The tracing root directory path. It is recommended to use an absolute path.
Type
String
Default
datanode/tracing
Effective
After restarting system
dn_sync_dir
Name
dn_sync_dir
Description
The directories of sync files. It is recommended to use an absolute path.
Type
String
Default
data/datanode/sync
Effective
After restarting system
Metric Configuration
Enable GC log
GC log is off by default.
For performance tuning, you may want to collect the GC info.
To enable GC log, just add a parameter "printgc" when you start the DataNode.