kfaraz commented on issue #13979:
URL: https://github.com/apache/druid/issues/13979#issuecomment-1491814724

   1. Segments are permanently stored in deep storage (e.g. S3). If a 
historical goes down, nothing is lost permanently and the missing segments can 
always be loaded on a different historical.
   2. When a historical goes down, the segments being served by that historical 
would become under-replicated or even unavailable if the segment had only 1 
copy in the cluster.
   3. When segments are unavailable, queries would not return data for that 
segment.
   4. As soon as the new historical loads these missing segments, the data is 
available for query again.
   
   If you don't want data to be unavailable at any point, the method of doing 
this right now is to mark the historical as "decommissioning". The Druid 
coordinator would then move all segments on this "decommissioning" historical 
to other active historicals. Once all segments are removed from the 
"decomissioning" historical, it can be safely terminated.
   
   Please refer to the configuration in the docs here for example usage of 
"decomissioning":
   
https://druid.apache.org/docs/latest/configuration/index.html#dynamic-configuration


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

Reply via email to