An Azure service that provides an event-driven serverless compute platform.
Slow loading or unresponsive blades in the Azure portal for a Function App are typically not caused by the Function App runtime itself but by one of the following:
- Platform or service-side issues
- As seen in similar cases, when both the portal experience (blades) and backend operations (like function execution or related services such as Document Intelligence) are slow or timing out, the root cause is often a temporary service-side or regional issue in Azure rather than configuration or code.
- These issues can be region-specific and intermittent, and may not always be clearly surfaced in the error messages.
- Configuration or connectivity issues impacting the Function App
Even if the portal UI is what appears slow, underlying Function App problems can cause portal operations (like loading configuration, functions list, or invocation settings) to hang or fail:- Misconfigured or unreachable storage account (
AzureWebJobsStorage) or other critical app settings. - Network restrictions (VNet integration, NSG rules, firewalls, private endpoints) that block the portal’s calls to the Function App/Kudu endpoints.
- Binding or trigger misconfigurations that prevent the host from initializing correctly.
- Misconfigured or unreachable storage account (
- Code/runtime resource issues causing the host to be unhealthy
- High CPU/memory usage, long-running or stuck functions, or runtime exceptions can lead to an unhealthy script host.
- When the script host is unhealthy or not available, the portal may hang while trying to load functions, invocation details, or configuration.
- Daily execution quota or app being stopped/disabled
- If a daily execution quota is configured and exceeded, the Function App is temporarily disabled. This can make some portal controls unavailable or slow/unresponsive until the quota is reset or the next 24‑hour window.
- In this state, the portal can appear partially functional but fail to load or update certain blades.
Because similar behavior was previously traced to Azure backend issues, it is possible that the current behavior is again due to a transient platform or regional problem. However, the exact cause must be verified at the time of the incident.
Recommended checks:
- Check Azure Status and Service Health in the Azure portal for incidents affecting the region of the Function App.
- Verify that the Function App is healthy and not hitting configuration issues:
- Confirm critical app settings (like
AzureWebJobsStorage,FUNCTIONS_WORKER_RUNTIME, and binding-specific settings) are valid and the storage account is reachable. - Ensure there are no misconfigured network restrictions blocking portal access to the app.
- Confirm critical app settings (like
- If the app uses a daily execution quota, check whether it has been exceeded and, if so, reset or increase the quota and restart the app.
- If the issue persists and no service incident is reported, raise a support request so Azure Support can check for backend or regional issues.
References:
- Resolve "Function App Down or Reporting Errors" issues
- Troubleshoot error: "Azure Functions Runtime is unreachable"
- App settings reference for Azure Functions
- Manage your function app
- Troubleshoot slow app performance issues in Azure App Service
- How to Deploy my Web App with a Minimum Delay? - Microsoft Q&A
- Document Intelligence classification and extraction requests timing out - Microsoft Q&A
- Azure Deployment Takes 70 Minutes to Fail with Obscure Error - Microsoft Q&A