This is an automated email from the ASF dual-hosted git repository. jiangtian pushed a commit to branch fix_compression_by_type_1.3 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 17456c0a66a4c1b07ef01a01712464877bf771aa Author: Jiang Tian <[email protected]> AuthorDate: Wed Aug 20 18:59:41 2025 +0800 Fix some capitalizations in config template (#16216) --- .../assembly/resources/conf/iotdb-system.properties.template | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties.template b/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties.template index 417198fce0e..bcfe4756b22 100644 --- a/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties.template +++ b/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties.template @@ -971,32 +971,32 @@ default_text_encoding=PLAIN # BOOLEAN compression when creating schema automatically is enabled # effectiveMode: hot_reload # Datatype: TSEncoding -boolean_compressor=lz4 +boolean_compressor=LZ4 # INT32/DATE compression when creating schema automatically is enabled # effectiveMode: hot_reload # Datatype: TSEncoding -int32_compressor=lz4 +int32_compressor=LZ4 # INT64/TIMESTAMP compression when creating schema automatically is enabled # effectiveMode: hot_reload # Datatype: TSEncoding -int64_compressor=lz4 +int64_compressor=LZ4 # FLOAT compression when creating schema automatically is enabled # effectiveMode: hot_reload # Datatype: TSEncoding -float_compressor=lz4 +float_compressor=LZ4 # DOUBLE compression when creating schema automatically is enabled # effectiveMode: hot_reload # Datatype: TSEncoding -double_compressor=lz4 +double_compressor=LZ4 # TEXT/BINARY/BLOB compression when creating schema automatically is enabled # effectiveMode: hot_reload # Datatype: TSEncoding -text_compressor=lz4 +text_compressor=LZ4 #################### ### Query Configurations
