We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7767a75 + ab99023 commit 426f640Copy full SHA for 426f640
cmd/execution_builder.go
@@ -1048,6 +1048,9 @@ func (exeNode *ExecutionNode) LoadIngestionEngine(
1048
// consistency of collection can be checked by checking hash, and hash comes from trusted source (blocks from consensus follower)
1049
// hence we not need to check origin
1050
requester.WithValidateStaking(false),
1051
+ // we have observed execution nodes occasionally fail to retrieve collections using this engine, which can cause temporary execution halts
1052
+ // setting a retry maximum of 10s results in a much faster recovery from these faults (default is 2m)
1053
+ requester.WithRetryMaximum(10*time.Second),
1054
)
1055
1056
if err != nil {
0 commit comments