abhishekagarwal87 commented on pull request #12172: URL: https://github.com/apache/druid/pull/12172#issuecomment-1041907689
So this is the flow in `getLockedIntervals` test - submit an ingestion task (But don't wait for the data to load) - wait for the intervals to be locked and verify (test keeps polling the lockedIntervals API in a loop) - wait for all the tasks to complete - unload the datasource in a finally block now what is likely happening is that segments are not loaded yet after the ingestion task is finished. so the serverInventory in coordinator doesn't know yet about the datasource. This causes an exception while unloading the datasource since coordinator doesn't know about it yet. -- 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]
