Skip to content

Commit

Permalink
CORE-18382 Base Flow Engine fiber timeout on flow config value
Browse files Browse the repository at this point in the history
  • Loading branch information
eryksr3 committed May 7, 2024
1 parent 4723294 commit 140e39d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ private FlowConfig() {
public static final String PROCESSING_MAX_FLOW_SLEEP_DURATION = "processing.maxFlowSleepDuration";
public static final String PROCESSING_FLOW_MAPPER_CLEANUP_TIME = "processing.cleanupTime";
public static final String PROCESSING_MAX_IDLE_TIME = "processing.maxIdleTime";
public static final String PROCESSING_FLOW_FIBER_TIMEOUT = "processing.fiberTimeout";
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@
"maximum": 2147483647,
"default": 600000
},
"fiberTimeout": {
"description": "The length of time in milliseconds before fiber times out. This value must be lower than subscription.processorTimeout.",
"type": "integer",
"minimum": 1000,
"maximum": 2147483647,
"default": 11250
},
"poolSize": {
"description": "The size of the flow event processing pool size.",
"type": "integer",
Expand Down

0 comments on commit 140e39d

Please sign in to comment.