-
What might cause a workflow to fail with this error:
|
Beta Was this translation helpful? Give feedback.
Answered by
SandraGH5
Jul 30, 2021
Replies: 1 comment
-
The compiled workflow closures might be too big - especially the number of unique tasks. In this case, the workflow only had 200 unique tasks, but each task had a list of around 300 strings, each 125 bytes long, resulting in a future file of about 7MB (200 * 300 * 125). A solution could be to offload them as a FlyteFile or a new type transformer for an offloaded list - backed by a file. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
SandraGH5
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The compiled workflow closures might be too big - especially the number of unique tasks.
In this case, the workflow only had 200 unique tasks, but each task had a list of around 300 strings, each 125 bytes long, resulting in a future file of about 7MB (200 * 300 * 125).
A solution could be to offload them as a FlyteFile or a new type transformer for an offloaded list - backed by a file.
@kumare3
@katrogan