Skip to content

Commit

Permalink
fix assigning ForceIOPoolThreads (#7138)
Browse files Browse the repository at this point in the history
  • Loading branch information
kruall authored Jul 26, 2024
1 parent 45dd216 commit 7ea1c14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ydb/tools/cfg/dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,8 @@ def make_configure_request(self, domain):
if self._cluster_details.use_auto_config:
app_config.ActorSystemConfig.CpuCount = self._cluster_details.dynamic_cpu_count
app_config.ActorSystemConfig.NodeType = app_config.ActorSystemConfig.ENodeType.Value('COMPUTE')
app_config.ActorSystemConfig.ForceIOPoolThreads = self._cluster_details.force_io_pool_threads
if self._cluster_details.force_io_pool_threads is not None:
app_config.ActorSystemConfig.ForceIOPoolThreads = self._cluster_details.force_io_pool_threads
action.AddConfigItem.ConfigItem.Config.CopyFrom(app_config)
action.AddConfigItem.EnableAutoSplit = True

Expand Down

0 comments on commit 7ea1c14

Please sign in to comment.