conductor-sdk / conductor-python

Conductor OSS SDK for Python programming language
Apache License 2.0
62 stars 29 forks source link

How to start more than one processes for a single task? #131

Closed hebrd closed 2 years ago

hebrd commented 2 years ago

Is it possible to start multiple process for a single task? Start multiple client would be not so convenient

gardusig commented 2 years ago

Hey @BrandonDotLin, we're working on some improvements for that, your issue should be fixed by #130 merge.

In the meantime, there is a documentation on how to parallelization with multiple workers.

Long short story - just append as many workers as needed. Each one will work as an independent process, regardless of the task name.

hebrd commented 2 years ago

This solved my problem. Thanks for your useful information.