-
Notifications
You must be signed in to change notification settings - Fork 23
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
Cloud.Parallel is limited to 1000 jobs #45
Comments
Does it work if you pipe the same number of tasks through DivideAndConquer? |
Yes, we found that this relates to size restrictions when batch enqueueing to the service bus. Will have a fix posted soon. |
Batch enqueues have been constrained to 1K, until we can guarantee that more enqueues can be done atomically. |
I just tried this and it is still giving an exception (in the 0.6.10 client I am using)
|
(The exception is currently expected given that batch enqueues are limited to 1000) |
Cloud.Parallel
jobs with large inputs
Running the following code:
will result the result the computation in never completing. Checking the process info:
The number of created jobs is suspect. It greatly exceeds the expected number (which should be 2001).
Running the same computation with a different fault policy
will result in a fault exception.
The text was updated successfully, but these errors were encountered: