- Documented the suggestion to tune the kafka parameter for the case
when client provides a non existent topic for the async batch usecase.
Issue-ID: CPS-2069
Change-Id: I93e1b3006c901b6b4fc3a61df16d3cb82e6c9906
Signed-off-by: mpriyank <priyank.maheshwari@est.tech>
- When asynchronous (with topic) operations are executed, a request id (UUID) will be returned.
+**Note.** The client topic is validated to ensure it adheres to Kafka's topic naming conventions. Additionally, if a client specifies a topic that does not exist, the request might be delayed. To enable a fail-fast mechanism, the max.block.ms parameter can be adjusted to define the maximum duration the request is allowed to block. The parameter is 60000ms by default but can be set to a lower value.
+
+.. code:: bash
+
+ spring.kafka.producer.properties.max.block.ms: <value_in_ms>
+
+
Request Body
============
Bug Fixes
---------
-
Features
--------