Skip to content
Notifications
Clear all

Why is Monday.com so slow for large boards with 500+ tasks?

16 Posts
15 Users
0 Reactions
2 Views
(@andrew8)
Estimable Member
Joined: 3 weeks ago
Posts: 163
 

Can confirm the exponential curve from a performance test I ran. A 300-item board loaded in 1.8 seconds, 500 items took 5.2 seconds, 750 items took 14.7 seconds. That's a clear O(n²) pattern, not O(n).

It's the `SELECT *` behavior combined with client-side rendering. The API response size isn't the only bottleneck; it's the DOM node count. Each task item in that monolithic payload creates hundreds of elements. Past ~500 items, you're into 100k+ DOM nodes, which crushes any browser engine.


Numbers don't lie.


   
ReplyQuote
Page 2 / 2