This message was deleted.
# troubleshooting
s
This message was deleted.
a
how many segments do you have in an interval?
a
looks like 32768
Copy code
"rowStats": {
    "determinePartitions": {
      "processed": 86721828,
      "processedWithError": 0,
      "thrownAway": 0,
      "unparseable": 0
    },
    "buildSegments": {
      "processed": 32768,
      "processedWithError": 0,
      "thrownAway": 0,
      "unparseable": 0
    }
a
yeah. that's too many.
we use short to represent the partition identifier in an interval so we can't exceed the 32768. what you are seeing here is short overflow
a
Thank you for your answer. I fixed my mistake 😊