mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Update docs for settings cross_join_min_rows_to_compress and cross_join_min_bytes_to_compress
This commit is contained in:
parent
a6e06b27d2
commit
2cc1b27fb5
@ -5468,3 +5468,15 @@ Defines how MySQL types are converted to corresponding ClickHouse types. A comma
|
||||
- `datetime64`: convert `DATETIME` and `TIMESTAMP` types to `DateTime64` instead of `DateTime` when precision is not `0`.
|
||||
- `date2Date32`: convert `DATE` to `Date32` instead of `Date`. Takes precedence over `date2String`.
|
||||
- `date2String`: convert `DATE` to `String` instead of `Date`. Overridden by `datetime64`.
|
||||
|
||||
## cross_join_min_rows_to_compress
|
||||
|
||||
Minimal count of rows to compress block in CROSS JOIN. Zero value means - disable this threshold. This block is compressed when any of the two thresholds (by rows or by bytes) are reached.
|
||||
|
||||
Default value: `10000000`.
|
||||
|
||||
## cross_join_min_bytes_to_compress
|
||||
|
||||
Minimal size of block to compress in CROSS JOIN. Zero value means - disable this threshold. This block is compressed when any of the two thresholds (by rows or by bytes) are reached.
|
||||
|
||||
Default value: `1GiB`.
|
||||
|
Loading…
Reference in New Issue
Block a user