Abhishek Radhakrishnan
Abhishek Radhakrishnan
@TessaIO are you interested in getting this change in with some testing? I can help review the change when it's ready. Thanks!
@micomahesh1982 - the datasource will exist as long as there's at least one segment. Is there active ingestion that's creating data during or after issuing a kill task for the...
Ah, I think I see what's happening - you have an `ALL` granularity segment that spans `-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z`. In the kill task payload noted above, you have `"interval": "1000-01-01T00:00:00.000Z/2999-12-31T00:00:00.000Z"`. The kill...
@micomahesh1982, you can enable auto-kill, please see these docs - https://druid.apache.org/docs/latest/operations/clean-metadata-store/#configure-automated-metadata-cleanup and https://druid.apache.org/docs/latest/configuration/#coordinator-operation. > I’m not sure how to dynamically delete the ALL granular segments. Setting the `druid.coordinator.kill.*` properties in...
Closing this issue as the behavior was clarified.
Linking https://github.com/apache/druid/pull/17952 that adds a unit test to help reproduce the issue.
Thanks @gianm @cryptoe. Yes, setting `"plannerStrategy": "DECOUPLED"` is the current workaround we have that produces correct results. Related, some unnest queries in the decoupled planning mode generated sub-optimal plans taking...
That’s right from a task logs perspective, @kfaraz. However, on 32.0.1, I noticed some error and warning logs on the Overlord that lacked the additional context, which prompted me to...
@teyeheimans, that does look like a bug. This is the relevant introspection code for map lookups: https://github.com/apache/druid/blob/master/server/src/main/java/org/apache/druid/query/lookup/MapLookupExtractorFactory.java#L156. I think `getValues()` response should just be `map.values()` instead of `map.values().toString()`, which would...
Btw, you can directly query a map lookup in SQL: `SELECT "k", "v" FROM "lookup"."mapLookup"`. This should return the keys and values in the correct string form. The Druid web-console...