File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1
1
PY3TEST()
2
2
3
+ ENV(YDB_CHANNEL_BUFFER_SIZE ="8388608")
4
+
3
5
PEERDIR(
4
6
ydb/tests/tools/ydb_serializable/lib
5
7
ydb/public/sdk/python
Original file line number Diff line number Diff line change @@ -377,6 +377,9 @@ def __init__(
377
377
if os .getenv ("YDB_HARD_MEMORY_LIMIT_BYTES" ):
378
378
self .yaml_config ["memory_controller_config" ] = {"hard_limit_bytes" : int (os .getenv ("YDB_HARD_MEMORY_LIMIT_BYTES" ))}
379
379
380
+ if os .getenv ("YDB_CHANNEL_BUFFER_SIZE" ):
381
+ self .yaml_config ["table_service_config" ]["resource_manager" ]["channel_buffer_size" ] = int (os .getenv ("YDB_CHANNEL_BUFFER_SIZE" ))
382
+
380
383
if pg_compatible_expirement :
381
384
self .yaml_config ["table_service_config" ]["enable_prepared_ddl" ] = True
382
385
self .yaml_config ["table_service_config" ]["enable_ast_cache" ] = True
You can’t perform that action at this time.
0 commit comments