Hi Team,
We are planning to add a de-duplication flow for our solution. As part of that, we are doing 2 things:
1. Enable UPSERT in realtime table.
- Flink has the key set.
- Primary key defined in schema and realtime table using it.
- UPSERT working fine.
2. For realtime to offline flow via minion, we found that these duplicates were coming in OFFLINE table.
- so we tried with mergeType: dedup (earlier it was concat)
Now, the realtime to offline flow has stopped working (no data in OFFLINE table, minion is up and running)
Queries:
--------
1. Is our dedup flow proper? UPSERT for realtime and mergeType: dedup for realtime to offline flow?
2. Any pointers around why this realtime to offline flow stopped working after adding these configs?