mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
Update MergeTreeSettings.h
This commit is contained in:
parent
7546c611fb
commit
f1ee1ef16a
@ -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. */ \
|
||||||
|
Loading…
Reference in New Issue
Block a user