-
Notifications
You must be signed in to change notification settings - Fork 29
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
Drivers should be thread safe. #112
Comments
👍 This change will make core layer work more efficient especially in cases that feature extraction phase (which can be done simultaneously) is heavy. |
We'll make classifier driver thread-safe in 0.1.2 & 0.2.0. |
We've made classifier thread-safe. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Closing this issue after a prolonged period of inactivity. Please feel free to create a new issue or re-open it if you need. |
for concurrency of machine learning, Jubatus server holds giant lock for each model.
But giant lock is harmful for performance on multi-core processors.
Drivers should be thread safe, and server should not hold giant lock for each model.
The text was updated successfully, but these errors were encountered: