You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 8, 2020. It is now read-only.
Endpoint is broken, port is closed, just random number.
If I run python code I'll see 100% CPU usage in top output.
If I run it with command sudo perf stat -e 'syscalls:*epoll_wait*' python3 test_wait.py
I'll get
Performance counter stats for 'python3 test_wait.py':
114,265 syscalls:sys_enter_epoll_wait
114,265 syscalls:sys_exit_epoll_wait
So, in 3 seconds it made 100k+ epoll_wait() calls.
I am not expert in asyncio, puppeteer, C programming, syscals, etc. But I think it is not OK :) What do you think?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Code:
Endpoint is broken, port is closed, just random number.
If I run python code I'll see 100% CPU usage in
top
output.If I run it with command
sudo perf stat -e 'syscalls:*epoll_wait*' python3 test_wait.py
I'll get
So, in 3 seconds it made 100k+
epoll_wait()
calls.I am not expert in asyncio, puppeteer, C programming, syscals, etc. But I think it is not OK :) What do you think?
The text was updated successfully, but these errors were encountered: