-
Notifications
You must be signed in to change notification settings - Fork 12
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
hack/high_cpu_usage #176
hack/high_cpu_usage #176
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #176 +/- ##
======================================
Coverage ? 54.20%
======================================
Files ? 36
Lines ? 3699
Branches ? 0
======================================
Hits ? 2005
Misses ? 1694
Partials ? 0 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth a try...can we have goldy test it on this branch before we merge it into dev? I'm concerned about far-reaching implications of always delaying it
can also put it behind a flag that only docker container sets, instead of being a default, but lets see what @goldyfruit tests have to say |
Is this really tackling the problem? I believe what @goldyfruit meant is that he uses multiple docker comtainers of which each container only runs one skill. The containers all run isolated, so each container only runs through this section once isn't it? The problem, I believe comes from that when he boots, all those different containers are all started at once, so for the OS is looks similar as starting ovos-core multiple times at once, each of them loading one skill but any thread safe code within the conatiners doesn't know about threads in other containers. (? Assumption ?) Not sure, you can fix this at the workshop level. Guess this needs to be solved on the OS level. Or Python should be aware on a OS level of other python processes and the amount of threads. But all that is out of my know how. |
maybe closes #151