if i increase the segment flush threshold time to ...
# troubleshooting
p
if i increase the segment flush threshold time to 5 min, would that cause the zookeeper persitence storage to go up?
m
Yes that would be a reason. You probably want to limit retention to that so you keep only the last N snapshots.
p
Thanks Mayank. when you say retention, which retention do you mean? not the retention of the data right?
or is it the same retentiontime specified by retentiontimeunit ?
m
No, this is not Pinot, but ZK. You need to set retention policy for ZK snapshot: https://zookeeper.apache.org/doc/r3.4.5/zookeeperAdmin.html
Also, as a side note, you probably want to run ZK separately from Pinot. The helm charts/docker image on the docs page are for QuickStart reference only, and necessarily for production env.
p
Sure, Thanks