mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Increase asynchronous_metrics_update_period_s to avoid syncing MemoryTracking with RSS
This commit is contained in:
parent
745cb4ab2f
commit
2832255164
@ -0,0 +1,4 @@
|
|||||||
|
<yandex>
|
||||||
|
<!-- this update period also syncs MemoryTracking with RSS, disable this, by using period = 1 day -->
|
||||||
|
<asynchronous_metrics_update_period_s>86400</asynchronous_metrics_update_period_s>
|
||||||
|
</yandex>
|
@ -8,7 +8,10 @@ from helpers.cluster import ClickHouseCluster
|
|||||||
|
|
||||||
cluster = ClickHouseCluster(__file__)
|
cluster = ClickHouseCluster(__file__)
|
||||||
|
|
||||||
instance = cluster.add_instance('instance', main_configs=['configs/conf.xml'])
|
instance = cluster.add_instance('instance', main_configs=[
|
||||||
|
'configs/conf.xml',
|
||||||
|
'configs/asynchronous_metrics_update_period_s.xml',
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope='module', autouse=True)
|
@pytest.fixture(scope='module', autouse=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user