We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Summary
We need to support user level statistics for MemoryTracker and other related trackers
MemoryTracker
The text was updated successfully, but these errors were encountered:
Tracker has the following levels:
Sorry, something went wrong.
We only need to create multiple MemoryTracker and use parent to combine them
let global_tracker = MemoryTracker::create(None /*no parent*/); let user_tracker = MemoryTracker::create(Some(global_tracker.clone())); let session_tracker = MemoryTracker::create(Some(user_tracker.clone()));
https://github.com/datafuselabs/databend/blob/d04fbead64d5393566e6145e35250b6903be78ad/common/base/src/runtime_tracker.rs#L65-L90
No branches or pull requests
Summary
We need to support user level statistics for
MemoryTracker
and other related trackersThe text was updated successfully, but these errors were encountered: