dev_docs/key_concepts/performance/server_side.mdx
Node.js is single threaded which means a single CPU-intensive server-side, synchronous operation will block any other functionality waiting to execute on the Kibana server. The affects background tasks, like alerts, and search sessions, as well as search requests and page loads.
When writing code that will run on the server, don't block the event loop. Instead consider: