gianm commented on PR #18767: URL: https://github.com/apache/druid/pull/18767#issuecomment-3560744271
The specific scenario I saw this in had an error like: ``` Failed to return start time: Task java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask@703f49ef[Not completed, task = java.util.concurrent.Executors$RunnableAdapter@7219380a[Wrapped task = org.apache.druid.indexing.seekablestream.supervisor.SeekableStreamSupervisor$$Lambda$1573/0x000000f801db8228@6ff15c29]] rejected from java.util.concurrent.ScheduledThreadPoolExecutor@1eb21b5c[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 1] ``` It happened because the callback on `getStartTimeAsync` tried to submit a task to a `scheduledExec` that had already been stopped. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
