-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Description
Is your feature request related to a problem or challenge?
"Tracing" is a visualization technique for understanding how potentially concurrent operations happen, and is common in distributed systems.
You can also visualize DataFusion executions using traces. Here is an example trace we have at InfluxData that is integrated into the rest of our system and visualized using https://www.jaegertracing.io/
This visualization shows when each operator started and stopped (and the operators are annotated with how much CPU time is spent, etc). These spans are integrated into the overall trace of a request through our cloud service, which allows us to understand where a request's time is spent, both across services as well as within our DataFusion based engine.
For more background on tracing, this blog seems to give a reasonable overview: https://signoz.io/blog/distributed-tracing-span/
Describe the solution you'd like
I would like to make it easy for people to add DataFusion ExecutionPlan level tracing to their systems as well.
Given the various different libraries to generate traces I don't think picking any particular one to build into DataFusion is a good idea. However adding some way to walk the ExecutionPlan metrics and emit information that can be turned into traces would be very helpful I think
This came up twice recently, so I wanted to get it filed into a ticket
Describe alternatives you've considered
No response
Additional context
@simonvandel noted in Discord
I have been playing a bit with https://github.com/wolfpld/tracy and https://docs.rs/tracing-tracy/latest/tracing_tracy/ and thought it would be nice to have some visibility into ExecutionPlans being executed.
It also came up in slack: https://the-asf.slack.com/archives/C04RJ0C85UZ/p1709051125059619
But I want to see traces from which I want to calculate how much time spent in executing the queries and how much time got spent into data transfer from a target storage system, It would be good, if you can guide me how can I get these metrics
