Share via

Azure function app configured invocation blades options loading very slow, unable to change settings.

Muthusamy, Reegan 40 Reputation points
2026-06-03T15:29:58.7966667+00:00

Azure function app configured invocation blades options loading very slow, unable to change settings.

What would be the cause for this? few months back we got the same issue other services. it was identified that, issues with azure backend. cause for the issue still the same? sometimes azure portal behave like this ?

Azure Functions
Azure Functions

An Azure service that provides an event-driven serverless compute platform.


1 answer

Sort by: Most helpful
  1. AI answer

    2026-06-03T15:30:15.6466667+00:00

    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:

    1. 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.
    2. 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.
    3. 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.
    4. 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:

    1. Check Azure Status and Service Health in the Azure portal for incidents affecting the region of the Function App.
    2. 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.
    3. 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.
    4. 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:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.