jasonk000 edited a comment on issue #10902:
URL: https://github.com/apache/druid/issues/10902#issuecomment-850017416


   Seems most likely related to this
   
https://github.com/apache/druid/blob/8296123d895db7d06bc4517db5e767afb7862b83/indexing-service/src/main/java/org/apache/druid/indexing/seekablestream/SeekableStreamIndexTask.java#L155-L163
   
   If `druid.indexer.task.restoreTasksOnRestart` is not true, then 
`stopForcefully` is issued.
   ```
   
     @Override
     public void stopGracefully(TaskConfig taskConfig)
     {
       if (taskConfig.isRestoreTasksOnRestart()) {
         getRunner().stopGracefully();
       } else {
         getRunner().stopForcefully();
       }
     }
   ```


-- 
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]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to