You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently do not batch agent metadata. This causes a fair number of requests and DB load. Our documentation even has a formula for how much DB load a number of metadata would generate.
You can expect (10 * 6 * 2) / 4 or 30 writes per second.
There are a couple of ways we could optimize this:
Batch metadata on the agent side and only send them when there is new data
Batch metadata on the coderd side (similar to what we do for agent stats)
The text was updated successfully, but these errors were encountered:
We currently do not batch agent metadata. This causes a fair number of requests and DB load. Our documentation even has a formula for how much DB load a number of metadata would generate.
There are a couple of ways we could optimize this:
The text was updated successfully, but these errors were encountered: