Another question :blush: If my ClickHouse Persiste...
# general
n
Another question 😊 If my ClickHouse Persistent Volume Claim (PVC) becomes full after use, can I increase the PVC dynamically and expect ClickHouse to continue working seamlessly? Are there any additional steps I need to follow after the storage is full?
👀 1
p
There is no SigNoz in-built feature for dynamically increasing clickhouse PVC when it is full. You could however create a Go server script which is triggered by webhook alert on high disk usage (let's say >90%).
You will need to bump up the PVC size in override yaml before applying
helm upgrade
. You can use tool like
yq
or golang
yaml
package for that.
n
Thanks shahi for response i'll implement respectively