I shut down my cluster at night and clickhouse isn...
# general
b
I shut down my cluster at night and clickhouse isn't shutting down cleanly. How do I shutdown clickhouse (and whatever other components need to stop) so I can shutdown the cluster and then restart the cluster successfully? Thanks!
s
The command above removes all the Kubernetes components associated with the chart and deletes the release except for ClickHouse CRD resources due to
finalizers
.
To delete resources accociated to
ClickHouseInstallations
instance:
```kubectl -n platform patch \
clickhouseinstallations.clickhouse.altinity.com/my-release-clickhouse \
-p '{"metadata":{"finalizers":[]}}' --type=merge```
https://signoz.io/docs/operate/kubernetes/#uninstall
b
I don't want to uninstall and reinstall every day. I just want to shut down overnight. I found some clickhouse instructions on how to shut down the database, so I'm going to try that today.