Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
modify pipeStuckRestartMinIntervalMs
  • Loading branch information
luoluoyuyu committed Jun 26, 2025
commit 56f97e89f1f4b86f2bdee478e8dd9fd04bb142d3
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public class CommonConfig {
private long pipeMaxAllowedLinkedTsFileCount = Long.MAX_VALUE; // Deprecated
private float pipeMaxAllowedLinkedDeletedTsFileDiskUsagePercentage = 0.1F;
private long pipeStuckRestartIntervalSeconds = 120;
private long pipeStuckRestartMinIntervalMs = 5 * 60 * 1000L; // 5 minutes
private long pipeStuckRestartMinIntervalMs = 10 * 60 * 1000L; // 5 minutes
private boolean pipeEpochKeepTsFileAfterStuckRestartEnabled = false;
private long pipeFlushAfterLastTerminateSeconds = 30;
private long pipeFlushAfterTerminateCount = 30;
Expand Down
Loading