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
Prashant Shahi
07/23/2024, 1:45 PM
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%).
Prashant Shahi
07/23/2024, 1:47 PM
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
Nagesh Rathod
07/23/2024, 3:26 PM
Thanks shahi for response i'll implement respectively