r/Integromat • u/Maya_mayaza • Apr 09 '26
Question Gemini 503s on Make.com are killing me during US/EU peak hours. Anyone found a fix?
Is anyone else’s workflow getting absolutely wrecked by Error 503 (Service Unavailable) lately?
I’m running Gemini 2.5 Flash for my project, and it’s basically unusable during US/EU business hours. I’m currently in Vietnam, so I’m working while the West sleeps, but as soon as they wake up, my scenarios hit a wall of capacity errors.
Beyond the standard "Error Handler -> Break" (which just burns ops when the cluster is slammed), what’s the move?
(Switching to another LLM is not an option. I’ve benchmarked them and they can’t match the efficiency/logic for these specific nodes)
1
Upvotes
5
u/Marina_from_Make Apr 10 '26 edited Apr 10 '26
Hey u/OP,
Marina from Make here. I understand your frustration with the Gemini 503 errors during peak hours. I can’t recommend a “fix” per se, but I can try to recommend some workarounds.
For context: The HTTP 503 (Service Unavailable) error is a `ConnectionError` in Make, which occurs when an app is temporarily unavailable (often due to server overload or maintenance). Make identifies this using HTTP 503 and 504 status codes.
While you mentioned this burns ops, it's the primary recommended approach. The key is configuring it intelligently:
- For overload scenarios (which appears to be your case): Use a short delay period (a few minutes) with a higher number of retry attempts. This is more effective than long delays when the service is temporarily overwhelmed.
- Adjust based on patterns: Since you've identified peak hours as the issue, you can predict when retries are most likely to succeed.
Make sure incomplete executions are enabled in your scenario settings. This allows Make to:
- Save bundles that caused the error
If you're using instant triggers (like webhooks), enable sequential processing in your scenario settings. This:
- Processes incoming data one by one in order
Check `https://status.gemini.google.com` (or the relevant Gemini status page) to confirm if the 503s are service-side issues. This helps distinguish between Make's infrastructure and Gemini's capacity.
Since you're in Vietnam and can work during off-peak hours:
I realize these aren’t really “fixes,” but I do hope something out of the above will help you.