codope commented on issue #5780: URL: https://github.com/apache/hudi/issues/5780#issuecomment-1245166831
There could be two most common kinds of 5xx errors: 500 and 503. In case of 500 (internal service error), the reasons could be any kind of service failure (but not degradation). In case of 503 (slowdown/degradation), most likely the rate limiter is not allowing the request through. Either way, Hudi has an exponential backoff [retry mechanism](https://github.com/apache/hudi/blob/1b2179269efab4eb419fdcbc2a4fad717ee8b343/hudi-common/src/main/java/org/apache/hudi/common/table/view/RemoteHoodieTableFileSystemView.java#L181) to handle such scenarios. But it needs to be configured using [retry config](https://hudi.apache.org/docs/configurations#hoodiefilesystemoperationretryenable). -- 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]
