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
{{ message }}
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
As detailed in the jaeger traces from #11611 the bundled aggregations code calculates the bundled aggregations for each event to be returned. To calculate the bundled aggregations for a single event is currently requires 6 queries (across 5 transactions).
For some APIs this is (e.g. /events only returns a single event), but /sync or /messages may return many events causing an explosion of queries.
Some of the fetched data is fairly simple and we should be able to fetch the data for multiple events at once, which should save queries. #11660 has some basic timing info that this might be an improvement, I imagine reducing the round-trips from a remote database would cause the gap to be further improved.