Error types
500 - Internal Server Error
Message: “The server had an error while processing your request” This is a temporary internal error on the server side.503 - Service Overloaded
Message: “The engine is currently overloaded, please try again later” The service is experiencing high traffic.How to handle server errors
-
Wait before retrying
- 500 errors: Wait 30-60 seconds
- 503 errors: Wait 60-120 seconds
-
Use exponential backoff
-
Set appropriate timeouts
- Increase timeout values for your HTTP client
- Consider async operations for better handling
When to contact support
Contact support if:- Errors persist for more than 10 minutes
- You see patterns of failures at specific times
- Error messages contain additional details
- Error messages and codes
- Time when errors occurred
- Your code snippet (remove API keys)
- W&B entity and project names
Inference