Skip to content

Commit

Permalink
Increase threshold for stalled FTE scheduler logging
Browse files Browse the repository at this point in the history
  • Loading branch information
losipiuk committed Jan 3, 2024
1 parent 1706df0 commit 19a8696
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ private static class Scheduler
// If scheduler is stalled for SCHEDULER_STALLED_DURATION_THRESHOLD debug log will be emitted.
// This value must be larger than EVENT_PROCESSING_ENFORCED_FREQUENCY as prerequiste for processing is
// that there are no events in the event queue.
private static final long SCHEDULER_STALLED_DURATION_THRESHOLD_MILLIS = MINUTES.toMillis(5);
private static final long SCHEDULER_STALLED_DURATION_THRESHOLD_MILLIS = MINUTES.toMillis(10);
private static final long SCHEDULER_STALLED_DURATION_ON_TIME_EXCEEDED_THRESHOLD_MILLIS = SECONDS.toMillis(30);
private static final int EVENTS_DEBUG_INFOS_PER_BUCKET = 10;

Expand Down

0 comments on commit 19a8696

Please sign in to comment.