skip to Main Content

Docker – Airflow DAG does not run properly independent if start_date is in the future, past or present

Today is 8th of September 2023. I run Airflow in Containers. Worker, Scheduler, etc. are on. I have the following DAG: from airflow import DAG from datetime import datetime from airflow.providers.postgres.operators.postgres import PostgresOperator with DAG('user_processing', start_date=datetime(2023,10,12), schedule_interval='@daily', catchup=False) as dag:…

VIEW QUESTION

Many Duplicate Docker Images

I am new to kubernetes and Dockers and microservices. I created several nodejs microservices, and use skaffold to build, run and update my deployments. Everything is working so far. However, when I run docker images, I realised that I have…

VIEW QUESTION
Back To Top
Search