Hello Darryl Schmidt,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you found background worker "azure_mise_service_worker" (PID 1638153) exited with exit code 1.
This is a platform-level component failure requiring systematic diagnostics before any restart actions, with immediate Azure Support via your Azure Portal escalation being the primary resolution path for persistent occurrences.
Though, I will escalate from here, however before restarting:
-- Check for blocking issues before any restart
SELECT pid, usename, datname, query, state, wait_event_type, wait_event
FROM pg_stat_activity
WHERE state = 'active' AND query != '<IDLE>'
ORDER BY query_start DESC;
Implement log analysis:
- Azure Portal > PostgreSQL Server > Server Logs
- Filter timeframe 15 minutes BEFORE first occurrence
- Search patterns: "mise", "worker", "OOM", "connection refused"
Check Azure metrics correlation:
- CPU utilization spikes ≥95%
- Memory pressure indicators
- Storage IOPs/throughput limits
https://free.blessedness.top/en-us/azure/postgresql/flexible-server/howto-configure-and-access-logs
Validate the resources:
-- Critical resource checks
SELECT
schemaname,
relname,
n_dead_tup as dead_tuples,
n_live_tup as live_tuples,
last_autovacuum
FROM pg_stat_user_tables
WHERE n_dead_tup > 1000000
ORDER BY n_dead_tup DESC;
https://free.blessedness.top/en-us/azure/postgresql/flexible-server/how-to-maintenance
Then, you can perform safe restart procedure:
- Ensure recent backup exists
- Check Azure Service Health for regional issues
- Schedule during maintenance window
# 1. Drain connections gracefully
# 2. Azure Portal → Overview → Restart (Forced = No)
# 3. Monitor restart progress via Azure Activity Log
https://free.blessedness.top/en-us/azure/postgresql/flexible-server/how-to-restart-server
I hope this is helpful! Do not hesitate to let me know if you have any other questions or clarifications.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.