From 105975d04d313a70f94d7656936a4a256a88e687 Mon Sep 17 00:00:00 2001 From: Oleg Mitsura Date: Wed, 1 Jun 2022 10:00:56 -0400 Subject: Kafka producer parameters updated to be consistent with frankfurt Issue-ID: CCSDK-3737 Signed-off-by: kuldipr Change-Id: I00cba2f644abf85778abf17ee3fb9e102ac5f42f --- .../ccsdk/cds/blueprintsprocessor/message/BluePrintMessageLibData.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ms/blueprintsprocessor/modules/commons/message-lib/src/main') diff --git a/ms/blueprintsprocessor/modules/commons/message-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/message/BluePrintMessageLibData.kt b/ms/blueprintsprocessor/modules/commons/message-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/message/BluePrintMessageLibData.kt index e0e073d49..9316fdf89 100644 --- a/ms/blueprintsprocessor/modules/commons/message-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/message/BluePrintMessageLibData.kt +++ b/ms/blueprintsprocessor/modules/commons/message-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/message/BluePrintMessageLibData.kt @@ -55,8 +55,8 @@ open class KafkaBasicAuthMessageProducerProperties : MessageProducerProperties() lateinit var clientId: String var acks: String = "all" // strongest producing guarantee - var maxBlockMs: Int = 250 // max blocking time in ms to send a message - var reconnectBackOffMs: Int = 60 * 60 * 1000 // time in ms before retrying connection (1 hour) + var maxBlockMs: Int = 5000 // max blocking time in ms to send a message + var reconnectBackOffMs: Int = 5000 // time in ms before retrying connection (5 seconds) var enableIdempotence: Boolean = true // ensure we don't push duplicates override fun getConfig(): HashMap { -- cgit 1.2.3-korg