hello everyone, how can i limit the data signoz po...
# support
a
hello everyone, how can i limit the data signoz pods writes to my disk? since it has so PV and PVC attached to it after being deployed to the EKS cluster
s
Your question is not clear. What do you mean by "limit"? The data you send must be written to disk? Did you mean to ask how to drop some data?
a
i meant for the cold storage , i am saying clickhouse keeps writing to disk? before it moves to s3 bucket right?
Copy code
clickhouse:
  enabled: true
  annotations:
    <http://karpenter.sh/do-not-disrupt|karpenter.sh/do-not-disrupt>: "true"
  coldStorage:
    enabled: true
    defaultKeepFreeSpaceBytes: "2147483648"
s
Yes, it writes to disk first
a
thank you