Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CELEBORN-1568] Support worker retries in MiniCluster
### What changes were proposed in this pull request? ### Why are the changes needed? https://github.com/apache/celeborn/actions/runs/10417785546/job/28852691241#step:4:5804 Now the worker retry logic, the first time of sleep is 2000, the second time is 4000000, and the third time is 8000000000 milliseconds. It is estimated that it will be difficult to complete the retry. ```scala Thread.sleep(math.pow(2000, workerStartRetry).toInt) ``` ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? GA Closes #2692 from cxzl25/CELEBORN-1568. Authored-by: sychen <[email protected]> Signed-off-by: mingji <[email protected]> (cherry picked from commit 973e31e) Signed-off-by: mingji <[email protected]>
- Loading branch information