Is there a way to turn off the the recording of time series data in a single node cluster via some start up flags? I'm using cockroachdb version 20.1.2.
It appears this property will turn it off
timeseries.storage.enabled=false
or you can set these to 0s
timeseries.storage.resolution_10s.ttl=0s
timeseries.storage.resolution_30m.ttl=0s
I'm running cockroach in a docker container and would like to set these properties when cockroach starts but I get errors when I try to set those properties as flags. Meaning this throws an error for invalid flag:
start-single-node --timeseries.storage.enabled=false --insecure
Is there a way to turn off timeseries data storage on startup without running queries to change cluster settings?