-
Notifications
You must be signed in to change notification settings - Fork 94
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
Receiving multiple Input from Web portal. #616
Comments
I'm not sure, I understand. Could you provide a simple example ? |
I think that you might have been blocked by: #606 not being merged. Now that it's merged it should be easier to have receive-only dynamic node |
How should I use this configuration? Could you provide an example of how to configure synchronized_start in YAML or Python? |
Do you need that all nodes are ready to start or do you want them to start independently from your web front end? |
I want them to start independently from the web front end. |
Yes, so you don't need to configure anything the new merged PR will allow you to do just that. |
However, have you tried including multiple dynamic nodes in a dataflow? When I started one of the nodes, there was no response at all. Can you take a look at this issue? |
Yes, with the latest version that I have just merged. You can include multiple dynamic nodes. You can even include them in the same python script. |
How should I get your updates? Should I reinstall Dora-RS? If so, which version should I install? |
Yes so, to update to latest main: sudo rm $(which dora)
pip uninstall dora-rs
## dora binary
git clone https://github.com/dora-rs/dora.git
cd dora
cargo build --release -p dora-cli
PATH=$PATH:$(pwd)/target/release
## Python API
maturin develop -m apis/python/node/Cargo.toml
dora --help |
Alright, thank you. |
Is your feature request related to a problem? Please describe.
We are developing a Web frontend that drives dora-flows at the backend. It seems that we can only setup a dynamic node at the begining of the dora flow to get input. The middle nodes won't be able to take the additional input.
Describe the solution you'd like
Provide the middle-nodes capability to receive input from frontend.
Describe alternatives you've considered
N/A
Additional context
Thank you!
from MAE team
The text was updated successfully, but these errors were encountered: