Gabriel Lopes
Gabriel Lopes

Reputation: 23

MWAA Airflow no_status for some specific tasks

I am using MWAA aiflow 1.10 and the tasks do not start, even though the last ones are successful. I do not see any logs problem or anything.

enter image description here

enter image description here

enter image description here

Upvotes: 1

Views: 155

Answers (1)

Thom Bedford
Thom Bedford

Reputation: 387

There's no reason why your Tasks wouldn't execute in the order you've told them via bitshift, unless you have set the trigger rules away from all_success to all_failed for example. Especially if there's nothing in the logs, it implies that your encrypt_to_stage task has been set up to not execute if the previous tasks are successful.

A less likely possibility is that you've hit this known issue, but I'd expect your results to be more random than what you've shared (unless there are other DAGs that are running in parallel that complete at the same time as these first two tasks).

Upvotes: 0

Related Questions