-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
no artifact logs are available
when workflow is archived but still live
#12948
Comments
no artifact logs are available
when workflow is archived and artifact logs are disabled
Correct, it retrieves Pod logs.
I'm not sure that this is related to the upgrade? You changed your configuration after the upgrade? Or before it? An Archived Workflow is typically a deleted Workflow, therefore there are no Pods for it to retrieve logs from. So if you want logs for deleted Pods, you can either link to a log provider or use artifact logs. You don't have artifact logs, so the error message certainly sounds correct. |
We didn't change any configuration during the upgrade, the only change is the image tag from "v3.4.4" to "v3.5.5". The problem is, the workflow will be archived once the workflow finished, we have no chance to check the log event it is failed just 1 min before. By enabling the artifacts logs, we can see log now. Is it correct for a finished workflow became archived immediately? |
A Workflow is labeled for archiving when it completes and when that label is detected, archiving is kicked off That is generally independent of deletion, however, which is based on your TTL or I think I see the issue here, it's probably not falling back to Pod logs properly in 3.5. 3.5 unified the Archived + Live UI into one page (#11121) so there is no distinction now in the UI. In particular, this line would previously only be triggered if you were navigating archived workflows specifically, but now it can be triggered on a live workflow that is also archived. The comment above that line is not quite correct in your case |
no artifact logs are available
when workflow is archived and artifact logs are disabledno artifact logs are available
when workflow is archived but still live
@agilgur5 Hello, any idea when this degradation will be fixed? |
No, any updates would be in the thread. PRs welcome.
To be clear this only affects users of Archived Workflows with long Workflow or podGC TTLs. If you're not using Archived Workflows or have short TTLs, this doesn't affect you. |
I will have a look to check if I can prepare an PR with a fix |
Could I ask for some example configuration or a way to reproduce the issue consistently? I tried using archived workflows with different TTL values and strategies without much success and I feel some of my settings might be different from the ones that produce the above bug. |
Sure. We are using helm chart 0.41.11 for argo-wf ver 3.5.8 persistence:
archive: true
postgresql:
<postgresql related block>
controller:
workflowDefaults:
spec:
ttlStrategy:
secondsAfterSuccess: 432000
secondsAfterFailure: 864000
secondsAfterCompletion: 432000 |
I also forgot to mention this important part of configuration artifactRepository:
archiveLogs: false |
where @miltalex |
Sorry didn't progress cause I couldn't reproduce it consistently locally. Feel free to pick it up if you are interested |
Pre-requisites
:latest
What happened/what did you expect to happen?
We just upgrade the argo workflow from 3.4.4 to 3.5.5. We enabled archive
but didn't enable archive logs.
Before upgrade, we can see logs of the finished workflow (either success or fail) from UI(the server gets the log from pod I guess), but after upgrade, the UI will complain " no artifact logs are available " and no logs returned.
Is it an expected result ? or is any configuration item controlling this behavior ?
Version
v3.5.5
Paste a small workflow that reproduces the issue. We must be able to run the workflow; don't enter a workflows that uses private images.
any workflows
Logs from the workflow controller
Logs from in your workflow's wait container
The text was updated successfully, but these errors were encountered: