Drastic Slowness while executing the UI elements and processing background workflows

Describe the problem/error/question

Drastic Slowness while executing the UI elements and processing background workflows, The UI actions are taking very long time to load .

Currenlty hosted on t3a.xlarge on ec2 instance where as 50% utilisation also not been reached.

What is the error message (if any)?

N/A

Please share your workflow

N/A

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

  • n8n version: Version 1.79.3
  • Database (default: SQLite): Local Docker Volume
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
  • Operating system: Linux

hello @Ravindra_Sai

Please, share the workflow.

You can select all nodes with ctrl+a, copy it with ctrl+c. Then past the content here after pressing button </> with ctrl+v.

Agree with @barn4k, but the UI is very common to come to a crawl with largescale operations happening live, even with tons of specs allocated.

It’s usually to do with the UI trying to store all outputs into memory to allow for “easy visualization”. And sometimes I’ve seen it when the server is overloaded and the socket cannot keep up so it lags the UI.

Hey @Ravindra_Sai

This is normal because you are probably loading a lot of information to your browser. This is not related to your server.

Your browser stores all the text and JSON you retrieve from the websites you are crawling, while you are testing your workflow.

An alternative is to create sub-workflows for parts of your logic.

That way you would process everything on the server, without storing data on your browser. And then make the sub-workflow return only a small set of information.
.

:point_right: If my reply answers your question, please remember to mark it as a solution.