You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
enable_anchor_profiling should be set in the logging section of static config for every component according to the new spec field (%true if filed value is nil or true) by adding a field with yson tag in some struct of config generators (somewhere around here)
it is expected all config tests canondata will expectedly fail since new field is added with default, so they need to be re-canonized (there should be env var for that)
add confgi generator test for the false behaviour
removed
we can configure it in ytop like that:
```
yt set //sys/scheduler/config/logging '{enable_anchor_profiling=%true}'
yt set //sys/controller_agents/config/logging '{enable_anchor_profiling=%true}'
yt set //sys/@config/cell_master/logging '{enable_anchor_profiling=%true}'
yt set //sys/cluster_nodes/@config/exe/logging '{enable_anchor_profiling=%true}'
yt set //sys/cluster_nodes/@config/dat/logging '{enable_anchor_profiling=%true}'
yt set //sys/cluster_nodes/@config/tab/logging '{enable_anchor_profiling=%true}'
yt set //sys/http_proxies/@config '{logging={enable_anchor_profiling=%true}}'
yt set //sys/rpc_proxies/@config '{logging={enable_anchor_profiling=%true}}'
yt set //sys/queue_agents/config/logging '{enable_anchor_profiling=%true}'
yt set //sys/query_tracker/config '{logging={enable_anchor_profiling=%true}}'
```
The text was updated successfully, but these errors were encountered:
Correction - it should not be done like that by operator. The snippet from the issue is a way to set these options via dynamic config, but they are also easily configurable on a level of static config, and we generally adhere to setting static config from ytop, not the dynamic one.
Until this hasn't been done in the server-side ytsaurus/ytsaurus#868
*bool
please) option should be added in some part of the ytsaurus shared between the components related to logging (maybe here https://github.com/ytsaurus/yt-k8s-operator/blob/c439d7c703365a3d87827cc0bd3f0ac368eaa05d/api/v1/ytsaurus_types.go#L162-L162)enable_anchor_profiling
should be set in the logging section of static config for every component according to the new spec field (%true
if filed value isnil
ortrue
) by adding a field with yson tag in some struct of config generators (somewhere around here)removed
we can configure it in ytop like that: ``` yt set //sys/scheduler/config/logging '{enable_anchor_profiling=%true}' yt set //sys/controller_agents/config/logging '{enable_anchor_profiling=%true}' yt set //sys/@config/cell_master/logging '{enable_anchor_profiling=%true}' yt set //sys/cluster_nodes/@config/exe/logging '{enable_anchor_profiling=%true}' yt set //sys/cluster_nodes/@config/dat/logging '{enable_anchor_profiling=%true}' yt set //sys/cluster_nodes/@config/tab/logging '{enable_anchor_profiling=%true}' yt set //sys/http_proxies/@config '{logging={enable_anchor_profiling=%true}}' yt set //sys/rpc_proxies/@config '{logging={enable_anchor_profiling=%true}}' yt set //sys/queue_agents/config/logging '{enable_anchor_profiling=%true}' yt set //sys/query_tracker/config '{logging={enable_anchor_profiling=%true}}' ```The text was updated successfully, but these errors were encountered: