-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
File output is too long #577
Comments
I think it's probably because the results.txt file is too large. Argo doesn't report a good error message due to a bug (argoproj/argo-workflows#765). Argo supports two ways to pass data between steps: a) output, which is supposed to be small and can be embedded in the workflow template; b) artifact, which can be large and will be stored in the artifact store and copied to next steps. However, in KFP, we only support output today. Artifact support is WIP. If you do want to pass large files across steps, you can use external storage like GCS and pass the remote file path as the output for next steps. |
Yeah. I do not need to extract value from the file content. I do not need a long string. However i need to save it as a file "locallhy". I guess |
Do you have any support of smth like simlar to argo definition outputs:
artifacts:
- name: xyz
path: xyz
s3: ... |
Unfortunately, this support is still in progress. The suggested way is to use external storage. You have to download the file to local path before using it. You might also consider to use PVC to share files across steps. ContainerOp supports to set volume claim and mount. |
I understand. However PVC should work for me. |
See the "Support for Argo artifacts" issue #336 I'm actively working on making it work. |
/assign @Ark-kun |
Please use LongPathTool for this issue. |
Resolving in favor of #336 |
Trying to define a
conatinerop
that downloads a file from minio bucket but getting `This step is in Error state with this message: failed to save outputs: Pod "xxxxxx" is invalid: metadata.annotations: Too long: must have at most 262144 characters.See example:
What am I doing wrong?
The text was updated successfully, but these errors were encountered: