From 213b3dde78f80e8100dfae47ac9d2826b489d5d9 Mon Sep 17 00:00:00 2001 From: lsh0107 Date: Sat, 6 Jan 2024 18:13:05 +0900 Subject: [PATCH] test13 --- dags/__pycache__/HelloWorld.cpython-37.pyc | Bin 0 -> 715 bytes dags/__pycache__/HelloWorld_v2.cpython-37.pyc | Bin 0 -> 658 bytes ...r-compose.yaml => docker-compose.test.yaml | 0 .../dag_processor_manager.log | 197 ++++++++++++++++++ logs/scheduler/2024-01-06/HelloWorld.py.log | 32 +++ .../scheduler/2024-01-06/HelloWorld_v2.py.log | 32 +++ .../example_dags/example_bash_operator.py.log | 32 +++ .../example_branch_datetime_operator.py.log | 48 +++++ ...example_branch_day_of_week_operator.py.log | 32 +++ .../example_dags/example_branch_labels.py.log | 32 +++ .../example_branch_operator.py.log | 32 +++ .../example_branch_operator_decorator.py.log | 32 +++ ...xample_branch_python_dop_operator_3.py.log | 32 +++ .../example_dags/example_complex.py.log | 56 +++++ .../example_dags/example_dag_decorator.py.log | 40 ++++ .../example_dags/example_datasets.py.log | 72 +++++++ .../example_dynamic_task_mapping.py.log | 32 +++ .../example_external_task_marker_dag.py.log | 40 ++++ .../example_kubernetes_executor.py.log | 32 +++ .../example_dags/example_latest_only.py.log | 32 +++ .../example_latest_only_with_trigger.py.log | 32 +++ .../example_local_kubernetes_executor.py.log | 32 +++ .../example_nested_branch_dag.py.log | 32 +++ ...ple_passing_params_via_test_command.py.log | 32 +++ .../example_python_operator.py.log | 64 ++++++ .../example_sensor_decorator.py.log | 32 +++ .../example_dags/example_sensors.py.log | 32 +++ .../example_short_circuit_decorator.py.log | 32 +++ .../example_short_circuit_operator.py.log | 32 +++ .../example_dags/example_skip_dag.py.log | 32 +++ .../example_dags/example_sla_dag.py.log | 32 +++ .../example_subdag_operator.py.log | 54 +++++ .../example_dags/example_task_group.py.log | 32 +++ .../example_task_group_decorator.py.log | 32 +++ .../example_time_delta_sensor_async.py.log | 32 +++ .../example_trigger_controller_dag.py.log | 32 +++ .../example_trigger_target_dag.py.log | 32 +++ .../example_dags/example_xcom.py.log | 32 +++ .../example_dags/example_xcomargs.py.log | 40 ++++ .../example_dags/plugins/workday.py.log | 20 ++ .../example_dags/subdags/subdag.py.log | 20 ++ .../native_dags/example_dags/tutorial.py.log | 32 +++ .../example_dags/tutorial_dag.py.log | 32 +++ .../example_dags/tutorial_taskflow_api.py.log | 32 +++ .../tutorial_taskflow_api_virtualenv.py.log | 32 +++ logs/scheduler/latest | 1 + 46 files changed, 1644 insertions(+) create mode 100644 dags/__pycache__/HelloWorld.cpython-37.pyc create mode 100644 dags/__pycache__/HelloWorld_v2.cpython-37.pyc rename docker-compose.yaml => docker-compose.test.yaml (100%) create mode 100644 logs/dag_processor_manager/dag_processor_manager.log create mode 100644 logs/scheduler/2024-01-06/HelloWorld.py.log create mode 100644 logs/scheduler/2024-01-06/HelloWorld_v2.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_bash_operator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_branch_datetime_operator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_branch_day_of_week_operator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_branch_labels.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_branch_operator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_branch_operator_decorator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_branch_python_dop_operator_3.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_complex.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_dag_decorator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_datasets.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_dynamic_task_mapping.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_external_task_marker_dag.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_kubernetes_executor.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_latest_only.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_latest_only_with_trigger.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_local_kubernetes_executor.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_nested_branch_dag.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_passing_params_via_test_command.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_python_operator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_sensor_decorator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_sensors.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_short_circuit_decorator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_short_circuit_operator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_skip_dag.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_sla_dag.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_subdag_operator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_task_group.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_task_group_decorator.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_time_delta_sensor_async.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_trigger_controller_dag.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_trigger_target_dag.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_xcom.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/example_xcomargs.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/plugins/workday.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/subdags/subdag.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/tutorial.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_dag.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_taskflow_api.py.log create mode 100644 logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_taskflow_api_virtualenv.py.log create mode 120000 logs/scheduler/latest diff --git a/dags/__pycache__/HelloWorld.cpython-37.pyc b/dags/__pycache__/HelloWorld.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a123b2d95dcc291414d78c28512166fba4d926a GIT binary patch literal 715 zcma)3&2H2%5Vm6{cGG0H2!yy%xP?O(^^EuzAPxnI15z$4H)D1qoH}w`(e1Td`v5!w zujDHdQeS}+<22P?I53vS^Nq(d-;7_DWlm7ump}AfM#!%SZbYE*9QSaB3J6d`I$Bd2 z?ZhM7)7GL;C}%rOrK}~ literal 0 HcmV?d00001 diff --git a/dags/__pycache__/HelloWorld_v2.cpython-37.pyc b/dags/__pycache__/HelloWorld_v2.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9bdcbdd647d0bf150ce5bcdcd089f54d07501c3 GIT binary patch literal 658 zcma)4J8u**5FXq6@NISpN<|syjv|LrBi;f;5eX=QwmB_3=5B=-uWTofv`dSq`3df=uEY_mQl`#w*|Ts*U$oixYTC;!0AU_>Pe) zqdffJG+QgJ&20)!2itw}XJ9jOo7C?+3p4md)7cN&d|qI)a*LPI{m@vA%j5mM;UsKL zVaq8^jC2Vp;F4KM_Wy~&gY`+O@(Xtq$fg z, delete_entry_group already registered for DAG: example_complex +[2024-01-06T09:11:11.828+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.828+0000] {taskmixin.py:205} WARNING - Dependency , create_entry_group already registered for DAG: example_complex +[2024-01-06T09:11:11.828+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.828+0000] {taskmixin.py:205} WARNING - Dependency , delete_entry already registered for DAG: example_complex +[2024-01-06T09:11:11.828+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.828+0000] {taskmixin.py:205} WARNING - Dependency , create_entry_gcs already registered for DAG: example_complex +[2024-01-06T09:11:11.829+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.829+0000] {taskmixin.py:205} WARNING - Dependency , delete_tag already registered for DAG: example_complex +[2024-01-06T09:11:11.829+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.829+0000] {taskmixin.py:205} WARNING - Dependency , create_tag already registered for DAG: example_complex +[2024-01-06T09:11:11.833+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_complex']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:11:11.907+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.907+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_complex +[2024-01-06T09:11:11.915+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.915+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_complex +[2024-01-06T09:11:11.921+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.921+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_complex +[2024-01-06T09:11:11.921+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.921+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:11.930+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.930+0000] {dag.py:2711} INFO - Creating ORM DAG for example_complex +[2024-01-06T09:11:11.937+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.937+0000] {dag.py:3441} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2024-01-06T09:11:11.947+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py took 0.133 seconds +[2024-01-06T09:11:42.403+0000] {processor.py:153} INFO - Started process (PID=187) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:11:42.405+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2024-01-06T09:11:42.405+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.405+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:11:42.411+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.411+0000] {taskmixin.py:205} WARNING - Dependency , delete_entry_group already registered for DAG: example_complex +[2024-01-06T09:11:42.412+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.412+0000] {taskmixin.py:205} WARNING - Dependency , create_entry_group already registered for DAG: example_complex +[2024-01-06T09:11:42.412+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.412+0000] {taskmixin.py:205} WARNING - Dependency , delete_entry already registered for DAG: example_complex +[2024-01-06T09:11:42.412+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.412+0000] {taskmixin.py:205} WARNING - Dependency , create_entry_gcs already registered for DAG: example_complex +[2024-01-06T09:11:42.412+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.412+0000] {taskmixin.py:205} WARNING - Dependency , delete_tag already registered for DAG: example_complex +[2024-01-06T09:11:42.413+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.413+0000] {taskmixin.py:205} WARNING - Dependency , create_tag already registered for DAG: example_complex +[2024-01-06T09:11:42.416+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_complex']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:11:42.434+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.434+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.446+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.446+0000] {dag.py:3441} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2024-01-06T09:11:42.455+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py took 0.053 seconds +[2024-01-06T09:12:13.361+0000] {processor.py:153} INFO - Started process (PID=259) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:12:13.362+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2024-01-06T09:12:13.362+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.362+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:12:13.368+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.368+0000] {taskmixin.py:205} WARNING - Dependency , delete_entry_group already registered for DAG: example_complex +[2024-01-06T09:12:13.368+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.368+0000] {taskmixin.py:205} WARNING - Dependency , create_entry_group already registered for DAG: example_complex +[2024-01-06T09:12:13.368+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.368+0000] {taskmixin.py:205} WARNING - Dependency , delete_entry already registered for DAG: example_complex +[2024-01-06T09:12:13.368+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.368+0000] {taskmixin.py:205} WARNING - Dependency , create_entry_gcs already registered for DAG: example_complex +[2024-01-06T09:12:13.369+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.369+0000] {taskmixin.py:205} WARNING - Dependency , delete_tag already registered for DAG: example_complex +[2024-01-06T09:12:13.369+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.369+0000] {taskmixin.py:205} WARNING - Dependency , create_tag already registered for DAG: example_complex +[2024-01-06T09:12:13.373+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_complex']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:12:13.388+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.388+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.399+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.399+0000] {dag.py:3441} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2024-01-06T09:12:13.406+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py took 0.047 seconds +[2024-01-06T09:12:44.120+0000] {processor.py:153} INFO - Started process (PID=348) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:12:44.120+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2024-01-06T09:12:44.121+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.121+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:12:44.128+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.127+0000] {taskmixin.py:205} WARNING - Dependency , delete_entry_group already registered for DAG: example_complex +[2024-01-06T09:12:44.128+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.128+0000] {taskmixin.py:205} WARNING - Dependency , create_entry_group already registered for DAG: example_complex +[2024-01-06T09:12:44.128+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.128+0000] {taskmixin.py:205} WARNING - Dependency , delete_entry already registered for DAG: example_complex +[2024-01-06T09:12:44.128+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.128+0000] {taskmixin.py:205} WARNING - Dependency , create_entry_gcs already registered for DAG: example_complex +[2024-01-06T09:12:44.128+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.128+0000] {taskmixin.py:205} WARNING - Dependency , delete_tag already registered for DAG: example_complex +[2024-01-06T09:12:44.129+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.128+0000] {taskmixin.py:205} WARNING - Dependency , create_tag already registered for DAG: example_complex +[2024-01-06T09:12:44.132+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_complex']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py +[2024-01-06T09:12:44.147+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.147+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.158+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.158+0000] {dag.py:3441} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2024-01-06T09:12:44.166+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_complex.py took 0.049 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_dag_decorator.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_dag_decorator.py.log new file mode 100644 index 0000000..a7243d2 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_dag_decorator.py.log @@ -0,0 +1,40 @@ +[2024-01-06T09:11:12.398+0000] {processor.py:153} INFO - Started process (PID=106) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:11:12.399+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2024-01-06T09:11:12.400+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.400+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:11:12.411+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.411+0000] {taskmixin.py:205} WARNING - Dependency , send_email already registered for DAG: example_dag_decorator +[2024-01-06T09:11:12.411+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.411+0000] {taskmixin.py:205} WARNING - Dependency , prepare_email already registered for DAG: example_dag_decorator +[2024-01-06T09:11:12.429+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_dag_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:11:12.504+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.504+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_dag_decorator +[2024-01-06T09:11:12.508+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.508+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_dag_decorator +[2024-01-06T09:11:12.511+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.511+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_dag_decorator +[2024-01-06T09:11:12.511+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.511+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.518+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.518+0000] {dag.py:2711} INFO - Creating ORM DAG for example_dag_decorator +[2024-01-06T09:11:12.524+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.524+0000] {dag.py:3441} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2024-01-06T09:11:12.535+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py took 0.139 seconds +[2024-01-06T09:11:42.812+0000] {processor.py:153} INFO - Started process (PID=195) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:11:42.813+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2024-01-06T09:11:42.814+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.814+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:11:42.831+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.831+0000] {taskmixin.py:205} WARNING - Dependency , send_email already registered for DAG: example_dag_decorator +[2024-01-06T09:11:42.832+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.832+0000] {taskmixin.py:205} WARNING - Dependency , prepare_email already registered for DAG: example_dag_decorator +[2024-01-06T09:11:42.841+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_dag_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:11:42.873+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.873+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.891+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.891+0000] {dag.py:3441} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2024-01-06T09:11:42.908+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py took 0.099 seconds +[2024-01-06T09:12:13.681+0000] {processor.py:153} INFO - Started process (PID=267) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:12:13.681+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2024-01-06T09:12:13.681+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.681+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:12:13.690+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.690+0000] {taskmixin.py:205} WARNING - Dependency , send_email already registered for DAG: example_dag_decorator +[2024-01-06T09:12:13.691+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.691+0000] {taskmixin.py:205} WARNING - Dependency , prepare_email already registered for DAG: example_dag_decorator +[2024-01-06T09:12:13.697+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_dag_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:12:13.710+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.710+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.720+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.720+0000] {dag.py:3441} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2024-01-06T09:12:13.729+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py took 0.050 seconds +[2024-01-06T09:12:44.466+0000] {processor.py:153} INFO - Started process (PID=356) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:12:44.467+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2024-01-06T09:12:44.467+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.467+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:12:44.477+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.477+0000] {taskmixin.py:205} WARNING - Dependency , send_email already registered for DAG: example_dag_decorator +[2024-01-06T09:12:44.477+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.477+0000] {taskmixin.py:205} WARNING - Dependency , prepare_email already registered for DAG: example_dag_decorator +[2024-01-06T09:12:44.483+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_dag_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py +[2024-01-06T09:12:44.513+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.513+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.524+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.524+0000] {dag.py:3441} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2024-01-06T09:12:44.532+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dag_decorator.py took 0.067 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_datasets.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_datasets.py.log new file mode 100644 index 0000000..fe2779d --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_datasets.py.log @@ -0,0 +1,72 @@ +[2024-01-06T09:11:13.019+0000] {processor.py:153} INFO - Started process (PID=116) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:11:13.020+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2024-01-06T09:11:13.020+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.020+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:11:13.029+0000] {processor.py:753} INFO - DAG(s) dict_keys(['dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1_never_scheduled', 'dataset_consumes_1_and_2', 'dataset_produces_2', 'dataset_consumes_1', 'dataset_produces_1']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:11:13.080+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.080+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:dataset_consumes_unknown_never_scheduled +[2024-01-06T09:11:13.084+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.084+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:dataset_consumes_unknown_never_scheduled +[2024-01-06T09:11:13.086+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.086+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:dataset_consumes_unknown_never_scheduled +[2024-01-06T09:11:13.092+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.092+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:dataset_consumes_1_never_scheduled +[2024-01-06T09:11:13.095+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.095+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:dataset_consumes_1_never_scheduled +[2024-01-06T09:11:13.097+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.097+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:dataset_consumes_1_never_scheduled +[2024-01-06T09:11:13.102+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.102+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:dataset_consumes_1_and_2 +[2024-01-06T09:11:13.104+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.104+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:dataset_consumes_1_and_2 +[2024-01-06T09:11:13.107+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.107+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:dataset_consumes_1_and_2 +[2024-01-06T09:11:13.111+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.111+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:dataset_produces_2 +[2024-01-06T09:11:13.113+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.113+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:dataset_produces_2 +[2024-01-06T09:11:13.115+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.115+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:dataset_produces_2 +[2024-01-06T09:11:13.120+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.120+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:dataset_consumes_1 +[2024-01-06T09:11:13.122+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.122+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:dataset_consumes_1 +[2024-01-06T09:11:13.124+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.124+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:dataset_consumes_1 +[2024-01-06T09:11:13.129+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.129+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:dataset_produces_1 +[2024-01-06T09:11:13.131+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.131+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:dataset_produces_1 +[2024-01-06T09:11:13.134+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.133+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:dataset_produces_1 +[2024-01-06T09:11:13.134+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.134+0000] {dag.py:2690} INFO - Sync 6 DAGs +[2024-01-06T09:11:13.140+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.140+0000] {dag.py:2711} INFO - Creating ORM DAG for dataset_consumes_1_and_2 +[2024-01-06T09:11:13.140+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.140+0000] {dag.py:2711} INFO - Creating ORM DAG for dataset_produces_1 +[2024-01-06T09:11:13.141+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.141+0000] {dag.py:2711} INFO - Creating ORM DAG for dataset_consumes_1 +[2024-01-06T09:11:13.141+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.141+0000] {dag.py:2711} INFO - Creating ORM DAG for dataset_produces_2 +[2024-01-06T09:11:13.141+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.141+0000] {dag.py:2711} INFO - Creating ORM DAG for dataset_consumes_unknown_never_scheduled +[2024-01-06T09:11:13.141+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.141+0000] {dag.py:2711} INFO - Creating ORM DAG for dataset_consumes_1_never_scheduled +[2024-01-06T09:11:13.146+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.146+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2024-01-06T09:11:13.146+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.146+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2024-01-06T09:11:13.147+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.147+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2024-01-06T09:11:13.147+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.147+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2024-01-06T09:11:13.148+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.148+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_produces_1 to 2024-01-05T00:00:00+00:00, run_after=2024-01-06T00:00:00+00:00 +[2024-01-06T09:11:13.148+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.148+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2024-01-06T09:11:13.164+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py took 0.147 seconds +[2024-01-06T09:11:43.276+0000] {processor.py:153} INFO - Started process (PID=205) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:11:43.277+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2024-01-06T09:11:43.278+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.278+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:11:43.288+0000] {processor.py:753} INFO - DAG(s) dict_keys(['dataset_produces_1', 'dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1_and_2', 'dataset_consumes_1_never_scheduled', 'dataset_produces_2', 'dataset_consumes_1']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:11:43.309+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.309+0000] {dag.py:2690} INFO - Sync 6 DAGs +[2024-01-06T09:11:43.323+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.323+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2024-01-06T09:11:43.325+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.325+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2024-01-06T09:11:43.326+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.326+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2024-01-06T09:11:43.326+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.326+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2024-01-06T09:11:43.328+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.328+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_produces_1 to 2024-01-05T00:00:00+00:00, run_after=2024-01-06T00:00:00+00:00 +[2024-01-06T09:11:43.328+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.328+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2024-01-06T09:11:43.346+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py took 0.072 seconds +[2024-01-06T09:12:13.998+0000] {processor.py:153} INFO - Started process (PID=277) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:12:13.999+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2024-01-06T09:12:13.999+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.999+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:12:14.008+0000] {processor.py:753} INFO - DAG(s) dict_keys(['dataset_consumes_1_never_scheduled', 'dataset_produces_2', 'dataset_produces_1', 'dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1', 'dataset_consumes_1_and_2']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:12:14.026+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.026+0000] {dag.py:2690} INFO - Sync 6 DAGs +[2024-01-06T09:12:14.037+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.037+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2024-01-06T09:12:14.039+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.039+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2024-01-06T09:12:14.040+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.040+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2024-01-06T09:12:14.040+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.040+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2024-01-06T09:12:14.041+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.041+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_produces_1 to 2024-01-05T00:00:00+00:00, run_after=2024-01-06T00:00:00+00:00 +[2024-01-06T09:12:14.042+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.042+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2024-01-06T09:12:14.055+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py took 0.059 seconds +[2024-01-06T09:12:44.748+0000] {processor.py:153} INFO - Started process (PID=366) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:12:44.748+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2024-01-06T09:12:44.748+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.748+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:12:44.757+0000] {processor.py:753} INFO - DAG(s) dict_keys(['dataset_consumes_1', 'dataset_produces_1', 'dataset_consumes_1_never_scheduled', 'dataset_consumes_1_and_2', 'dataset_consumes_unknown_never_scheduled', 'dataset_produces_2']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py +[2024-01-06T09:12:44.775+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.775+0000] {dag.py:2690} INFO - Sync 6 DAGs +[2024-01-06T09:12:44.787+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.787+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2024-01-06T09:12:44.790+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.789+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2024-01-06T09:12:44.790+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.790+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2024-01-06T09:12:44.791+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.791+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2024-01-06T09:12:44.792+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.792+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_produces_1 to 2024-01-05T00:00:00+00:00, run_after=2024-01-06T00:00:00+00:00 +[2024-01-06T09:12:44.792+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.792+0000] {dag.py:3441} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2024-01-06T09:12:44.806+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_datasets.py took 0.061 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_dynamic_task_mapping.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_dynamic_task_mapping.py.log new file mode 100644 index 0000000..2868846 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_dynamic_task_mapping.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:12.126+0000] {processor.py:153} INFO - Started process (PID=103) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:11:12.127+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2024-01-06T09:11:12.128+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.128+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:11:12.145+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_dynamic_task_mapping']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:11:12.212+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.212+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_dynamic_task_mapping +[2024-01-06T09:11:12.217+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.217+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_dynamic_task_mapping +[2024-01-06T09:11:12.220+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.220+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_dynamic_task_mapping +[2024-01-06T09:11:12.220+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.220+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.228+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.228+0000] {dag.py:2711} INFO - Creating ORM DAG for example_dynamic_task_mapping +[2024-01-06T09:11:12.239+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.238+0000] {dag.py:3441} INFO - Setting next_dagrun for example_dynamic_task_mapping to 2022-03-04T00:00:00+00:00, run_after=2022-03-05T00:00:00+00:00 +[2024-01-06T09:11:12.251+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.127 seconds +[2024-01-06T09:11:42.622+0000] {processor.py:153} INFO - Started process (PID=192) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:11:42.623+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2024-01-06T09:11:42.624+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.624+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:11:42.642+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_dynamic_task_mapping']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:11:42.664+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.664+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.679+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.679+0000] {dag.py:3441} INFO - Setting next_dagrun for example_dynamic_task_mapping to 2022-03-04T00:00:00+00:00, run_after=2022-03-05T00:00:00+00:00 +[2024-01-06T09:11:42.696+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.077 seconds +[2024-01-06T09:12:13.577+0000] {processor.py:153} INFO - Started process (PID=264) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:12:13.578+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2024-01-06T09:12:13.578+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.578+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:12:13.589+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_dynamic_task_mapping']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:12:13.602+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.602+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.613+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.613+0000] {dag.py:3441} INFO - Setting next_dagrun for example_dynamic_task_mapping to 2022-03-04T00:00:00+00:00, run_after=2022-03-05T00:00:00+00:00 +[2024-01-06T09:12:13.621+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.045 seconds +[2024-01-06T09:12:44.354+0000] {processor.py:153} INFO - Started process (PID=353) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:12:44.354+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2024-01-06T09:12:44.355+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.354+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:12:44.367+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_dynamic_task_mapping']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2024-01-06T09:12:44.380+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.380+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.392+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.392+0000] {dag.py:3441} INFO - Setting next_dagrun for example_dynamic_task_mapping to 2022-03-04T00:00:00+00:00, run_after=2022-03-05T00:00:00+00:00 +[2024-01-06T09:12:44.400+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.048 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_external_task_marker_dag.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_external_task_marker_dag.py.log new file mode 100644 index 0000000..acbd6b3 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_external_task_marker_dag.py.log @@ -0,0 +1,40 @@ +[2024-01-06T09:11:12.802+0000] {processor.py:153} INFO - Started process (PID=112) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:11:12.803+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2024-01-06T09:11:12.803+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.803+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:11:12.811+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_external_task_marker_child', 'example_external_task_marker_parent']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:11:12.861+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.861+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_external_task_marker_child +[2024-01-06T09:11:12.865+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.865+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_external_task_marker_child +[2024-01-06T09:11:12.868+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.868+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_external_task_marker_child +[2024-01-06T09:11:12.873+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.873+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_external_task_marker_parent +[2024-01-06T09:11:12.876+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.876+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_external_task_marker_parent +[2024-01-06T09:11:12.878+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.878+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_external_task_marker_parent +[2024-01-06T09:11:12.878+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.878+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:11:12.885+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.885+0000] {dag.py:2711} INFO - Creating ORM DAG for example_external_task_marker_parent +[2024-01-06T09:11:12.886+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.885+0000] {dag.py:2711} INFO - Creating ORM DAG for example_external_task_marker_child +[2024-01-06T09:11:12.890+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.890+0000] {dag.py:3441} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2024-01-06T09:11:12.891+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.891+0000] {dag.py:3441} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2024-01-06T09:11:12.899+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.099 seconds +[2024-01-06T09:11:43.150+0000] {processor.py:153} INFO - Started process (PID=201) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:11:43.150+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2024-01-06T09:11:43.150+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.150+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:11:43.158+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_external_task_marker_parent', 'example_external_task_marker_child']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:11:43.173+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.173+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:11:43.184+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.184+0000] {dag.py:3441} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2024-01-06T09:11:43.186+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.186+0000] {dag.py:3441} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2024-01-06T09:11:43.194+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.047 seconds +[2024-01-06T09:12:13.841+0000] {processor.py:153} INFO - Started process (PID=273) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:12:13.841+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2024-01-06T09:12:13.841+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.841+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:12:13.848+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_external_task_marker_parent', 'example_external_task_marker_child']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:12:13.861+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.861+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:12:13.872+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.872+0000] {dag.py:3441} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2024-01-06T09:12:13.873+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.873+0000] {dag.py:3441} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2024-01-06T09:12:13.881+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.042 seconds +[2024-01-06T09:12:44.634+0000] {processor.py:153} INFO - Started process (PID=362) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:12:44.635+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2024-01-06T09:12:44.635+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.635+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:12:44.642+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_external_task_marker_child', 'example_external_task_marker_parent']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2024-01-06T09:12:44.656+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.656+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:12:44.667+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.667+0000] {dag.py:3441} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2024-01-06T09:12:44.669+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.669+0000] {dag.py:3441} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2024-01-06T09:12:44.677+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.044 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_kubernetes_executor.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_kubernetes_executor.py.log new file mode 100644 index 0000000..31a1b57 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_kubernetes_executor.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:13.282+0000] {processor.py:153} INFO - Started process (PID=120) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:11:13.283+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2024-01-06T09:11:13.283+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.283+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:11:13.299+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_kubernetes_executor']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:11:13.352+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.351+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_kubernetes_executor +[2024-01-06T09:11:13.355+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.355+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_kubernetes_executor +[2024-01-06T09:11:13.358+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.358+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_kubernetes_executor +[2024-01-06T09:11:13.358+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.358+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:13.364+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.364+0000] {dag.py:2711} INFO - Creating ORM DAG for example_kubernetes_executor +[2024-01-06T09:11:13.369+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.369+0000] {dag.py:3441} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2024-01-06T09:11:13.376+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.096 seconds +[2024-01-06T09:11:43.405+0000] {processor.py:153} INFO - Started process (PID=209) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:11:43.406+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2024-01-06T09:11:43.406+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.406+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:11:43.421+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_kubernetes_executor']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:11:43.435+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.435+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:43.445+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.445+0000] {dag.py:3441} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2024-01-06T09:11:43.453+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.050 seconds +[2024-01-06T09:12:14.174+0000] {processor.py:153} INFO - Started process (PID=281) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:12:14.174+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2024-01-06T09:12:14.175+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.175+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:12:14.191+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_kubernetes_executor']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:12:14.206+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.205+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:14.216+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.216+0000] {dag.py:3441} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2024-01-06T09:12:14.225+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.053 seconds +[2024-01-06T09:12:44.875+0000] {processor.py:153} INFO - Started process (PID=370) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:12:44.876+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2024-01-06T09:12:44.876+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.876+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:12:44.890+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_kubernetes_executor']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2024-01-06T09:12:44.904+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.904+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.915+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.915+0000] {dag.py:3441} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2024-01-06T09:12:44.922+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.048 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_latest_only.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_latest_only.py.log new file mode 100644 index 0000000..27fd908 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_latest_only.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:10.851+0000] {processor.py:153} INFO - Started process (PID=88) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:11:10.852+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2024-01-06T09:11:10.852+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.852+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:11:10.861+0000] {processor.py:753} INFO - DAG(s) dict_keys(['latest_only']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:11:10.918+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.918+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:latest_only +[2024-01-06T09:11:10.922+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.922+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:latest_only +[2024-01-06T09:11:10.925+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.925+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:latest_only +[2024-01-06T09:11:10.926+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.926+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:10.934+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.934+0000] {dag.py:2711} INFO - Creating ORM DAG for latest_only +[2024-01-06T09:11:10.940+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.940+0000] {dag.py:3441} INFO - Setting next_dagrun for latest_only to 2024-01-06T05:11:10.940521+00:00, run_after=2024-01-06T09:11:10.940521+00:00 +[2024-01-06T09:11:10.953+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py took 0.104 seconds +[2024-01-06T09:11:41.851+0000] {processor.py:153} INFO - Started process (PID=170) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:11:41.851+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2024-01-06T09:11:41.851+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.851+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:11:41.858+0000] {processor.py:753} INFO - DAG(s) dict_keys(['latest_only']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:11:41.871+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.870+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:41.882+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.882+0000] {dag.py:3441} INFO - Setting next_dagrun for latest_only to 2024-01-06T05:11:41.882510+00:00, run_after=2024-01-06T09:11:41.882510+00:00 +[2024-01-06T09:11:41.890+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py took 0.042 seconds +[2024-01-06T09:12:12.085+0000] {processor.py:153} INFO - Started process (PID=249) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:12:12.086+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2024-01-06T09:12:12.086+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.086+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:12:12.094+0000] {processor.py:753} INFO - DAG(s) dict_keys(['latest_only']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:12:12.106+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.106+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:12.118+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.118+0000] {dag.py:3441} INFO - Setting next_dagrun for latest_only to 2024-01-06T05:12:12.117989+00:00, run_after=2024-01-06T09:12:12.117989+00:00 +[2024-01-06T09:12:12.126+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py took 0.042 seconds +[2024-01-06T09:12:42.755+0000] {processor.py:153} INFO - Started process (PID=338) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:12:42.755+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2024-01-06T09:12:42.755+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.755+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:12:42.762+0000] {processor.py:753} INFO - DAG(s) dict_keys(['latest_only']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py +[2024-01-06T09:12:42.774+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.774+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:42.785+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.785+0000] {dag.py:3441} INFO - Setting next_dagrun for latest_only to 2024-01-06T05:12:42.785308+00:00, run_after=2024-01-06T09:12:42.785308+00:00 +[2024-01-06T09:12:42.794+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only.py took 0.041 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_latest_only_with_trigger.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_latest_only_with_trigger.py.log new file mode 100644 index 0000000..00c03d4 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_latest_only_with_trigger.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:11.348+0000] {processor.py:153} INFO - Started process (PID=92) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:11:11.349+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2024-01-06T09:11:11.350+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.350+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:11:11.361+0000] {processor.py:753} INFO - DAG(s) dict_keys(['latest_only_with_trigger']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:11:11.433+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.433+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:latest_only_with_trigger +[2024-01-06T09:11:11.437+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.437+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:latest_only_with_trigger +[2024-01-06T09:11:11.441+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.441+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:latest_only_with_trigger +[2024-01-06T09:11:11.441+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.441+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:11.449+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.449+0000] {dag.py:2711} INFO - Creating ORM DAG for latest_only_with_trigger +[2024-01-06T09:11:11.456+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.456+0000] {dag.py:3441} INFO - Setting next_dagrun for latest_only_with_trigger to 2024-01-06T05:11:11.456325+00:00, run_after=2024-01-06T09:11:11.456325+00:00 +[2024-01-06T09:11:11.472+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.127 seconds +[2024-01-06T09:11:42.040+0000] {processor.py:153} INFO - Started process (PID=174) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:11:42.041+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2024-01-06T09:11:42.042+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.042+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:11:42.052+0000] {processor.py:753} INFO - DAG(s) dict_keys(['latest_only_with_trigger']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:11:42.068+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.068+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.081+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.081+0000] {dag.py:3441} INFO - Setting next_dagrun for latest_only_with_trigger to 2024-01-06T05:11:42.080865+00:00, run_after=2024-01-06T09:11:42.080865+00:00 +[2024-01-06T09:11:42.093+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.055 seconds +[2024-01-06T09:12:12.193+0000] {processor.py:153} INFO - Started process (PID=253) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:12:12.194+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2024-01-06T09:12:12.194+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.194+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:12:12.202+0000] {processor.py:753} INFO - DAG(s) dict_keys(['latest_only_with_trigger']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:12:12.214+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.214+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:12.225+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.225+0000] {dag.py:3441} INFO - Setting next_dagrun for latest_only_with_trigger to 2024-01-06T05:12:12.225581+00:00, run_after=2024-01-06T09:12:12.225581+00:00 +[2024-01-06T09:12:12.233+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.042 seconds +[2024-01-06T09:12:42.918+0000] {processor.py:153} INFO - Started process (PID=342) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:12:42.919+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2024-01-06T09:12:42.919+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.919+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:12:42.926+0000] {processor.py:753} INFO - DAG(s) dict_keys(['latest_only_with_trigger']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2024-01-06T09:12:42.938+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.938+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:42.949+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.949+0000] {dag.py:3441} INFO - Setting next_dagrun for latest_only_with_trigger to 2024-01-06T05:12:42.949314+00:00, run_after=2024-01-06T09:12:42.949314+00:00 +[2024-01-06T09:12:42.957+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.041 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_local_kubernetes_executor.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_local_kubernetes_executor.py.log new file mode 100644 index 0000000..772a758 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_local_kubernetes_executor.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:11.520+0000] {processor.py:153} INFO - Started process (PID=95) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:11:11.521+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2024-01-06T09:11:11.522+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.522+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:11:11.539+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_local_kubernetes_executor']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:11:11.623+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.623+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_local_kubernetes_executor +[2024-01-06T09:11:11.631+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.631+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_local_kubernetes_executor +[2024-01-06T09:11:11.635+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.635+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_local_kubernetes_executor +[2024-01-06T09:11:11.635+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.635+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:11.643+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.643+0000] {dag.py:2711} INFO - Creating ORM DAG for example_local_kubernetes_executor +[2024-01-06T09:11:11.650+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.649+0000] {dag.py:3441} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2024-01-06T09:11:11.661+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.143 seconds +[2024-01-06T09:11:42.255+0000] {processor.py:153} INFO - Started process (PID=184) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:11:42.255+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2024-01-06T09:11:42.256+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.256+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:11:42.268+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_local_kubernetes_executor']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:11:42.284+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.283+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.296+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.296+0000] {dag.py:3441} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2024-01-06T09:11:42.305+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.053 seconds +[2024-01-06T09:12:13.285+0000] {processor.py:153} INFO - Started process (PID=256) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:12:13.287+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2024-01-06T09:12:13.288+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.288+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:12:13.312+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_local_kubernetes_executor']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:12:13.330+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.330+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.342+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.341+0000] {dag.py:3441} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2024-01-06T09:12:13.349+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.070 seconds +[2024-01-06T09:12:44.041+0000] {processor.py:153} INFO - Started process (PID=345) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:12:44.043+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2024-01-06T09:12:44.044+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.044+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:12:44.064+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_local_kubernetes_executor']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2024-01-06T09:12:44.084+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.083+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.098+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.098+0000] {dag.py:3441} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2024-01-06T09:12:44.107+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.070 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_nested_branch_dag.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_nested_branch_dag.py.log new file mode 100644 index 0000000..691b6df --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_nested_branch_dag.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:13.177+0000] {processor.py:153} INFO - Started process (PID=118) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:11:13.177+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2024-01-06T09:11:13.178+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.178+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:11:13.191+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_nested_branch_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:11:13.244+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.244+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_nested_branch_dag +[2024-01-06T09:11:13.247+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.247+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_nested_branch_dag +[2024-01-06T09:11:13.250+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.250+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_nested_branch_dag +[2024-01-06T09:11:13.250+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.250+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:13.256+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.256+0000] {dag.py:2711} INFO - Creating ORM DAG for example_nested_branch_dag +[2024-01-06T09:11:13.261+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.261+0000] {dag.py:3441} INFO - Setting next_dagrun for example_nested_branch_dag to 2024-01-05T00:00:00+00:00, run_after=2024-01-06T00:00:00+00:00 +[2024-01-06T09:11:13.269+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.094 seconds +[2024-01-06T09:11:43.347+0000] {processor.py:153} INFO - Started process (PID=207) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:11:43.348+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2024-01-06T09:11:43.348+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.348+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:11:43.361+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_nested_branch_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:11:43.374+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.374+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:43.386+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.386+0000] {dag.py:3441} INFO - Setting next_dagrun for example_nested_branch_dag to 2024-01-05T00:00:00+00:00, run_after=2024-01-06T00:00:00+00:00 +[2024-01-06T09:11:43.394+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.049 seconds +[2024-01-06T09:12:14.068+0000] {processor.py:153} INFO - Started process (PID=279) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:12:14.068+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2024-01-06T09:12:14.069+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.069+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:12:14.082+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_nested_branch_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:12:14.094+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.094+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:14.105+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.105+0000] {dag.py:3441} INFO - Setting next_dagrun for example_nested_branch_dag to 2024-01-05T00:00:00+00:00, run_after=2024-01-06T00:00:00+00:00 +[2024-01-06T09:12:14.114+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.048 seconds +[2024-01-06T09:12:44.818+0000] {processor.py:153} INFO - Started process (PID=368) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:12:44.818+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2024-01-06T09:12:44.818+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.818+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:12:44.832+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_nested_branch_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2024-01-06T09:12:44.844+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.844+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.857+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.857+0000] {dag.py:3441} INFO - Setting next_dagrun for example_nested_branch_dag to 2024-01-05T00:00:00+00:00, run_after=2024-01-06T00:00:00+00:00 +[2024-01-06T09:12:44.865+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.049 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_passing_params_via_test_command.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_passing_params_via_test_command.py.log new file mode 100644 index 0000000..6276bbb --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_passing_params_via_test_command.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:11.174+0000] {processor.py:153} INFO - Started process (PID=91) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:11:11.177+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2024-01-06T09:11:11.178+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.178+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:11:11.207+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_passing_params_via_test_command']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:11:11.304+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.304+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_passing_params_via_test_command +[2024-01-06T09:11:11.309+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.308+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_passing_params_via_test_command +[2024-01-06T09:11:11.312+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.312+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_passing_params_via_test_command +[2024-01-06T09:11:11.312+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.312+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:11.319+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.319+0000] {dag.py:2711} INFO - Creating ORM DAG for example_passing_params_via_test_command +[2024-01-06T09:11:11.330+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.330+0000] {dag.py:3441} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2024-01-06T09:10:00+00:00, run_after=2024-01-06T09:11:00+00:00 +[2024-01-06T09:11:11.342+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.170 seconds +[2024-01-06T09:11:41.968+0000] {processor.py:153} INFO - Started process (PID=173) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:11:41.969+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2024-01-06T09:11:41.969+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.969+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:11:41.983+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_passing_params_via_test_command']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:11:42.000+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.999+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.015+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.015+0000] {dag.py:3441} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2024-01-06T09:10:00+00:00, run_after=2024-01-06T09:11:00+00:00 +[2024-01-06T09:11:42.025+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.059 seconds +[2024-01-06T09:12:12.144+0000] {processor.py:153} INFO - Started process (PID=252) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:12:12.145+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2024-01-06T09:12:12.145+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.145+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:12:12.158+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_passing_params_via_test_command']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:12:12.170+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.170+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:12.183+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.183+0000] {dag.py:3441} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2024-01-06T09:11:00+00:00, run_after=2024-01-06T09:12:00+00:00 +[2024-01-06T09:12:12.192+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.049 seconds +[2024-01-06T09:12:42.863+0000] {processor.py:153} INFO - Started process (PID=341) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:12:42.863+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2024-01-06T09:12:42.864+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.864+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:12:42.876+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_passing_params_via_test_command']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2024-01-06T09:12:42.888+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.888+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:42.901+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.901+0000] {dag.py:3441} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2024-01-06T09:11:00+00:00, run_after=2024-01-06T09:12:00+00:00 +[2024-01-06T09:12:42.909+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.047 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_python_operator.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_python_operator.py.log new file mode 100644 index 0000000..44c62ce --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_python_operator.py.log @@ -0,0 +1,64 @@ +[2024-01-06T09:11:10.964+0000] {processor.py:153} INFO - Started process (PID=89) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:11:10.965+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2024-01-06T09:11:10.965+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.965+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:11:10.979+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.979+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:11:10.979+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.979+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:11:10.979+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.979+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:11:10.979+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.979+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:11:10.980+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.980+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:11:10.980+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.980+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:11:10.980+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.980+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:11:10.981+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.980+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:11:10.984+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_python_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:11:11.050+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.050+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_python_operator +[2024-01-06T09:11:11.055+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.055+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_python_operator +[2024-01-06T09:11:11.059+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.059+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_python_operator +[2024-01-06T09:11:11.059+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.059+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:11.067+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.067+0000] {dag.py:2711} INFO - Creating ORM DAG for example_python_operator +[2024-01-06T09:11:11.097+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.097+0000] {dag.py:3441} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2024-01-06T09:11:11.140+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py took 0.178 seconds +[2024-01-06T09:11:41.902+0000] {processor.py:153} INFO - Started process (PID=171) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:11:41.902+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2024-01-06T09:11:41.903+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.902+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:11:41.912+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.912+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:11:41.912+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.912+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:11:41.912+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.912+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:11:41.913+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.913+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:11:41.913+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.913+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:11:41.913+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.913+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:11:41.913+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.913+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:11:41.914+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.914+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:11:41.917+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_python_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:11:41.932+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.932+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:41.944+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.944+0000] {dag.py:3441} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2024-01-06T09:11:41.954+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py took 0.054 seconds +[2024-01-06T09:12:12.087+0000] {processor.py:153} INFO - Started process (PID=250) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:12:12.087+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2024-01-06T09:12:12.088+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.088+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:12:12.097+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.097+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:12:12.097+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.097+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:12:12.098+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.098+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:12:12.098+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.098+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:12:12.098+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.098+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:12:12.098+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.098+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:12:12.099+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.099+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:12:12.099+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.099+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:12:12.102+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_python_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:12:12.115+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.115+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:12.126+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.126+0000] {dag.py:3441} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2024-01-06T09:12:12.133+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py took 0.048 seconds +[2024-01-06T09:12:42.805+0000] {processor.py:153} INFO - Started process (PID=339) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:12:42.805+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2024-01-06T09:12:42.806+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.806+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:12:42.815+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.815+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:12:42.815+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.815+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:12:42.815+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.815+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:12:42.816+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.816+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:12:42.816+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.816+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:12:42.816+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.816+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:12:42.817+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.817+0000] {taskmixin.py:205} WARNING - Dependency , log_sql_query already registered for DAG: example_python_operator +[2024-01-06T09:12:42.817+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.817+0000] {taskmixin.py:205} WARNING - Dependency , print_the_context already registered for DAG: example_python_operator +[2024-01-06T09:12:42.820+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_python_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py +[2024-01-06T09:12:42.833+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.833+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:42.844+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.843+0000] {dag.py:3441} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2024-01-06T09:12:42.851+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_python_operator.py took 0.048 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_sensor_decorator.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_sensor_decorator.py.log new file mode 100644 index 0000000..d57ab09 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_sensor_decorator.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:11.982+0000] {processor.py:153} INFO - Started process (PID=101) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:11:11.983+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2024-01-06T09:11:11.983+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.983+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:11:11.997+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sensor_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:11:12.067+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.067+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_sensor_decorator +[2024-01-06T09:11:12.073+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.073+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_sensor_decorator +[2024-01-06T09:11:12.076+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.076+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_sensor_decorator +[2024-01-06T09:11:12.077+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.076+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.084+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.083+0000] {dag.py:2711} INFO - Creating ORM DAG for example_sensor_decorator +[2024-01-06T09:11:12.091+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.091+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2024-01-06T09:11:12.103+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.123 seconds +[2024-01-06T09:11:42.550+0000] {processor.py:153} INFO - Started process (PID=190) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:11:42.551+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2024-01-06T09:11:42.551+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.551+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:11:42.563+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sensor_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:11:42.576+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.576+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.590+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.590+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2024-01-06T09:11:42.600+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.052 seconds +[2024-01-06T09:12:13.470+0000] {processor.py:153} INFO - Started process (PID=262) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:12:13.470+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2024-01-06T09:12:13.470+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.470+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:12:13.481+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sensor_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:12:13.493+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.492+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.504+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.503+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2024-01-06T09:12:13.512+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.044 seconds +[2024-01-06T09:12:44.236+0000] {processor.py:153} INFO - Started process (PID=351) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:12:44.236+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2024-01-06T09:12:44.238+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.238+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:12:44.249+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sensor_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py +[2024-01-06T09:12:44.261+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.261+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.273+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.273+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2024-01-06T09:12:44.281+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.048 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_sensors.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_sensors.py.log new file mode 100644 index 0000000..89f69fb --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_sensors.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:11.967+0000] {processor.py:153} INFO - Started process (PID=100) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:11:11.968+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2024-01-06T09:11:11.969+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.969+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:11:11.985+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sensors']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:11:12.053+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.053+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_sensors +[2024-01-06T09:11:12.058+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.058+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_sensors +[2024-01-06T09:11:12.061+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.061+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_sensors +[2024-01-06T09:11:12.062+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.061+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.070+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.069+0000] {dag.py:2711} INFO - Creating ORM DAG for example_sensors +[2024-01-06T09:11:12.075+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.075+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2024-01-06T09:11:12.086+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py took 0.121 seconds +[2024-01-06T09:11:42.470+0000] {processor.py:153} INFO - Started process (PID=189) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:11:42.470+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2024-01-06T09:11:42.471+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.471+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:11:42.486+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sensors']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:11:42.504+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.504+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.522+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.522+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2024-01-06T09:11:42.536+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py took 0.068 seconds +[2024-01-06T09:12:13.468+0000] {processor.py:153} INFO - Started process (PID=261) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:12:13.469+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2024-01-06T09:12:13.469+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.469+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:12:13.479+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sensors']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:12:13.493+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.493+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.504+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.503+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2024-01-06T09:12:13.512+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py took 0.046 seconds +[2024-01-06T09:12:44.234+0000] {processor.py:153} INFO - Started process (PID=350) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:12:44.235+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2024-01-06T09:12:44.235+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.235+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:12:44.247+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sensors']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py +[2024-01-06T09:12:44.261+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.261+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.274+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.273+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2024-01-06T09:12:44.281+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sensors.py took 0.049 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_short_circuit_decorator.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_short_circuit_decorator.py.log new file mode 100644 index 0000000..371192b --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_short_circuit_decorator.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:11.836+0000] {processor.py:153} INFO - Started process (PID=99) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:11:11.838+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2024-01-06T09:11:11.839+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.838+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:11:11.854+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_short_circuit_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:11:11.930+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.930+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_short_circuit_decorator +[2024-01-06T09:11:11.936+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.936+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_short_circuit_decorator +[2024-01-06T09:11:11.940+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.939+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_short_circuit_decorator +[2024-01-06T09:11:11.940+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.940+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:11.947+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.947+0000] {dag.py:2711} INFO - Creating ORM DAG for example_short_circuit_decorator +[2024-01-06T09:11:11.955+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.955+0000] {dag.py:3441} INFO - Setting next_dagrun for example_short_circuit_decorator to 2024-01-05T09:11:11.955108+00:00, run_after=2024-01-06T09:11:11.955108+00:00 +[2024-01-06T09:11:11.965+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.131 seconds +[2024-01-06T09:11:42.468+0000] {processor.py:153} INFO - Started process (PID=188) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:11:42.469+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2024-01-06T09:11:42.470+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.470+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:11:42.484+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_short_circuit_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:11:42.504+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.504+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.522+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.521+0000] {dag.py:3441} INFO - Setting next_dagrun for example_short_circuit_decorator to 2024-01-05T09:11:42.521639+00:00, run_after=2024-01-06T09:11:42.521639+00:00 +[2024-01-06T09:11:42.537+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.071 seconds +[2024-01-06T09:12:13.415+0000] {processor.py:153} INFO - Started process (PID=260) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:12:13.416+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2024-01-06T09:12:13.416+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.416+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:12:13.428+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_short_circuit_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:12:13.440+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.440+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.450+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.450+0000] {dag.py:3441} INFO - Setting next_dagrun for example_short_circuit_decorator to 2024-01-05T09:12:13.450456+00:00, run_after=2024-01-06T09:12:13.450456+00:00 +[2024-01-06T09:12:13.458+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.044 seconds +[2024-01-06T09:12:44.176+0000] {processor.py:153} INFO - Started process (PID=349) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:12:44.176+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2024-01-06T09:12:44.176+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.176+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:12:44.189+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_short_circuit_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2024-01-06T09:12:44.201+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.201+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.212+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.212+0000] {dag.py:3441} INFO - Setting next_dagrun for example_short_circuit_decorator to 2024-01-05T09:12:44.212737+00:00, run_after=2024-01-06T09:12:44.212737+00:00 +[2024-01-06T09:12:44.221+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.047 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_short_circuit_operator.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_short_circuit_operator.py.log new file mode 100644 index 0000000..d28d4d9 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_short_circuit_operator.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:12.698+0000] {processor.py:153} INFO - Started process (PID=110) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:11:12.699+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2024-01-06T09:11:12.699+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.699+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:11:12.708+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_short_circuit_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:11:12.763+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.763+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_short_circuit_operator +[2024-01-06T09:11:12.766+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.766+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_short_circuit_operator +[2024-01-06T09:11:12.769+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.769+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_short_circuit_operator +[2024-01-06T09:11:12.769+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.769+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.776+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.776+0000] {dag.py:2711} INFO - Creating ORM DAG for example_short_circuit_operator +[2024-01-06T09:11:12.781+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.781+0000] {dag.py:3441} INFO - Setting next_dagrun for example_short_circuit_operator to 2024-01-05T09:11:12.781568+00:00, run_after=2024-01-06T09:11:12.781568+00:00 +[2024-01-06T09:11:12.790+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.094 seconds +[2024-01-06T09:11:43.039+0000] {processor.py:153} INFO - Started process (PID=199) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:11:43.040+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2024-01-06T09:11:43.040+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.040+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:11:43.048+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_short_circuit_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:11:43.061+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.061+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:43.075+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.075+0000] {dag.py:3441} INFO - Setting next_dagrun for example_short_circuit_operator to 2024-01-05T09:11:43.075355+00:00, run_after=2024-01-06T09:11:43.075355+00:00 +[2024-01-06T09:11:43.086+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.049 seconds +[2024-01-06T09:12:13.790+0000] {processor.py:153} INFO - Started process (PID=271) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:12:13.790+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2024-01-06T09:12:13.791+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.791+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:12:13.799+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_short_circuit_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:12:13.811+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.811+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.821+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.821+0000] {dag.py:3441} INFO - Setting next_dagrun for example_short_circuit_operator to 2024-01-05T09:12:13.821805+00:00, run_after=2024-01-06T09:12:13.821805+00:00 +[2024-01-06T09:12:13.829+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.041 seconds +[2024-01-06T09:12:44.580+0000] {processor.py:153} INFO - Started process (PID=360) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:12:44.580+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2024-01-06T09:12:44.580+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.580+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:12:44.589+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_short_circuit_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2024-01-06T09:12:44.602+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.601+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.614+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.613+0000] {dag.py:3441} INFO - Setting next_dagrun for example_short_circuit_operator to 2024-01-05T09:12:44.613833+00:00, run_after=2024-01-06T09:12:44.613833+00:00 +[2024-01-06T09:12:44.623+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.045 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_skip_dag.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_skip_dag.py.log new file mode 100644 index 0000000..5a49809 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_skip_dag.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:13.191+0000] {processor.py:153} INFO - Started process (PID=119) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:11:13.192+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2024-01-06T09:11:13.193+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.193+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:11:13.201+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_skip_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:11:13.252+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.252+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_skip_dag +[2024-01-06T09:11:13.255+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.255+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_skip_dag +[2024-01-06T09:11:13.258+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.258+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_skip_dag +[2024-01-06T09:11:13.258+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.258+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:13.264+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.264+0000] {dag.py:2711} INFO - Creating ORM DAG for example_skip_dag +[2024-01-06T09:11:13.269+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.269+0000] {dag.py:3441} INFO - Setting next_dagrun for example_skip_dag to 2024-01-05T09:11:13.269177+00:00, run_after=2024-01-06T09:11:13.269177+00:00 +[2024-01-06T09:11:13.277+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py took 0.087 seconds +[2024-01-06T09:11:43.358+0000] {processor.py:153} INFO - Started process (PID=208) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:11:43.359+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2024-01-06T09:11:43.359+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.359+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:11:43.366+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_skip_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:11:43.378+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.378+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:43.389+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.389+0000] {dag.py:3441} INFO - Setting next_dagrun for example_skip_dag to 2024-01-05T09:11:43.388934+00:00, run_after=2024-01-06T09:11:43.388934+00:00 +[2024-01-06T09:11:43.396+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py took 0.040 seconds +[2024-01-06T09:12:14.124+0000] {processor.py:153} INFO - Started process (PID=280) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:12:14.125+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2024-01-06T09:12:14.125+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.125+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:12:14.133+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_skip_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:12:14.145+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.145+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:14.156+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.156+0000] {dag.py:3441} INFO - Setting next_dagrun for example_skip_dag to 2024-01-05T09:12:14.156162+00:00, run_after=2024-01-06T09:12:14.156162+00:00 +[2024-01-06T09:12:14.164+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py took 0.041 seconds +[2024-01-06T09:12:44.826+0000] {processor.py:153} INFO - Started process (PID=369) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:12:44.826+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2024-01-06T09:12:44.827+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.827+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:12:44.833+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_skip_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py +[2024-01-06T09:12:44.845+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.845+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.856+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.856+0000] {dag.py:3441} INFO - Setting next_dagrun for example_skip_dag to 2024-01-05T09:12:44.856205+00:00, run_after=2024-01-06T09:12:44.856205+00:00 +[2024-01-06T09:12:44.865+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_skip_dag.py took 0.041 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_sla_dag.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_sla_dag.py.log new file mode 100644 index 0000000..b0bd6ab --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_sla_dag.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:11.177+0000] {processor.py:153} INFO - Started process (PID=90) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:11:11.179+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2024-01-06T09:11:11.181+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.180+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:11:11.206+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sla_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:11:11.291+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.291+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_sla_dag +[2024-01-06T09:11:11.296+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.296+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_sla_dag +[2024-01-06T09:11:11.301+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.301+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_sla_dag +[2024-01-06T09:11:11.301+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.301+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:11.308+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.308+0000] {dag.py:2711} INFO - Creating ORM DAG for example_sla_dag +[2024-01-06T09:11:11.316+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.316+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sla_dag to 2024-01-06T09:08:00+00:00, run_after=2024-01-06T09:10:00+00:00 +[2024-01-06T09:11:11.324+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py took 0.153 seconds +[2024-01-06T09:11:41.903+0000] {processor.py:153} INFO - Started process (PID=172) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:11:41.904+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2024-01-06T09:11:41.904+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.904+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:11:41.916+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sla_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:11:41.932+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.931+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:41.945+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.945+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sla_dag to 2024-01-06T09:08:00+00:00, run_after=2024-01-06T09:10:00+00:00 +[2024-01-06T09:11:41.954+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py took 0.053 seconds +[2024-01-06T09:12:12.137+0000] {processor.py:153} INFO - Started process (PID=251) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:12:12.137+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2024-01-06T09:12:12.138+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.138+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:12:12.150+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sla_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:12:12.162+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.162+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:12.174+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.174+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sla_dag to 2024-01-06T09:10:00+00:00, run_after=2024-01-06T09:12:00+00:00 +[2024-01-06T09:12:12.182+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py took 0.047 seconds +[2024-01-06T09:12:42.862+0000] {processor.py:153} INFO - Started process (PID=340) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:12:42.862+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2024-01-06T09:12:42.862+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.862+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:12:42.874+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_sla_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py +[2024-01-06T09:12:42.887+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.887+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:42.900+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.900+0000] {dag.py:3441} INFO - Setting next_dagrun for example_sla_dag to 2024-01-06T09:10:00+00:00, run_after=2024-01-06T09:12:00+00:00 +[2024-01-06T09:12:42.908+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_sla_dag.py took 0.048 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_subdag_operator.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_subdag_operator.py.log new file mode 100644 index 0000000..b2b9dc9 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_subdag_operator.py.log @@ -0,0 +1,54 @@ +[2024-01-06T09:11:11.489+0000] {processor.py:153} INFO - Started process (PID=94) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:11:11.491+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2024-01-06T09:11:11.491+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.491+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:11:11.514+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:11:11.582+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.582+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_subdag_operator +[2024-01-06T09:11:11.592+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.592+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_subdag_operator +[2024-01-06T09:11:11.601+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.601+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_subdag_operator +[2024-01-06T09:11:11.602+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.601+0000] {dag.py:2690} INFO - Sync 3 DAGs +[2024-01-06T09:11:11.611+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.611+0000] {dag.py:2711} INFO - Creating ORM DAG for example_subdag_operator.section-2 +[2024-01-06T09:11:11.612+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.612+0000] {dag.py:2711} INFO - Creating ORM DAG for example_subdag_operator.section-1 +[2024-01-06T09:11:11.612+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.612+0000] {dag.py:2711} INFO - Creating ORM DAG for example_subdag_operator +[2024-01-06T09:11:11.619+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.619+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01T00:00:00+00:00, run_after=2022-01-01T00:00:00+00:00 +[2024-01-06T09:11:11.620+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.620+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2024-01-06T09:11:11.620+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.620+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2024-01-06T09:11:11.627+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.627+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:11:11.631+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.631+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2024-01-06T09:11:11.633+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.633+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2024-01-06T09:11:11.640+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py took 0.154 seconds +[2024-01-06T09:11:42.104+0000] {processor.py:153} INFO - Started process (PID=176) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:11:42.104+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2024-01-06T09:11:42.105+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.105+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:11:42.121+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:11:42.131+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.131+0000] {dag.py:2690} INFO - Sync 3 DAGs +[2024-01-06T09:11:42.182+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.182+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01T00:00:00+00:00, run_after=2022-01-01T00:00:00+00:00 +[2024-01-06T09:11:42.194+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.194+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2024-01-06T09:11:42.197+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.197+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2024-01-06T09:11:42.219+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.219+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:11:42.230+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.229+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2024-01-06T09:11:42.231+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.231+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2024-01-06T09:11:42.240+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py took 0.138 seconds +[2024-01-06T09:12:12.252+0000] {processor.py:153} INFO - Started process (PID=255) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:12:12.253+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2024-01-06T09:12:12.253+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.253+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:12:12.268+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:12:12.276+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.276+0000] {dag.py:2690} INFO - Sync 3 DAGs +[2024-01-06T09:12:12.287+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.287+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01T00:00:00+00:00, run_after=2022-01-01T00:00:00+00:00 +[2024-01-06T09:12:12.288+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.288+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2024-01-06T09:12:12.289+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.289+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2024-01-06T09:12:12.292+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.292+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:12:12.294+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.294+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2024-01-06T09:12:12.294+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.294+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2024-01-06T09:12:12.299+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py took 0.048 seconds +[2024-01-06T09:12:42.969+0000] {processor.py:153} INFO - Started process (PID=344) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:12:42.970+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2024-01-06T09:12:42.970+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.970+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:12:42.986+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py +[2024-01-06T09:12:42.994+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.994+0000] {dag.py:2690} INFO - Sync 3 DAGs +[2024-01-06T09:12:43.005+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:43.004+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01T00:00:00+00:00, run_after=2022-01-01T00:00:00+00:00 +[2024-01-06T09:12:43.006+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:43.006+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2024-01-06T09:12:43.007+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:43.007+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2024-01-06T09:12:43.011+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:43.010+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:12:43.013+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:43.013+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2024-01-06T09:12:43.013+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:43.013+0000] {dag.py:3441} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2024-01-06T09:12:43.017+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_subdag_operator.py took 0.050 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_task_group.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_task_group.py.log new file mode 100644 index 0000000..f992e32 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_task_group.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:12.396+0000] {processor.py:153} INFO - Started process (PID=105) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:11:12.397+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2024-01-06T09:11:12.397+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.397+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:11:12.407+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_task_group']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:11:12.483+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.482+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_task_group +[2024-01-06T09:11:12.488+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.487+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_task_group +[2024-01-06T09:11:12.491+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.491+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_task_group +[2024-01-06T09:11:12.491+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.491+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.499+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.499+0000] {dag.py:2711} INFO - Creating ORM DAG for example_task_group +[2024-01-06T09:11:12.505+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.505+0000] {dag.py:3441} INFO - Setting next_dagrun for example_task_group to 2024-01-05T09:11:12.505667+00:00, run_after=2024-01-06T09:11:12.505667+00:00 +[2024-01-06T09:11:12.514+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py took 0.121 seconds +[2024-01-06T09:11:42.807+0000] {processor.py:153} INFO - Started process (PID=194) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:11:42.808+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2024-01-06T09:11:42.809+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.809+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:11:42.823+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_task_group']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:11:42.850+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.850+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.871+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.871+0000] {dag.py:3441} INFO - Setting next_dagrun for example_task_group to 2024-01-05T09:11:42.871212+00:00, run_after=2024-01-06T09:11:42.871212+00:00 +[2024-01-06T09:11:42.892+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py took 0.088 seconds +[2024-01-06T09:12:13.631+0000] {processor.py:153} INFO - Started process (PID=266) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:12:13.632+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2024-01-06T09:12:13.632+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.632+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:12:13.640+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_task_group']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:12:13.652+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.652+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.663+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.662+0000] {dag.py:3441} INFO - Setting next_dagrun for example_task_group to 2024-01-05T09:12:13.662844+00:00, run_after=2024-01-06T09:12:13.662844+00:00 +[2024-01-06T09:12:13.670+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py took 0.041 seconds +[2024-01-06T09:12:44.411+0000] {processor.py:153} INFO - Started process (PID=355) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:12:44.411+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2024-01-06T09:12:44.411+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.411+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:12:44.420+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_task_group']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py +[2024-01-06T09:12:44.435+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.435+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.447+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.447+0000] {dag.py:3441} INFO - Setting next_dagrun for example_task_group to 2024-01-05T09:12:44.447417+00:00, run_after=2024-01-06T09:12:44.447417+00:00 +[2024-01-06T09:12:44.456+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group.py took 0.047 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_task_group_decorator.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_task_group_decorator.py.log new file mode 100644 index 0000000..b1acf2b --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_task_group_decorator.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:12.878+0000] {processor.py:153} INFO - Started process (PID=113) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:11:12.878+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2024-01-06T09:11:12.879+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.879+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:11:12.893+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_task_group_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:11:12.946+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.946+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_task_group_decorator +[2024-01-06T09:11:12.950+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.950+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_task_group_decorator +[2024-01-06T09:11:12.952+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.952+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_task_group_decorator +[2024-01-06T09:11:12.953+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.952+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.958+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.958+0000] {dag.py:2711} INFO - Creating ORM DAG for example_task_group_decorator +[2024-01-06T09:11:12.964+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.964+0000] {dag.py:3441} INFO - Setting next_dagrun for example_task_group_decorator to 2024-01-05T09:11:12.964138+00:00, run_after=2024-01-06T09:11:12.964138+00:00 +[2024-01-06T09:11:12.971+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.096 seconds +[2024-01-06T09:11:43.151+0000] {processor.py:153} INFO - Started process (PID=202) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:11:43.152+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2024-01-06T09:11:43.152+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.152+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:11:43.167+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_task_group_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:11:43.181+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.181+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:43.192+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.192+0000] {dag.py:3441} INFO - Setting next_dagrun for example_task_group_decorator to 2024-01-05T09:11:43.192455+00:00, run_after=2024-01-06T09:11:43.192455+00:00 +[2024-01-06T09:11:43.201+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.052 seconds +[2024-01-06T09:12:13.889+0000] {processor.py:153} INFO - Started process (PID=274) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:12:13.890+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2024-01-06T09:12:13.890+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.890+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:12:13.904+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_task_group_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:12:13.916+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.916+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.927+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.927+0000] {dag.py:3441} INFO - Setting next_dagrun for example_task_group_decorator to 2024-01-05T09:12:13.926914+00:00, run_after=2024-01-06T09:12:13.926914+00:00 +[2024-01-06T09:12:13.934+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.047 seconds +[2024-01-06T09:12:44.651+0000] {processor.py:153} INFO - Started process (PID=363) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:12:44.652+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2024-01-06T09:12:44.652+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.652+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:12:44.666+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_task_group_decorator']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py +[2024-01-06T09:12:44.679+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.679+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.692+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.692+0000] {dag.py:3441} INFO - Setting next_dagrun for example_task_group_decorator to 2024-01-05T09:12:44.692178+00:00, run_after=2024-01-06T09:12:44.692178+00:00 +[2024-01-06T09:12:44.700+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.051 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_time_delta_sensor_async.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_time_delta_sensor_async.py.log new file mode 100644 index 0000000..e89d5ad --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_time_delta_sensor_async.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:12.781+0000] {processor.py:153} INFO - Started process (PID=111) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:11:12.781+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2024-01-06T09:11:12.782+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.782+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:11:12.789+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_time_delta_sensor_async']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:11:12.840+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.840+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_time_delta_sensor_async +[2024-01-06T09:11:12.844+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.844+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_time_delta_sensor_async +[2024-01-06T09:11:12.846+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.846+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_time_delta_sensor_async +[2024-01-06T09:11:12.846+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.846+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.853+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.853+0000] {dag.py:2711} INFO - Creating ORM DAG for example_time_delta_sensor_async +[2024-01-06T09:11:12.858+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.858+0000] {dag.py:3441} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2024-01-06T09:11:12.865+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.087 seconds +[2024-01-06T09:11:43.095+0000] {processor.py:153} INFO - Started process (PID=200) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:11:43.095+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2024-01-06T09:11:43.096+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.096+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:11:43.102+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_time_delta_sensor_async']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:11:43.116+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.116+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:43.128+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.128+0000] {dag.py:3441} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2024-01-06T09:11:43.137+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.045 seconds +[2024-01-06T09:12:13.839+0000] {processor.py:153} INFO - Started process (PID=272) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:12:13.839+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2024-01-06T09:12:13.840+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.840+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:12:13.846+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_time_delta_sensor_async']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:12:13.859+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.859+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.871+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.871+0000] {dag.py:3441} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2024-01-06T09:12:13.879+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.042 seconds +[2024-01-06T09:12:44.599+0000] {processor.py:153} INFO - Started process (PID=361) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:12:44.600+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2024-01-06T09:12:44.600+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.600+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:12:44.607+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_time_delta_sensor_async']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2024-01-06T09:12:44.619+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.619+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.631+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.631+0000] {dag.py:3441} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2024-01-06T09:12:44.640+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.042 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_trigger_controller_dag.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_trigger_controller_dag.py.log new file mode 100644 index 0000000..37ac40a --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_trigger_controller_dag.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:13.388+0000] {processor.py:153} INFO - Started process (PID=122) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:11:13.389+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2024-01-06T09:11:13.389+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.389+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:11:13.395+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_trigger_controller_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:11:13.446+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.446+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_trigger_controller_dag +[2024-01-06T09:11:13.450+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.450+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_trigger_controller_dag +[2024-01-06T09:11:13.452+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.452+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_trigger_controller_dag +[2024-01-06T09:11:13.453+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.453+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:13.459+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.459+0000] {dag.py:2711} INFO - Creating ORM DAG for example_trigger_controller_dag +[2024-01-06T09:11:13.464+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.464+0000] {dag.py:3441} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01T00:00:00+00:00, run_after=2021-01-01T00:00:00+00:00 +[2024-01-06T09:11:13.471+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.085 seconds +[2024-01-06T09:11:43.514+0000] {processor.py:153} INFO - Started process (PID=211) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:11:43.515+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2024-01-06T09:11:43.515+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.515+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:11:43.521+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_trigger_controller_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:11:43.534+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.534+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:43.546+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.546+0000] {dag.py:3441} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01T00:00:00+00:00, run_after=2021-01-01T00:00:00+00:00 +[2024-01-06T09:11:43.553+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.041 seconds +[2024-01-06T09:12:14.233+0000] {processor.py:153} INFO - Started process (PID=283) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:12:14.233+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2024-01-06T09:12:14.234+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.234+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:12:14.240+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_trigger_controller_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:12:14.252+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.252+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:14.263+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.263+0000] {dag.py:3441} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01T00:00:00+00:00, run_after=2021-01-01T00:00:00+00:00 +[2024-01-06T09:12:14.270+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.040 seconds +[2024-01-06T09:12:44.934+0000] {processor.py:153} INFO - Started process (PID=372) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:12:44.935+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2024-01-06T09:12:44.935+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.935+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:12:44.941+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_trigger_controller_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2024-01-06T09:12:44.954+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.953+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.965+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.965+0000] {dag.py:3441} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01T00:00:00+00:00, run_after=2021-01-01T00:00:00+00:00 +[2024-01-06T09:12:44.973+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.040 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_trigger_target_dag.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_trigger_target_dag.py.log new file mode 100644 index 0000000..886b71c --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_trigger_target_dag.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:11.683+0000] {processor.py:153} INFO - Started process (PID=97) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:11:11.684+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2024-01-06T09:11:11.685+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.685+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:11:11.702+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_trigger_target_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:11:11.770+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.770+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_trigger_target_dag +[2024-01-06T09:11:11.778+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.778+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_trigger_target_dag +[2024-01-06T09:11:11.783+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.783+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_trigger_target_dag +[2024-01-06T09:11:11.784+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.784+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:11.794+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.794+0000] {dag.py:2711} INFO - Creating ORM DAG for example_trigger_target_dag +[2024-01-06T09:11:11.804+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.804+0000] {dag.py:3441} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2024-01-06T09:11:11.820+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.140 seconds +[2024-01-06T09:11:42.321+0000] {processor.py:153} INFO - Started process (PID=186) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:11:42.322+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2024-01-06T09:11:42.323+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.323+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:11:42.337+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_trigger_target_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:11:42.355+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.355+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.371+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.370+0000] {dag.py:3441} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2024-01-06T09:11:42.385+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.066 seconds +[2024-01-06T09:12:13.360+0000] {processor.py:153} INFO - Started process (PID=258) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:12:13.360+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2024-01-06T09:12:13.360+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.360+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:12:13.372+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_trigger_target_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:12:13.385+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.385+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.396+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.396+0000] {dag.py:3441} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2024-01-06T09:12:13.405+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.047 seconds +[2024-01-06T09:12:44.118+0000] {processor.py:153} INFO - Started process (PID=347) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:12:44.119+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2024-01-06T09:12:44.119+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.119+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:12:44.131+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_trigger_target_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2024-01-06T09:12:44.144+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.144+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.156+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.156+0000] {dag.py:3441} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2024-01-06T09:12:44.165+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.049 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_xcom.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_xcom.py.log new file mode 100644 index 0000000..06596ca --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_xcom.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:10.739+0000] {processor.py:153} INFO - Started process (PID=86) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:11:10.740+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2024-01-06T09:11:10.740+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.740+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:11:10.755+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_xcom']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:11:10.808+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.808+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_xcom +[2024-01-06T09:11:10.812+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.812+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_xcom +[2024-01-06T09:11:10.815+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.815+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_xcom +[2024-01-06T09:11:10.815+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.815+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:10.821+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.821+0000] {dag.py:2711} INFO - Creating ORM DAG for example_xcom +[2024-01-06T09:11:10.827+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.827+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom to 2021-01-01T00:00:00+00:00, run_after=2021-01-01T00:00:00+00:00 +[2024-01-06T09:11:10.836+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py took 0.099 seconds +[2024-01-06T09:11:41.794+0000] {processor.py:153} INFO - Started process (PID=168) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:11:41.794+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2024-01-06T09:11:41.795+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.795+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:11:41.807+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_xcom']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:11:41.820+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.820+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:41.832+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.832+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom to 2021-01-01T00:00:00+00:00, run_after=2021-01-01T00:00:00+00:00 +[2024-01-06T09:11:41.840+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py took 0.049 seconds +[2024-01-06T09:12:11.982+0000] {processor.py:153} INFO - Started process (PID=247) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:12:11.983+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2024-01-06T09:12:11.983+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:11.983+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:12:11.994+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_xcom']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:12:12.007+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.007+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:12.017+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.017+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom to 2021-01-01T00:00:00+00:00, run_after=2021-01-01T00:00:00+00:00 +[2024-01-06T09:12:12.025+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py took 0.044 seconds +[2024-01-06T09:12:42.699+0000] {processor.py:153} INFO - Started process (PID=336) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:12:42.700+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2024-01-06T09:12:42.700+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.700+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:12:42.711+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_xcom']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py +[2024-01-06T09:12:42.724+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.724+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:42.735+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.735+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom to 2021-01-01T00:00:00+00:00, run_after=2021-01-01T00:00:00+00:00 +[2024-01-06T09:12:42.743+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcom.py took 0.045 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/example_xcomargs.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/example_xcomargs.py.log new file mode 100644 index 0000000..88c17f7 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/example_xcomargs.py.log @@ -0,0 +1,40 @@ +[2024-01-06T09:11:12.104+0000] {processor.py:153} INFO - Started process (PID=102) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:11:12.107+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2024-01-06T09:11:12.108+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.107+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:11:12.126+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_xcom_args', 'example_xcom_args_with_operators']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:11:12.199+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.199+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_xcom_args +[2024-01-06T09:11:12.203+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.203+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_xcom_args +[2024-01-06T09:11:12.207+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.207+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_xcom_args +[2024-01-06T09:11:12.213+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.213+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:example_xcom_args_with_operators +[2024-01-06T09:11:12.216+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.216+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:example_xcom_args_with_operators +[2024-01-06T09:11:12.219+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.219+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:example_xcom_args_with_operators +[2024-01-06T09:11:12.220+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.220+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:11:12.228+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.228+0000] {dag.py:2711} INFO - Creating ORM DAG for example_xcom_args_with_operators +[2024-01-06T09:11:12.228+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.228+0000] {dag.py:2711} INFO - Creating ORM DAG for example_xcom_args +[2024-01-06T09:11:12.237+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.236+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2024-01-06T09:11:12.237+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.237+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2024-01-06T09:11:12.252+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py took 0.151 seconds +[2024-01-06T09:11:42.621+0000] {processor.py:153} INFO - Started process (PID=191) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:11:42.622+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2024-01-06T09:11:42.623+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.623+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:11:42.639+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_xcom_args', 'example_xcom_args_with_operators']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:11:42.670+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.670+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:11:42.686+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.686+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2024-01-06T09:11:42.689+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.689+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2024-01-06T09:11:42.705+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py took 0.088 seconds +[2024-01-06T09:12:13.523+0000] {processor.py:153} INFO - Started process (PID=263) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:12:13.523+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2024-01-06T09:12:13.523+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.523+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:12:13.535+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_xcom_args_with_operators', 'example_xcom_args']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:12:13.548+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.548+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:12:13.558+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.558+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2024-01-06T09:12:13.560+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.560+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2024-01-06T09:12:13.567+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py took 0.046 seconds +[2024-01-06T09:12:44.293+0000] {processor.py:153} INFO - Started process (PID=352) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:12:44.293+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2024-01-06T09:12:44.294+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.294+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:12:44.306+0000] {processor.py:753} INFO - DAG(s) dict_keys(['example_xcom_args_with_operators', 'example_xcom_args']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py +[2024-01-06T09:12:44.320+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.320+0000] {dag.py:2690} INFO - Sync 2 DAGs +[2024-01-06T09:12:44.333+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.332+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2024-01-06T09:12:44.334+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.334+0000] {dag.py:3441} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2024-01-06T09:12:44.342+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/example_xcomargs.py took 0.051 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/plugins/workday.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/plugins/workday.py.log new file mode 100644 index 0000000..fbcb93f --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/plugins/workday.py.log @@ -0,0 +1,20 @@ +[2024-01-06T09:11:13.483+0000] {processor.py:153} INFO - Started process (PID=123) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:11:13.484+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2024-01-06T09:11:13.484+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.484+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:11:13.486+0000] {processor.py:755} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:11:13.493+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py took 0.012 seconds +[2024-01-06T09:11:43.516+0000] {processor.py:153} INFO - Started process (PID=212) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:11:43.516+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2024-01-06T09:11:43.517+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.517+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:11:43.518+0000] {processor.py:755} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:11:43.525+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py took 0.011 seconds +[2024-01-06T09:12:14.281+0000] {processor.py:153} INFO - Started process (PID=284) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:12:14.281+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2024-01-06T09:12:14.282+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.282+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:12:14.283+0000] {processor.py:755} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:12:14.290+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py took 0.011 seconds +[2024-01-06T09:12:44.983+0000] {processor.py:153} INFO - Started process (PID=373) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:12:44.984+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2024-01-06T09:12:44.984+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.984+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:12:44.985+0000] {processor.py:755} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py +[2024-01-06T09:12:44.992+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/plugins/workday.py took 0.010 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/subdags/subdag.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/subdags/subdag.py.log new file mode 100644 index 0000000..1440cec --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/subdags/subdag.py.log @@ -0,0 +1,20 @@ +[2024-01-06T09:11:13.485+0000] {processor.py:153} INFO - Started process (PID=124) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:11:13.485+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2024-01-06T09:11:13.486+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:13.486+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:11:13.487+0000] {processor.py:755} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:11:13.494+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py took 0.011 seconds +[2024-01-06T09:11:43.535+0000] {processor.py:153} INFO - Started process (PID=213) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:11:43.536+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2024-01-06T09:11:43.536+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.536+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:11:43.538+0000] {processor.py:755} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:11:43.545+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py took 0.011 seconds +[2024-01-06T09:12:14.282+0000] {processor.py:153} INFO - Started process (PID=285) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:12:14.283+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2024-01-06T09:12:14.283+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:14.283+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:12:14.285+0000] {processor.py:755} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:12:14.291+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py took 0.011 seconds +[2024-01-06T09:12:45.002+0000] {processor.py:153} INFO - Started process (PID=374) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:12:45.002+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2024-01-06T09:12:45.002+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:45.002+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:12:45.004+0000] {processor.py:755} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py +[2024-01-06T09:12:45.011+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/subdags/subdag.py took 0.011 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial.py.log new file mode 100644 index 0000000..045fccc --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:10.849+0000] {processor.py:153} INFO - Started process (PID=87) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:11:10.850+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2024-01-06T09:11:10.850+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.850+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:11:10.858+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:11:10.918+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.918+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:tutorial +[2024-01-06T09:11:10.922+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.922+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:tutorial +[2024-01-06T09:11:10.926+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.925+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:tutorial +[2024-01-06T09:11:10.926+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.926+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:10.934+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.934+0000] {dag.py:2711} INFO - Creating ORM DAG for tutorial +[2024-01-06T09:11:10.940+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:10.940+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial to 2024-01-05T09:11:10.940414+00:00, run_after=2024-01-06T09:11:10.940414+00:00 +[2024-01-06T09:11:10.950+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py took 0.103 seconds +[2024-01-06T09:11:41.795+0000] {processor.py:153} INFO - Started process (PID=169) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:11:41.796+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2024-01-06T09:11:41.796+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.796+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:11:41.803+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:11:41.818+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.818+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:41.830+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:41.830+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial to 2024-01-05T09:11:41.830613+00:00, run_after=2024-01-06T09:11:41.830613+00:00 +[2024-01-06T09:11:41.839+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py took 0.046 seconds +[2024-01-06T09:12:12.035+0000] {processor.py:153} INFO - Started process (PID=248) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:12:12.036+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2024-01-06T09:12:12.036+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.036+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:12:12.043+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:12:12.056+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.056+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:12.067+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:12.067+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial to 2024-01-05T09:12:12.066985+00:00, run_after=2024-01-06T09:12:12.066985+00:00 +[2024-01-06T09:12:12.074+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py took 0.041 seconds +[2024-01-06T09:12:42.753+0000] {processor.py:153} INFO - Started process (PID=337) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:12:42.753+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2024-01-06T09:12:42.754+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.754+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:12:42.762+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py +[2024-01-06T09:12:42.774+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.774+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:42.785+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:42.785+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial to 2024-01-05T09:12:42.785308+00:00, run_after=2024-01-06T09:12:42.785308+00:00 +[2024-01-06T09:12:42.794+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial.py took 0.043 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_dag.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_dag.py.log new file mode 100644 index 0000000..26a744b --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_dag.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:12.560+0000] {processor.py:153} INFO - Started process (PID=108) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:11:12.561+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2024-01-06T09:11:12.562+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.562+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:11:12.572+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:11:12.632+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.632+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:tutorial_dag +[2024-01-06T09:11:12.640+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.640+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:tutorial_dag +[2024-01-06T09:11:12.644+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.644+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:tutorial_dag +[2024-01-06T09:11:12.644+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.644+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.651+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.651+0000] {dag.py:2711} INFO - Creating ORM DAG for tutorial_dag +[2024-01-06T09:11:12.656+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.656+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2024-01-06T09:11:12.664+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py took 0.107 seconds +[2024-01-06T09:11:42.927+0000] {processor.py:153} INFO - Started process (PID=197) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:11:42.928+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2024-01-06T09:11:42.929+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.929+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:11:42.951+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:11:42.979+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.979+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:43.001+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.001+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2024-01-06T09:11:43.024+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py took 0.099 seconds +[2024-01-06T09:12:13.739+0000] {processor.py:153} INFO - Started process (PID=269) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:12:13.740+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2024-01-06T09:12:13.740+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.740+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:12:13.747+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:12:13.760+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.760+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.771+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.771+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2024-01-06T09:12:13.779+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py took 0.042 seconds +[2024-01-06T09:12:44.528+0000] {processor.py:153} INFO - Started process (PID=358) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:12:44.528+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2024-01-06T09:12:44.529+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.529+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:12:44.536+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_dag']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py +[2024-01-06T09:12:44.548+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.548+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.560+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.560+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2024-01-06T09:12:44.569+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_dag.py took 0.042 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_taskflow_api.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_taskflow_api.py.log new file mode 100644 index 0000000..0c11a23 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_taskflow_api.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:11.662+0000] {processor.py:153} INFO - Started process (PID=96) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:11:11.664+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2024-01-06T09:11:11.665+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.665+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:11:11.680+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_taskflow_api']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:11:11.754+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.754+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:tutorial_taskflow_api +[2024-01-06T09:11:11.758+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.758+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:tutorial_taskflow_api +[2024-01-06T09:11:11.762+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.762+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:tutorial_taskflow_api +[2024-01-06T09:11:11.763+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.763+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:11.771+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.771+0000] {dag.py:2711} INFO - Creating ORM DAG for tutorial_taskflow_api +[2024-01-06T09:11:11.779+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:11.779+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2024-01-06T09:11:11.795+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.139 seconds +[2024-01-06T09:11:42.320+0000] {processor.py:153} INFO - Started process (PID=185) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:11:42.321+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2024-01-06T09:11:42.322+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.322+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:11:42.335+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_taskflow_api']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:11:42.355+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.355+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:42.370+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:42.370+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2024-01-06T09:11:42.386+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.068 seconds +[2024-01-06T09:12:13.293+0000] {processor.py:153} INFO - Started process (PID=257) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:12:13.294+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2024-01-06T09:12:13.294+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.294+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:12:13.313+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_taskflow_api']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:12:13.328+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.328+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.341+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.341+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2024-01-06T09:12:13.349+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.061 seconds +[2024-01-06T09:12:44.046+0000] {processor.py:153} INFO - Started process (PID=346) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:12:44.047+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2024-01-06T09:12:44.048+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.048+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:12:44.066+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_taskflow_api']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2024-01-06T09:12:44.083+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.083+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.098+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.098+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2024-01-06T09:12:44.107+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.063 seconds diff --git a/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_taskflow_api_virtualenv.py.log b/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_taskflow_api_virtualenv.py.log new file mode 100644 index 0000000..0c9e507 --- /dev/null +++ b/logs/scheduler/2024-01-06/native_dags/example_dags/tutorial_taskflow_api_virtualenv.py.log @@ -0,0 +1,32 @@ +[2024-01-06T09:11:12.676+0000] {processor.py:153} INFO - Started process (PID=109) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:11:12.676+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2024-01-06T09:11:12.677+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.677+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:11:12.688+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_taskflow_api_virtualenv']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:11:12.742+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.742+0000] {manager.py:504} INFO - Created Permission View: can edit on DAG:tutorial_taskflow_api_virtualenv +[2024-01-06T09:11:12.746+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.746+0000] {manager.py:504} INFO - Created Permission View: can read on DAG:tutorial_taskflow_api_virtualenv +[2024-01-06T09:11:12.749+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.749+0000] {manager.py:504} INFO - Created Permission View: can delete on DAG:tutorial_taskflow_api_virtualenv +[2024-01-06T09:11:12.749+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.749+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:12.756+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.756+0000] {dag.py:2711} INFO - Creating ORM DAG for tutorial_taskflow_api_virtualenv +[2024-01-06T09:11:12.761+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:12.761+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2024-01-06T09:11:12.768+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.094 seconds +[2024-01-06T09:11:43.032+0000] {processor.py:153} INFO - Started process (PID=198) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:11:43.033+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2024-01-06T09:11:43.033+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.033+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:11:43.044+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_taskflow_api_virtualenv']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:11:43.058+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.058+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:11:43.071+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:11:43.071+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2024-01-06T09:11:43.081+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.051 seconds +[2024-01-06T09:12:13.741+0000] {processor.py:153} INFO - Started process (PID=270) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:12:13.741+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2024-01-06T09:12:13.742+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.742+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:12:13.752+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_taskflow_api_virtualenv']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:12:13.764+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.764+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:13.774+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:13.774+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2024-01-06T09:12:13.782+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.043 seconds +[2024-01-06T09:12:44.544+0000] {processor.py:153} INFO - Started process (PID=359) to work on /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:12:44.545+0000] {processor.py:743} INFO - Processing file /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2024-01-06T09:12:44.545+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.545+0000] {dagbag.py:538} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:12:44.556+0000] {processor.py:753} INFO - DAG(s) dict_keys(['tutorial_taskflow_api_virtualenv']) retrieved from /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2024-01-06T09:12:44.568+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.568+0000] {dag.py:2690} INFO - Sync 1 DAGs +[2024-01-06T09:12:44.580+0000] {logging_mixin.py:137} INFO - [2024-01-06T09:12:44.580+0000] {dag.py:3441} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2024-01-06T09:12:44.588+0000] {processor.py:175} INFO - Processing /home/airflow/.local/lib/python3.7/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.046 seconds diff --git a/logs/scheduler/latest b/logs/scheduler/latest new file mode 120000 index 0000000..c8596e0 --- /dev/null +++ b/logs/scheduler/latest @@ -0,0 +1 @@ +/opt/airflow/logs/scheduler/2024-01-06 \ No newline at end of file