kfaraz commented on issue #13080: URL: https://github.com/apache/druid/issues/13080#issuecomment-1248845069
@599166320 , drop is handled by `DropRule`s like a `ForeverDropRule`, none of the `LoadRule`s are supposed to have that capability. You typically specify a bunch of rules for each datasource. The coordinator tries to find the first rule which applies to a given segment at a given time and tries to do what that matched rule suggests. If at any point in the lifetime of a segment, it matches with a `DropRule`, it gets dropped. So, I think the problem you are facing can be solved by simply having a `ForeverDropRule` at the end of your retention rule list (default or datasource-specific). Please let us know if this works for you. -- 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]
