mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
Fix
This commit is contained in:
parent
d837aa675f
commit
5d8b1cea91
@ -347,7 +347,7 @@ void FileCache::fillHolesWithEmptyFileSegments(
|
|||||||
++it;
|
++it;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (file_segments.size() >= file_segments_limit)
|
if (file_segments_limit && file_segments.size() >= file_segments_limit)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (current_pos <= range.right)
|
if (current_pos <= range.right)
|
||||||
|
@ -22,6 +22,7 @@ SETTINGS min_bytes_for_wide_part = 0,
|
|||||||
type = cache,
|
type = cache,
|
||||||
max_size = '128Mi',
|
max_size = '128Mi',
|
||||||
max_file_segment_size = '10Ki',
|
max_file_segment_size = '10Ki',
|
||||||
|
boundary_alignment = '5Ki',
|
||||||
path = '${CLICKHOUSE_TEST_UNIQUE_NAME}',
|
path = '${CLICKHOUSE_TEST_UNIQUE_NAME}',
|
||||||
cache_on_write_operations = 1,
|
cache_on_write_operations = 1,
|
||||||
enable_filesystem_query_cache_limit = 1,
|
enable_filesystem_query_cache_limit = 1,
|
||||||
|
Loading…
Reference in New Issue
Block a user