Update MergeTreeSettings.h

This commit is contained in:
alexey-milovidov 2020-12-10 22:50:54 +03:00 committed by GitHub
parent 7546c611fb
commit f1ee1ef16a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,8 +17,8 @@ struct Settings;
#define LIST_OF_MERGE_TREE_SETTINGS(M) \ #define LIST_OF_MERGE_TREE_SETTINGS(M) \
M(UInt64, min_compress_block_size, 0, "The actual size of the block to compress of each table, if this setting doesn't set, using corresponding global setting.", 0) \ M(UInt64, min_compress_block_size, 0, "When granule is written, compress the data in buffer if the size of pending uncompressed data is larger or equal than the specified threshold. If this setting is not set, the corresponding global setting is used.", 0) \
M(UInt64, max_compress_block_size, 0, "The maximum size of blocks of uncompressed data of each table before compressing for writing to a table, if this setting doesn't set, using correspondin global setting.", 0) \ M(UInt64, max_compress_block_size, 0, "Compress the pending uncompressed data in buffer if its size is larger or equal than the specified threshold. Block of data will be compressed even if the current granule is not finished. If this setting is not set, the corresponding global setting is used.", 0) \
M(UInt64, index_granularity, 8192, "How many rows correspond to one primary key value.", 0) \ M(UInt64, index_granularity, 8192, "How many rows correspond to one primary key value.", 0) \
\ \
/** Data storing format settings. */ \ /** Data storing format settings. */ \