Replies: 1 comment 2 replies
-
I think you have airflow misconfigured. There are two reasons you can see no log:
Good luck with further investigations |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i have put below code to retry the dag after failure
default_args = {
'owner': 'content',
'retries': 2,
'retry_delay': timedelta(minutes=5)
}
But it does not retry and below logs are shown
Falling back to local log
*** Log file does not exist: mssqltopg_photofound_dataupdate/task_load_records/2022-11-15T02:30:00+00:00/1.log
*** Fetching from: http://:8793/log/mssqltopg_photofound_dataupdate/task_load_records/2022-11-15T02:30:00+00:00/1.log
*** Failed to fetch log file from worker. Invalid URL 'http://:8793/log/mssqltopg_photofound_dataupdate/task_load_records/2022-11-15T02:30:00+00:00/1.log': No host supplied
Beta Was this translation helpful? Give feedback.
All reactions