An Azure service that automates the access and use of data across clouds without writing code.
Thank you for reaching out to Microsoft Q&A.
The issue you are experiencing occurs because the Logic Apps Standard designer must fully load workflow metadata, referenced workflows, API connections, and parameter schemas before the designer becomes stable. When you have 60+ workflows, the designer performs deep introspection on every referenced child workflow. This leads to slow parameter hydration, the spinner you see beside actions that call other workflows, and situations where the designer allows a save before all components have fully loaded. This results in missing or uninitialized parameters, especially in workflows using database connectors. Additionally, because your Logic Apps Standard instance runs in an ASE, file system and metadata retrieval operations incur additional latency, further degrading performance. Although I searched your organization’s files, meetings, emails, chats, and events, there is no internal documentation available that addresses Logic Apps Standard designer performance or parameter loading delays.
Refer below points to resolve this issue or use the following workarounds:
- Use Visual Studio Code instead of the Portal Designer
The portal designer performs heavy metadata hydration, which slows down as your workflow count grows. VS Code works directly with the underlying JSON files and avoids this delay. This approach also aligns with internal Microsoft-directed development practices referenced in your organization’s notifications about Logic Apps development using VS Code.
- Break your Logic Apps solution into smaller Standard projects
Avoid placing dozens of workflows into a single Logic App Standard project. Split workflows into grouped projects (e.g., related functional domains). This significantly reduces designer load time because metadata hydration becomes lighter per project.
- Avoid relying on “child workflow” designer actions for large-scale solutions
Whenever possible, consider switching child-workflow calls to HTTP actions or Service Bus–based orchestration, which reduces dependency on the designer loading deeply nested workflow parameter definitions.
- Reduce designer UI rendering load
Collapse scopes and avoid opening multiple browser tabs containing designer sessions to reduce initialization time and prevent partially loaded UI states.
- Use stateless workflows wherever applicable
Stateless workflows initialize faster and contain less metadata to parse compared to stateful workflows. Although the training deck found in your organization does not explicitly mention designer performance, it does document the difference between stateful and stateless workflows, validating that stateless workflows are lighter.