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

Performance issue with Timer #6

Closed
Byron opened this issue Jul 24, 2020 · 4 comments
Closed

Performance issue with Timer #6

Byron opened this issue Jul 24, 2020 · 4 comments

Comments

@Byron
Copy link

Byron commented Jul 24, 2020

This 'regression' appears a while ago in criner, and apparently went unnoticed when switching from tokio::time::Delay to async_io::Timer.

Screenshot 2020-07-24 at 10 17 31

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 in parking.

In smol 0.1.5 using smol::Timer, this looked like that:

Screenshot 2020-07-24 at 11 00 55

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

Screenshot 2020-07-24 at 11 20 58
@ghost
Copy link

ghost commented Jul 28, 2020

This should now be fixed in v0.1.7 - can you check?

@Byron
Copy link
Author

Byron commented Jul 29, 2020

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):

Screenshot 2020-07-29 at 08 17 14

@Byron
Copy link
Author

Byron commented Jul 29, 2020

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 criner, in that the async-io code dominates the runtime. This one uses way more timers, so it's probably a great example to get fast (again).

Screenshot 2020-07-29 at 08 45 30

@ghost ghost closed this as completed Jul 31, 2020
@ghost
Copy link

ghost commented Jul 31, 2020

Fixed in v0.1.8

notgull pushed a commit that referenced this issue May 6, 2023
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant