-
Notifications
You must be signed in to change notification settings - Fork 69
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
Performance issue with Timer
#6
Comments
This should now be fixed in v0.1.7 - can you check? |
Thanks a lot for your help! I think fixing this one will be important so that async-std doesn't get swamped with similar performance related tickets if they use the same timer implementation. v0.1.7 It's a 'little' better, in that the CPU now sometimes drops under 10% to 8%, whereas usually it would be quite consistently at 11 to 12%. A 12 second sample still yields a similar image as before (and for the uninitiated: TUI draw time should dominate the CPU, not the few 4 to 5 timers the application uses): |
How to easily reproduce this�git clone https://github.com/byron/prodash
cd prodash
cargo run --example dashboard --release --features="tui-renderer tui-renderer-crossterm line-renderer line-renderer-crossterm ctrlc" The above program when profiled looks very much liker |
Fixed in v0.1.8 |
This 'regression' appears a while ago in
criner
, and apparently went unnoticed when switching fromtokio::time::Delay
toasync_io::Timer
.The picture above shows a
criner
process doing nothing, consuming 10 to 15% of CPU for displaying 4 progress bars which update once per second. The expensive part of this used to be the drawing itself, but now it appears to be dominated by the condvar inparking
.In
smol
0.1.5 usingsmol::Timer
, this looked like that:All that shows up is the drawing of the TUI.
Having had a look myself I am absolutely puzzled as to why that is - the code looks very similar.
Any hint at how to solve this would be greatly appreciated.
Thank you
Meta
criner
didn't change in the relevant portions of the code responsible for the timer invocations see utils.rs.The text was updated successfully, but these errors were encountered: