BREAKING: Supabase Access Issues in Brazil – Workarounds Available
Supabase experiencing connectivity issues from some providers in Brazil. Immediate workarounds and status checks inside.
Incident Summary
Supabase is currently experiencing access issues from certain internet providers in Brazil. This appears to be a regional connectivity problem rather than a complete service outage.
What's Affected
How to Check If You're Affected
1. Check your location: Are your users or servers in Brazil? 2. Test connectivity: Try connecting to your Supabase project from Brazil using: ```bash curl -v https://[your-project].supabase.co/rest/v1/ ``` 3. Monitor your app logs for connection timeouts or refused connections 4. Check Supabase Status Page: Visit status.supabase.com for real-time updates 5. Verify your ISP: Some Brazilian providers are affected; others are not
Immediate Workarounds
1. Use VPN/Proxy (Temporary)
2. Implement Connection Retry Logic
```javascript const { createClient } = require('@supabase/supabase-js')const supabase = createClient(url, key, { db: { schema: 'public', }, auth: { persistSession: true, }, global: { fetch: fetch.bind(globalThis), }, realtime: { params: { eventsPerSecond: 10, }, }, }) ``` Add exponential backoff retry mechanisms in your application code.
3. Use Regional Alternatives (If Available)
4. Implement Client-Side Caching
5. Switch to HTTPS Polling (Temporary)
Alternative Services to Consider
Next Steps
1. Monitor Supabase status page continuously 2. Implement connection retry logic immediately 3. Communicate with Brazilian users about temporary slowdowns 4. Avoid making infrastructure changes during incident 5. Document which ISPs are affected for future reference
Updates
I'm unsure of:
Check official Supabase status page for authoritative updates.
Last Updated: Monitor status.supabase.com for real-time incident updates.