BREAKING: Supabase Project Status Change Failures Across Multiple Regions
Supabase experiencing widespread project status change failures. Immediate workarounds and mitigation steps inside.
BREAKING: Supabase Project Status Change Failures Identified
What's Down
Supabase is currently experiencing project status change failures across multiple regions. This affects:
Note: Core database and API functionality appear operational. This is isolated to project management operations.
Immediate Workarounds
For Project Pausing/Resuming
1. Wait for automatic recovery - Status changes typically resolve within 15-30 minutes 2. Use the Supabase Management API directly (if you have API keys): ```bash curl -X PATCH https://api.supabase.com/v1/projects/{project-id} \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"status": "active"}' ``` 3. Contact Supabase Support via dashboard chat for manual intervention if urgentFor Project Deletion
For Production Services
1. Verify your database is still accessible - connect directly via connection string 2. Test API endpoints - make direct requests to confirm real-time/REST APIs function 3. Implement retry logic - if you're building automation around status changes 4. Route around the dashboard - use CLI or API for critical operationsHow to Check If You're Affected
1. Dashboard Test: Try pausing a non-critical project in the Supabase console 2. Check Status Page: Visit https://status.supabase.com/ for official updates 3. Verify Connection: Test database connectivity: ```bash psql "postgresql://user:password@host:port/database" -c "SELECT 1;" ``` 4. API Health: Test your endpoint: ```bash curl https://your-project.supabase.co/rest/v1/health ```
Alternatives & Mitigation
Short-term
Temporary Solutions
Expected Resolution
Supabase engineering is investigating. Most regional failures resolve within 30-60 minutes. Persistent issues may require manual intervention by support team.
Recommendations
✅ Do:
❌ Don't:
Updates: Check @supabase on Twitter and official status page for real-time updates.