Skip to content
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

Deploy nodes in parallel #1038

Open
saschagrunert opened this issue Apr 3, 2020 · 3 comments
Open

Deploy nodes in parallel #1038

saschagrunert opened this issue Apr 3, 2020 · 3 comments

Comments

@saschagrunert
Copy link
Contributor

Hey 👋,

I’m playing around with skuba and noticed that it would be useful for me to deploy nodes in parallel to safe some time. When speaking about worker nodes then it should be possible to use a classic work stealing approach for example. What do you think?

@evrardjp
Copy link
Contributor

evrardjp commented Apr 6, 2020

I guess this is only intended for worker nodes?
What prevents us from doing so in the current model?
I think you can run skuba join in parallel with a little bit of scripting, which means we probably shouldn't implement this in skuba.

@saschagrunert
Copy link
Contributor Author

I guess this is only intended for worker nodes?

I think so, or adding masters / workers if the initial master already got deployed.

What prevents us from doing so in the current model?

Nothing I guess. 🤷‍♂️

I think you can run skuba join in parallel with a little bit of scripting, which means we probably shouldn't implement this in skuba.

Yes, I can do

for ((i = 0; i < NODES; i++)); do
    skuba node join … &
done
wait

Feel free to close if you think it's out of scope.

@evrardjp
Copy link
Contributor

evrardjp commented Apr 7, 2020

yes I am using about the same scripting. I would think it's out of scope indeed, but I will let others decide.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants