KKcorps commented on code in PR #14741:
URL: https://github.com/apache/pinot/pull/14741#discussion_r1901447872
##########
pinot-core/src/main/java/org/apache/pinot/core/data/manager/realtime/RealtimeTableDataManager.java:
##########
@@ -119,6 +121,10 @@ public class RealtimeTableDataManager extends
BaseTableDataManager {
public static final long READY_TO_CONSUME_DATA_CHECK_INTERVAL_MS =
TimeUnit.SECONDS.toMillis(5);
+ public static final long TIMEOUT_MINUTES = 5;
+ public static final long TIMEOUT_MS = TIMEOUT_MINUTES * 60 * 1000;
+ public static final long SLEEP_INTERVAL_MS = 30000; // 30 seconds sleep
interval
Review Comment:
Let's make whatever of these possible as configurable.
--
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]