Skip to content

Commit

Permalink
Fix an error: compression was wrongly configured, #13
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-milovidov committed Apr 21, 2024
1 parent b82479a commit 22217dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ CREATE USER website IDENTIFIED WITH sha256_hash BY 'E3B0C44298FC1C149AFBF4C8996F
SETTINGS
add_http_cors_header = 1,
max_result_rows = 1048576,
network_compression_method = 'zstd',
network_zstd_compression_level = 6,
enable_http_compression = 1,
http_zlib_compression_level = 6,
replace_running_query = 1,
skip_unavailable_shards = 1,
max_parallel_replicas = 100,
Expand All @@ -96,6 +96,7 @@ SETTINGS
analyze_index_with_space_filling_curves = 0,
max_execution_time = 180,
priority CHANGEABLE_IN_READONLY,
read_through_distributed_cache = 0,
readonly = 1;

GRANT SELECT ON default.planes_mercator TO website;
Expand Down

0 comments on commit 22217dd

Please sign in to comment.