-
Notifications
You must be signed in to change notification settings - Fork 585
Open
Labels
Description
Requirement - what kind of business use case are you trying to solve?
At the moment showing a query for a large number of results e.g. limit=1500 fetches a lot of data to UI which makes it not responsible enough.
Q: Not sure if the issue is caused by a large amount of data or just displaying points in the top graph.
It's related to jaegertracing/jaeger#954 which asks for adding sorting logic on the server side. If the backed can fetch and sort more traces in memory than UI this can be a workaround.
Also somehow indirectly related to jaegertracing/jaeger#1051 and jaegertracing/jaeger#960
Proposal - what do you suggest to solve the problem or improve the existing situation?
Instead of returning all data to UI e.g. traces with tags, logs operation names the backend could return summary with only necessary data. Then when on clicking on a trace UI would query backed for full trace instance.