abhishekagarwal87 commented on code in PR #12886:
URL: https://github.com/apache/druid/pull/12886#discussion_r943116145


##########
extensions-core/kinesis-indexing-service/src/main/java/org/apache/druid/indexing/kinesis/KinesisRecordSupplier.java:
##########
@@ -228,7 +228,9 @@ private Runnable fetchRecords()
             recordsResult = null;
 
             if (!records.offer(currRecord, recordBufferOfferTimeout, 
TimeUnit.MILLISECONDS)) {
-              log.warn("OrderedPartitionableRecord buffer full, retrying in 
[%,dms]", recordBufferFullWait);
+              log.warn("OrderedPartitionableRecord buffer full, retrying in 
[%,dms]. "
+                       + "Kinesis records are being processed slower than they 
are fetched.",
+                       recordBufferFullWait);

Review Comment:
   ```suggestion
                 log.warn("Kinesis records are being processed slower than they 
are fetched. "
                          + "OrderedPartitionableRecord buffer full, retrying 
in [%,dms].",
                          recordBufferFullWait);
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to