From 0de49eb3313ac1ead6fa426e3c38a752001d4052 Mon Sep 17 00:00:00 2001 From: Ted Kaemming <65315+tkaemming@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:14:47 -0700 Subject: [PATCH] Also needed to update here... --- .../ingestion-queues/batch-processing/each-batch-ingestion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-server/src/main/ingestion-queues/batch-processing/each-batch-ingestion.ts b/plugin-server/src/main/ingestion-queues/batch-processing/each-batch-ingestion.ts index 26e60274c32c4b..24a23a33f2882a 100644 --- a/plugin-server/src/main/ingestion-queues/batch-processing/each-batch-ingestion.ts +++ b/plugin-server/src/main/ingestion-queues/batch-processing/each-batch-ingestion.ts @@ -255,7 +255,7 @@ async function emitToOverflow(queue: IngestionConsumer, kafkaMessages: Message[] queue.pluginsServer.kafkaProducer.produce({ topic: KAFKA_EVENTS_PLUGIN_INGESTION_OVERFLOW, value: message.value, - key: null, // No locality guarantees in overflow + key: message.key, headers: message.headers, waitForAck: true, })