-
Notifications
You must be signed in to change notification settings - Fork 3
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
High CPU Load #14
Comments
RTMPSocketのstartSendMessagesでキューが空の時にビジーループになってしまうので、以下のように足したらCPU負荷は100%超えから20%くらいに下がりました。
10msecよりはキューに入ったら起きるのが良いとは思いますが、ここのビジーループを直すとCPU負荷と熱の問題は解決しそうです。 |
AsyncStreamで同種の処理が入っていそうなのでPriorityQueueをAsyncStreamにする方が筋が良いかもしれません。 |
karino2
added a commit
to karino2/HPRTMP
that referenced
this issue
Jul 14, 2024
Now PriorityQueue::deque() becomes async and always return MessageContainer and never return nil. When no message is available, sleep with withCheckedContinuation until new message is comming. With this change, HPRTMPExample CPU load becomes 14% for my iPhone 14 pro (previous: more than 100%).
試しにwithCheckedContinuationでPRを作ってみました(#15) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
症状
HPRTMPExampleをiOS上でProfile実行すると、CPUのロードが高い。
調べた内容
背景
業務でHPRTMPが使えないかと開発中のアプリにインテグレートして評価してみた所、無事配信は出来たのだけれど、CPUロードが高い。
プロファイルを取ってみると、Actorなどの同期周りで多くのCPUが不可解に消費されていて、HPRTMPExampleを試してもほぼ同じようなCPUの使い方をしているので、調査をしてみて、可能なら修正してPRを送りたいとも思っています。
ただ、調査に入る前にそもそもこれが作者の方でknownな問題であったり解決方法に想像がついたりするかもしれないので、一旦issueを建てさせてもらいました。
The text was updated successfully, but these errors were encountered: