mh-boy commented on issue #8291: ReferenceCountedSegment is acquired too many times URL: https://github.com/apache/incubator-druid/issues/8291#issuecomment-520830289 I encountered the same issue : it occured when peon task immediately persisted data to local file system generated smoosh files,after that, concurrent queries aquire these smoosh files as ReferenceCountingSegment, made their **_referents_**(Phaser) register too many parties and didn't deregister them timely, eventually lead to throw above error; we add log in method _**increment()**_ and _**decrement()**_ in ReferenceCountingSegment to print _**referents registerParties**_ use _**getNumReferences()**_, and find out the _**registerParties**_ keep increasing.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
