Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question: how to enable TracedObjectStore? #3589

Open
yanghua opened this issue Mar 24, 2025 · 7 comments
Open

Question: how to enable TracedObjectStore? #3589

yanghua opened this issue Mar 24, 2025 · 7 comments
Labels
help wanted Extra attention is needed question Further information is requested

Comments

@yanghua
Copy link
Collaborator

yanghua commented Mar 24, 2025

I found we have a TracedObjectStore. However, this feature is not used. My question is: How do I enable it? Or can it work?

@yanghua yanghua added help wanted Extra attention is needed question Further information is requested labels Mar 24, 2025
@yanghua
Copy link
Collaborator Author

yanghua commented Mar 24, 2025

cc @westonpace @wjones127

@westonpace
Copy link
Contributor

TracedObjectStore is used by default. I actually don't think you can disable it.

So perhaps the question is more, how can we consume the events emitted by TracedObjectStore?

Right now, there is only one outlet for span traces in pylance and that is to use trace_to_chrome:

from lance.tracing import trace_to_chrome

trace_to_chrome(level="debug", file="/some/file.json")

This will dump all tracing spans into a file using the chrome event viewer format (you can view this file with https://ui.perfetto.dev/)

Is there another way you would like to consume these spans? Perhaps via log messages or some kind of otel integration?

@yanghua
Copy link
Collaborator Author

yanghua commented Mar 25, 2025

Oh, I thought it was disabled by default.

If it is open by default, I would prefer to see it in the log message.

@yanghua
Copy link
Collaborator Author

yanghua commented Apr 2, 2025

@westonpace It seems the generated file with trace_to_chrome can not be parsed by the popular flamegraph tool.

It throws this exception:

Traceback (most recent call last):
  File "./stackcollapse-chrome-tracing.py", line 139, in <module>
    all_events = load_events(args.input_file)
  File "./stackcollapse-chrome-tracing.py", line 83, in load_events
    get_trace_events(trace_file, events)
  File "./stackcollapse-chrome-tracing.py", line 69, in get_trace_events
    for entry in json_data['traceEvents']:
TypeError: list indices must be integers, not str

Is there a recommended way to generate flame diagrams based on this JSON file?

@yanghua
Copy link
Collaborator Author

yanghua commented Apr 2, 2025

Seems there is a library tracing-flame, after importing this, we can add a FlameLayer like this:

use tracing_flame::FlameLayer;
use tracing_subscriber::prelude::*;

let (flame_layer, _guard) = FlameLayer::with_file("./tracing.folded").unwrap();
tracing_subscriber::registry()
    .with(flame_layer)
    .init();

@westonpace
Copy link
Contributor

Yeah, I haven't bothered much with flamegraphs with traces. Normally I look at trace graphs with https://ui.perfetto.dev/ instead.

I think adding a trace_to_flame (or whatever to name it) is fine if you want to add a PR with that. There are many possible outputs for this kind of data. Another one I hope to have added at some point is tools like open telemetry or prometheus.

I do think I tried some experiments with FlameLayer and found that it only reported the active time (e.g. CPU time) which wasn't as useful for the kind of profiling I was hoping to do.

@westonpace
Copy link
Contributor

Hmm, I was just trying to use some traces on main and it seems that chrome tracing is broken. I'll investigate. That may explain why stackcollapse-chrome-tracing didn't work 😦

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants