cryptoe commented on code in PR #13353: URL: https://github.com/apache/druid/pull/13353#discussion_r1033617245
########## docs/multi-stage-query/reference.md: ########## @@ -234,6 +234,9 @@ The following table lists query limits: | Number of output columns for any one stage. | 2,000 | `TooManyColumns` | | Number of workers for any one stage. | Hard limit is 1,000. Memory-dependent soft limit may be lower. | `TooManyWorkers` | | Maximum memory occupied by broadcasted tables. | 30% of each [processor memory bundle](concepts.md#memory-usage). | `BroadcastTablesTooLarge` | +| Maximum relaunches per worker. Initial run is not a relaunch. The worker will be spawned 1 + workerRelaunchLimit times before erroring out. | 2 | `WorkerRelaunchedTooManyTimes` | +| Maximum relaunches across all workers. | 30 | `TotalRelaunchLimitExceededFault` | Review Comment: Updated the maximum relaunched across all workers to 100 but I do agree with @LakshSingla that it should depend on the number of workers of the job eventually. -- 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]
