This message was deleted.
# general
s
This message was deleted.
a
@Gururaj K.P, for data that’s already been published/ingested, I think you need to run a separate batch ingestion task with either deep storage or the druid datasource as your input source. Streaming supervisors can’t do much after the task is complete in order to overwrite if that makes sense. Two ways to overwrite data: • Run
REPLACE
queries in MSQ: https://druid.apache.org/docs/latest/multi-stage-query/concepts.html#overwrite-data-with-replace • Or if you’re on an older system that doesn’t have MSQ, as you pointed out, native batch ingestion should work too: https://druid.apache.org/docs/latest/ingestion/native-batch.html#replacing-or-appending-data
🙌 1