You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was following the "Step parallelism in Python" in this doc and debugged for hours to find out why function that has a concurrency limit of 2 has 8+ instances running at a time.
Turn out I made two mistakes in one place. I called a function as a step and I wrote "step.invoke" instead of "step.run". This should either not be possible or respect the function parameters, no?
I was following the "Step parallelism in Python" in this doc and debugged for hours to find out why function that has a concurrency limit of 2 has 8+ instances running at a time.
Turn out I made two mistakes in one place. I called a function as a step and I wrote "step.invoke" instead of "step.run". This should either not be possible or respect the function parameters, no?
offending piece of code:
The text was updated successfully, but these errors were encountered: