-
-
Notifications
You must be signed in to change notification settings - Fork 717
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
Add Semaphore, Condition, Event #2007
Comments
Hi, I've been writing python for some time but I'm new to distributed computing. This seems like the right issue to get started. Can I work on this? |
Yes! Anyone can work on any issue. You may want to familiarize yourself
with http://distributed.readthedocs.io/en/latest/develop.html
…On Tue, Jul 10, 2018 at 2:49 PM, Palash Nigam ***@***.***> wrote:
Hi, I've been writing python for some time but I'm new to distributed
computing. This seems like the right issue to get started. Can I work on
this?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#2007 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AASszEyjQTLpoBFJ-s1yquemYgzN4Ipmks5uFPcpgaJpZM4UNOYM>
.
|
Thanks will try to submit a PR soon |
I am interested in working on the other features namely (Event, Condition), and wanted to make sure that I am not duplicating work that has already been done. |
All communication is happening on github. I recommend checking in on that PR.
This is different. Dask uses Tornado/asyncio objects within its codebase. We would also like to expose distributed versions of these objects to users so that they can make their own applications. |
👍 will do
Thank you for the clarification! |
Dask currently has some distributed coordination primitives like Locks and Queues that match the API of normal local Locks and Queues. There are other primitives like these that we do not yet support, notable
Semaphore
,Condition
, andEvent
.These might be good training for people who want to become familiar with extending the dask.distributed system. The files
lock.py
,queues.py
, andvariable.py
might be a good model for development here.The text was updated successfully, but these errors were encountered: