I added a new table yesterday to my pinot cluster ...
# troubleshooting
l
I added a new table yesterday to my pinot cluster I wonder what could have caused this metrics to go up a lot
idk if i made the segment size for this particular table too big, since it’s still consuming from yesterday and it hasn’t created new segments
m
The off heap usage is from consuming segments
What’s your setting for the segment size thresholds
l
Copy code
"realtime.segment.flush.threshold.rows": "500000000",
        "realtime.segment.flush.threshold.time": "24h",
        "realtime.segment.flush.segment.size": "250M"
may have gone too crazy with that first
n
You should set the rows threshold to 0, only then will the size threshold kick in
Other than that the config looks fine
l
🙏 thank you
can I do that while my segment is already going? what would happen to it
n
You can, it should apply from the next segment onwards. But if this consuming segment is looking like it might create problems, it might even be a good idea to restart the servers so that this segment also picks up the config
🙌 1