I get a "SIGTERM" error when I trigger the DAG below. I did it more than 20 times manually, and everytime the SIGTERM error comes up at different points in time. Any suggestion on what to change to make it work?
The error:
{local_task_job.py:211} WARNING - State of this instance has been externally set to queued. Terminating instance.
{taskinstance.py:1411} ERROR - Received SIGTERM. Terminating subprocesses.
{taskinstance.py:1703} ERROR - Task failed with exception
The dag:
dag = DAG(
dag_id="im_master",
default_args=default_args,
schedule_interval="0 1 * * *",
tags=['DS'],
catchup=False
)