Skip to content

Commit b225011

Browse files
authored
actualize production config (#335)
1 parent 5d38521 commit b225011

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

app/server/config/config.prod.yaml

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ logger:
1010
metrics_server:
1111
endpoint:
1212
host: "0.0.0.0"
13-
port: 8766
13+
port: 8767
1414

1515
paging:
1616
bytes_per_page: 4194304
@@ -32,32 +32,38 @@ data_source_default: &data_source_default_var
3232
datasources:
3333
clickhouse:
3434
<<: *data_source_default_var
35+
pushdown:
36+
enable_timestamp_pushdown: false # YQ-4063
3537

3638
greenplum:
3739
<<: *data_source_default_var
40+
pushdown:
41+
enable_timestamp_pushdown: true
3842

3943
ms_sql_server:
4044
<<: *data_source_default_var
45+
pushdown:
46+
enable_timestamp_pushdown: false # YQ-4062
4147

4248
mysql:
4349
<<: *data_source_default_var
4450
result_chan_capacity: 1024
51+
pushdown:
52+
enable_timestamp_pushdown: true
4553

4654
postgresql:
4755
<<: *data_source_default_var
48-
49-
oracle:
50-
<<: *data_source_default_var
51-
52-
mongodb:
53-
<<: *data_source_default_var
54-
count_docs_to_deduce_schema: 5
55-
object_id_yql_type: OBJECT_ID_AS_STRING
56-
57-
redis:
58-
<<: *data_source_default_var
59-
count_docs_to_deduce_schema: 100
56+
pushdown:
57+
enable_timestamp_pushdown: true
58+
splitting:
59+
enabled: true
60+
table_physical_size_threshold_bytes: 104857600 #100 MB
6061

6162
ydb:
6263
<<: *data_source_default_var
6364
use_underlay_network_for_dedicated_databases: false
65+
mode: MODE_QUERY_SERVICE_NATIVE
66+
pushdown:
67+
enable_timestamp_pushdown: true
68+
splitting:
69+
enabled_on_column_shards: true

examples/docker_compose/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
ydb:
3-
image: ghcr.io/ydb-platform/local-ydb:24.3.11.13
3+
image: ghcr.io/ydb-platform/local-ydb:25.1.4.7
44
container_name: fq-example-ydb
55
hostname: localhost
66
ports:

0 commit comments

Comments
 (0)