GitHub user HaythemJ added a comment to the discussion: DAG Manual Trigger queue for a long time
Could you please tell me what could I share with you as helpful information? I api-server logs I can see that the http query is handled: <img width="1746" height="206" alt="image" src="https://github.com/user-attachments/assets/d2e35841-0196-4e92-b238-c813d4cdb0f7" /> But nothing happening at scheduler and worker side. After a while (more than 10 minutes) I can see the entry appears in the scheduler and the worker. <img width="1896" height="582" alt="image" src="https://github.com/user-attachments/assets/76eb39a3-7397-4c06-8a17-ef7fbc5d88c6" /> <img width="1898" height="198" alt="image" src="https://github.com/user-attachments/assets/98ca800e-7e0c-4407-aa53-b0fce82f3c15" /> I am running the docker compose file shared in the airflow documentation. I am running airflow on docker on an Ubuntu machine 32G and 8 Cores. My dag header: ` default_args = { 'depends_on_past': False, 'start_date': datetime(2023, 1, 1), # Ensure these settings don't block manual triggers 'wait_for_downstream': False } @dag( default_args=default_args, schedule=timedelta(seconds=60), catchup=False, max_active_runs=1, max_active_tasks=1, tags=["CM"], ) ` My configuration: parallelism = 32 max_active_tasks_per_dag = 16 max_active_runs_per_dag = 16 Could you please support? GitHub link: https://github.com/apache/airflow/discussions/55239#discussioncomment-14309562 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
