-
Notifications
You must be signed in to change notification settings - Fork 18
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
JST-924: Rearrange docs in the repo for improved maintenance #989
Conversation
27759f1
to
2821f67
Compare
4e712de
to
1e00d54
Compare
docs/UPGRADING.md
Outdated
> **IMPORTANT DIFFERENCE** | ||
> | ||
> `TaskExecutor` by default assumed that users want to run these commands in parallel, so it | ||
> was establishing up to 5 agreements with different providers and then sent out these | ||
> commands to different providers to leverage parallelism. | ||
> | ||
> With `golem-js@3.0`, when you use `oneOf` to rent resources, you are establishing one agreement | ||
> with a single provider and the commands which you issue with `Array.map` will be executed | ||
> sequentially by that single provider. | ||
> | ||
> If you want to achieve _parallel command execution_ on different providers, refer to the [Engaging with many providers at the same time](#engaging-with-many-providers-at-the-same-time) example. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why even show this in the migration if it's fundamentally different behavior? TE users only care about parallelism. Either drop the entire Repeating commands with map of different parameter values
section or use manyOf
here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmmmm. I guess you're right, this is more an example of the API usage than real migration. Thanks for that point of view :)
No description provided.