From 9fc0e08c0b05e3bf265d73c3d2f45fd90ae33073 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Sun, 26 Jan 2025 16:41:09 -0300 Subject: [PATCH 01/23] Add gitignore file --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..7718e15e3a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Virtual environments +venvs/ \ No newline at end of file From da1a0453d0c66d84a66b3e7c3ccf181ffc3f5103 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Sun, 26 Jan 2025 20:34:58 -0300 Subject: [PATCH 02/23] Add pip file in gitignore --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7718e15e3a..63796c6c86 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ # Virtual environments -venvs/ \ No newline at end of file +venvs/ + +# Pip package +get-pip.py From c02c4f5b8012ff3aa15b4fde682322a660fce5e0 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Sun, 26 Jan 2025 23:38:04 -0300 Subject: [PATCH 03/23] Add airflow in docker compose file --- docker-compose.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 111b1acb40..ed21ed22af 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,4 +11,18 @@ services: - ./dbdata:/var/lib/postgresql/data - ./data/northwind.sql:/docker-entrypoint-initdb.d/northwind.sql ports: - - 5432:5432 \ No newline at end of file + - 5432:5432 + + airflow: + image: apache/airflow:2.10.4-pythonX.Y + environment: + AIRFLOW__DATABASE__SQL_ALCHEMY_CONN: postgresql+psycopg2://northwind_user:thewindisblowing@db/northwind + AIRFLOW__CORE__EXECUTOR: LocalExecutor + AIRFLOW__CORE__LOAD_EXAMPLES: 'False' + ports: + - "8080:8080" + volumes: + - ./dags:/opt/airflow/dags + - ./data:/opt/airflow/data + depends_on: + - db \ No newline at end of file From e4a6832fd09a81ed44730fb2eaa09872d9c91afa Mon Sep 17 00:00:00 2001 From: priscaruso Date: Tue, 28 Jan 2025 12:01:22 -0300 Subject: [PATCH 04/23] fix: python version in airflow --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ed21ed22af..36bf333730 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,8 +13,8 @@ services: ports: - 5432:5432 - airflow: - image: apache/airflow:2.10.4-pythonX.Y + airflow: + image: apache/airflow:2.10.4-python3.10 environment: AIRFLOW__DATABASE__SQL_ALCHEMY_CONN: postgresql+psycopg2://northwind_user:thewindisblowing@db/northwind AIRFLOW__CORE__EXECUTOR: LocalExecutor From 77cd1b8e4fd1fcc79e50f04ac3767f3c155379a5 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Tue, 28 Jan 2025 15:03:48 -0300 Subject: [PATCH 05/23] add: meltano dag file --- dags/meltano-dag.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 dags/meltano-dag.py diff --git a/dags/meltano-dag.py b/dags/meltano-dag.py new file mode 100644 index 0000000000..22af8db468 --- /dev/null +++ b/dags/meltano-dag.py @@ -0,0 +1,27 @@ +from airflow import DAG +from airflow.operators.bash_operator import BashOperator +from datetime import datetime, timedelta + +default_args = { + 'owner': 'airflow', + 'depends_on_past': False, + 'retries': 1, + 'retry_delay': timedelta(minutes=5), +} + +dag = DAG( + 'meltano-daily-extraction', + default_args=default_args, + description='A simple DAG to run meltano ETL daily', + schedule_interval='@daily', + start_date = datetime(2025, 1, 1), + catchup=False, +) + +run_meltano = BashOperator( + task_id='run_meltano_etl', + bash_command='meltano etl tap-postgres target-csv && meltano etl tap-csv target-csv', + dag=dag, +) + +run_meltano \ No newline at end of file From 5c55a9bd6bc2c12682fa912a0dfca48df5fac477 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Tue, 28 Jan 2025 15:30:47 -0300 Subject: [PATCH 06/23] add: meltano project files --- meltano-project/.gitignore | 3 +++ meltano-project/README.md | 0 meltano-project/analyze/.gitkeep | 0 meltano-project/extract/.gitkeep | 0 meltano-project/load/.gitkeep | 0 meltano-project/meltano.yml | 7 +++++++ meltano-project/notebook/.gitkeep | 0 meltano-project/orchestrate/.gitkeep | 0 meltano-project/output/.gitignore | 2 ++ meltano-project/requirements.txt | 0 meltano-project/transform/.gitkeep | 0 11 files changed, 12 insertions(+) create mode 100644 meltano-project/.gitignore create mode 100644 meltano-project/README.md create mode 100644 meltano-project/analyze/.gitkeep create mode 100644 meltano-project/extract/.gitkeep create mode 100644 meltano-project/load/.gitkeep create mode 100644 meltano-project/meltano.yml create mode 100644 meltano-project/notebook/.gitkeep create mode 100644 meltano-project/orchestrate/.gitkeep create mode 100644 meltano-project/output/.gitignore create mode 100644 meltano-project/requirements.txt create mode 100644 meltano-project/transform/.gitkeep diff --git a/meltano-project/.gitignore b/meltano-project/.gitignore new file mode 100644 index 0000000000..15e24c3f86 --- /dev/null +++ b/meltano-project/.gitignore @@ -0,0 +1,3 @@ +/venv +/.meltano +.env diff --git a/meltano-project/README.md b/meltano-project/README.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/meltano-project/analyze/.gitkeep b/meltano-project/analyze/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/meltano-project/extract/.gitkeep b/meltano-project/extract/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/meltano-project/load/.gitkeep b/meltano-project/load/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/meltano-project/meltano.yml b/meltano-project/meltano.yml new file mode 100644 index 0000000000..a47dde838a --- /dev/null +++ b/meltano-project/meltano.yml @@ -0,0 +1,7 @@ +version: 1 +default_environment: dev +project_id: 7e5ff0d0-2ab2-453f-b7df-460f25e60aaf +environments: +- name: dev +- name: staging +- name: prod diff --git a/meltano-project/notebook/.gitkeep b/meltano-project/notebook/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/meltano-project/orchestrate/.gitkeep b/meltano-project/orchestrate/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/meltano-project/output/.gitignore b/meltano-project/output/.gitignore new file mode 100644 index 0000000000..d6b7ef32c8 --- /dev/null +++ b/meltano-project/output/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/meltano-project/requirements.txt b/meltano-project/requirements.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/meltano-project/transform/.gitkeep b/meltano-project/transform/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 From 820d837790c20417a20af99519df31b11be00539 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Tue, 28 Jan 2025 15:39:19 -0300 Subject: [PATCH 07/23] add: postgres extractor to meltano --- .../extractors/tap-postgres--meltanolabs.lock | 290 ++++++++++++++++++ 1 file changed, 290 insertions(+) create mode 100644 meltano-project/plugins/extractors/tap-postgres--meltanolabs.lock diff --git a/meltano-project/plugins/extractors/tap-postgres--meltanolabs.lock b/meltano-project/plugins/extractors/tap-postgres--meltanolabs.lock new file mode 100644 index 0000000000..9abe58c774 --- /dev/null +++ b/meltano-project/plugins/extractors/tap-postgres--meltanolabs.lock @@ -0,0 +1,290 @@ +{ + "plugin_type": "extractors", + "name": "tap-postgres", + "namespace": "tap_postgres", + "variant": "meltanolabs", + "label": "Postgres", + "docs": "https://hub.meltano.com/extractors/tap-postgres--meltanolabs", + "repo": "https://github.com/MeltanoLabs/tap-postgres", + "pip_url": "git+https://github.com/MeltanoLabs/tap-postgres.git", + "description": "PostgreSQL database extractor", + "logo_url": "https://hub.meltano.com/assets/logos/extractors/postgres.png", + "capabilities": [ + "about", + "batch", + "catalog", + "discover", + "schema-flattening", + "state", + "stream-maps" + ], + "settings_group_validation": [ + [ + "sqlalchemy_url" + ] + ], + "settings": [ + { + "name": "batch_config.encoding.compression", + "kind": "options", + "label": "Batch Compression Format", + "description": "Compression format to use for batch files.", + "options": [ + { + "label": "GZIP", + "value": "gzip" + }, + { + "label": "None", + "value": "none" + } + ] + }, + { + "name": "batch_config.encoding.format", + "kind": "options", + "label": "Batch Encoding Format", + "description": "Format to use for batch files.", + "options": [ + { + "label": "JSONL", + "value": "jsonl" + }, + { + "label": "Parquet", + "value": "parquet" + } + ] + }, + { + "name": "batch_config.storage.prefix", + "kind": "string", + "label": "Batch Storage Prefix", + "description": "Prefix to use when writing batch files." + }, + { + "name": "batch_config.storage.root", + "kind": "string", + "label": "Batch Storage Root", + "description": "Root path to use when writing batch files." + }, + { + "name": "database", + "kind": "string", + "label": "Database", + "description": "Database name. Note if sqlalchemy_url is set this will be ignored." + }, + { + "name": "dates_as_string", + "kind": "boolean", + "value": false, + "label": "Dates As String", + "description": "Defaults to false, if true, date, and timestamp fields will be Strings. If you see ValueError: Year is out of range, try setting this to True." + }, + { + "name": "default_replication_method", + "kind": "options", + "value": "FULL_TABLE", + "label": "Default Replication Method", + "description": "Replication method to use if there is not a catalog entry to override this choice. One of `FULL_TABLE`, `INCREMENTAL`, or `LOG_BASED`.", + "options": [ + { + "label": "Full Table", + "value": "FULL_TABLE" + }, + { + "label": "Incremental", + "value": "INCREMENTAL" + }, + { + "label": "Log Based", + "value": "LOG_BASED" + } + ] + }, + { + "name": "faker_config.locale", + "kind": "array", + "label": "Faker Locale", + "description": "One or more LCID locale strings to produce localized output for: https://faker.readthedocs.io/en/master/#localization" + }, + { + "name": "faker_config.seed", + "kind": "string", + "label": "Faker Seed", + "description": "Value to seed the Faker generator for deterministic output: https://faker.readthedocs.io/en/master/#seeding-the-generator" + }, + { + "name": "filter_schemas", + "kind": "array", + "label": "Filter Schemas", + "description": "If an array of schema names is provided, the tap will only process the specified Postgres schemas and ignore others. If left blank, the tap automatically determines ALL available Postgres schemas." + }, + { + "name": "flattening_enabled", + "kind": "boolean", + "label": "Enable Schema Flattening", + "description": "'True' to enable schema flattening and automatically expand nested properties." + }, + { + "name": "flattening_max_depth", + "kind": "integer", + "label": "Max Flattening Depth", + "description": "The max depth to flatten schemas." + }, + { + "name": "host", + "kind": "string", + "label": "Host", + "description": "Hostname for postgres instance. Note if sqlalchemy_url is set this will be ignored." + }, + { + "name": "json_as_object", + "kind": "boolean", + "value": false, + "label": "Json As Object", + "description": "Defaults to false, if true, json and jsonb fields will be Objects." + }, + { + "name": "max_record_count", + "kind": "integer", + "label": "Max Record Count", + "description": "Optional. The maximum number of records to return in a single stream." + }, + { + "name": "password", + "kind": "string", + "label": "Password", + "description": "Password used to authenticate. Note if sqlalchemy_url is set this will be ignored.", + "sensitive": true + }, + { + "name": "port", + "kind": "integer", + "value": 5432, + "label": "Port", + "description": "The port on which postgres is awaiting connection. Note if sqlalchemy_url is set this will be ignored." + }, + { + "name": "replication_slot_name", + "kind": "string", + "value": "tappostgres", + "label": "Replication Slot Name", + "description": "Name of the replication slot to use for logical replication. Must be unique for parallel extractions. Only applicable when replication_method is LOG_BASED. - Contain only letters, numbers, and underscores. - Be less than or equal to 63 characters. - Not start with 'pg_'." + }, + { + "name": "sqlalchemy_url", + "kind": "string", + "label": "SQLAlchemy URL", + "description": "Example postgresql://[username]:[password]@localhost:5432/[db_name]" + }, + { + "name": "ssh_tunnel.enable", + "kind": "boolean", + "value": false, + "label": "SSH Tunnel Enable", + "description": "Enable an ssh tunnel (also known as bastion server), see the other ssh_tunnel.* properties for more details" + }, + { + "name": "ssh_tunnel.host", + "kind": "string", + "label": "SSH Tunnel Host", + "description": "Host of the bastion server, this is the host we'll connect to via ssh" + }, + { + "name": "ssh_tunnel.port", + "kind": "integer", + "value": 22, + "label": "SSH Tunnel Port", + "description": "Port to connect to bastion server" + }, + { + "name": "ssh_tunnel.private_key", + "kind": "string", + "label": "SSH Tunnel Private Key", + "description": "Private Key for authentication to the bastion server", + "sensitive": true + }, + { + "name": "ssh_tunnel.private_key_password", + "kind": "string", + "label": "SSH Tunnel Private Key Password", + "description": "Private Key Password, leave None if no password is set", + "sensitive": true + }, + { + "name": "ssh_tunnel.username", + "kind": "string", + "label": "SSH Tunnel Username", + "description": "Username to connect to bastion server" + }, + { + "name": "ssl_certificate_authority", + "kind": "string", + "value": "~/.postgresql/root.crl", + "label": "SSL Certificate Authority", + "description": "The certificate authority that should be used to verify the server's identity. Can be provided either as the certificate itself (in .env) or as a filepath to the certificate. Note if sqlalchemy_url is set this will be ignored." + }, + { + "name": "ssl_client_certificate", + "kind": "string", + "value": "~/.postgresql/postgresql.crt", + "label": "SSL Client Certificate", + "description": "The certificate that should be used to verify your identity to the server. Can be provided either as the certificate itself (in .env) or as a filepath to the certificate. Note if sqlalchemy_url is set this will be ignored." + }, + { + "name": "ssl_client_certificate_enable", + "kind": "boolean", + "value": false, + "label": "SSL Client Certificate Enable", + "description": "Whether or not to provide client-side certificates as a method of authentication to the server. Use ssl_client_certificate and ssl_client_private_key for further customization. To use SSL to verify the server's identity, use ssl_enable instead. Note if sqlalchemy_url is set this will be ignored." + }, + { + "name": "ssl_client_private_key", + "kind": "string", + "value": "~/.postgresql/postgresql.key", + "label": "SSL Client Private Key", + "description": "The private key for the certificate you provided. Can be provided either as the certificate itself (in .env) or as a filepath to the certificate. Note if sqlalchemy_url is set this will be ignored.", + "sensitive": true + }, + { + "name": "ssl_enable", + "kind": "boolean", + "value": false, + "label": "SSL Enable", + "description": "Whether or not to use ssl to verify the server's identity. Use ssl_certificate_authority and ssl_mode for further customization. To use a client certificate to authenticate yourself to the server, use ssl_client_certificate_enable instead. Note if sqlalchemy_url is set this will be ignored." + }, + { + "name": "ssl_mode", + "kind": "string", + "value": "verify-full", + "label": "SSL Mode", + "description": "SSL Protection method, see [postgres documentation](https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-PROTECTION) for more information. Must be one of disable, allow, prefer, require, verify-ca, or verify-full. Note if sqlalchemy_url is set this will be ignored." + }, + { + "name": "ssl_storage_directory", + "kind": "string", + "value": ".secrets", + "label": "SSL Storage Directory", + "description": "The folder in which to store SSL certificates provided as raw values. When a certificate/key is provided as a raw value instead of as a filepath, it must be written to a file before it can be used. This configuration option determines where that file is created." + }, + { + "name": "stream_map_config", + "kind": "object", + "label": "User Stream Map Configuration", + "description": "User-defined config values to be used within map expressions." + }, + { + "name": "stream_maps", + "kind": "object", + "label": "Stream Maps", + "description": "Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html)." + }, + { + "name": "user", + "kind": "string", + "label": "User", + "description": "User name used to authenticate. Note if sqlalchemy_url is set this will be ignored." + } + ] +} From 8df32c71badbd35384c4edbb65acd4da547260d7 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Tue, 28 Jan 2025 15:42:31 -0300 Subject: [PATCH 08/23] add: csv extractor to meltano --- .../extractors/tap-csv--meltanolabs.lock | 83 +++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 meltano-project/plugins/extractors/tap-csv--meltanolabs.lock diff --git a/meltano-project/plugins/extractors/tap-csv--meltanolabs.lock b/meltano-project/plugins/extractors/tap-csv--meltanolabs.lock new file mode 100644 index 0000000000..76cbd675cb --- /dev/null +++ b/meltano-project/plugins/extractors/tap-csv--meltanolabs.lock @@ -0,0 +1,83 @@ +{ + "plugin_type": "extractors", + "name": "tap-csv", + "namespace": "tap_csv", + "variant": "meltanolabs", + "label": "Comma Separated Values (CSV)", + "docs": "https://hub.meltano.com/extractors/tap-csv--meltanolabs", + "repo": "https://github.com/MeltanoLabs/tap-csv", + "pip_url": "git+https://github.com/MeltanoLabs/tap-csv.git", + "description": "Generic data extractor of CSV (comma separated value) files", + "logo_url": "https://hub.meltano.com/assets/logos/extractors/csv.png", + "capabilities": [ + "catalog", + "discover" + ], + "settings_group_validation": [ + [ + "files" + ], + [ + "csv_files_definition" + ] + ], + "settings": [ + { + "name": "add_metadata_columns", + "kind": "boolean", + "value": false, + "label": "Add Metadata Columns", + "description": "When True, add the metadata columns (`_sdc_source_file`, `_sdc_source_file_mtime`, `_sdc_source_lineno`) to output." + }, + { + "name": "csv_files_definition", + "kind": "string", + "label": "Csv Files Definition", + "documentation": "https://github.com/MeltanoLabs/tap-csv#settings", + "description": "Project-relative path to JSON file holding array of objects as described under [Files](#files) - with `entity`, `path`, `keys`, and other optional keys:\n\n```json\n[\n {\n \"entity\": \"\",\n \"path\": \"\",\n \"keys\": [\"\"],\n },\n // ...\n]\n```\n", + "placeholder": "Ex. files-def.json" + }, + { + "name": "faker_config.locale", + "kind": "array", + "label": "Faker Locale", + "description": "One or more LCID locale strings to produce localized output for: https://faker.readthedocs.io/en/master/#localization" + }, + { + "name": "faker_config.seed", + "kind": "string", + "label": "Faker Seed", + "description": "Value to seed the Faker generator for deterministic output: https://faker.readthedocs.io/en/master/#seeding-the-generator" + }, + { + "name": "files", + "kind": "array", + "label": "Files", + "description": "Array of objects with `entity`, `path`, `keys`, and `encoding` [Optional] keys:\n\n* `entity`: The entity name, used as the table name for the data loaded from that CSV.\n* `path`: Local path (relative to the project's root) to the file to be ingested. Note that this may be a directory, in which case all files in that directory and any of its subdirectories will be recursively processed\n* `keys`: The names of the columns that constitute the unique keys for that entity.\n* `encoding`: [Optional] The file encoding to use when reading the file (i.e. \"latin1\", \"UTF-8\"). Use this setting when you get a UnicodeDecodeError error.\n Each input CSV file must be a traditionally-delimited CSV (comma separated columns, newlines indicate new rows, double quoted values).\n\nThe following entries are passed through in an internal CSV dialect that then is used to configure the CSV reader:\n\n* `delimiter`: A one-character string used to separate fields. It defaults to ','.\n* `doublequote`: Controls how instances of quotechar appearing inside a field should themselves be quoted. When True, the character is doubled. When False, the escapechar is used as a prefix to the quotechar. It defaults to True.\n* `escapechar`: A one-character string used by the reader, where the escapechar removes any special meaning from the following character. It defaults to None, which disables escaping.\n* `quotechar`: A one-character string used to quote fields containing special characters, such as the delimiter or quotechar, or which contain new-line characters. It defaults to '\"'.\n* `skipinitialspace`: When True, spaces immediately following the delimiter are ignored. The default is False.\n* `strict`: When True, raise exception Error on bad CSV input. The default is False.\n\nThe first row is the header defining the attribute name for that column and will result to a column of the same name in the database. It must have a valid format with no spaces or special characters (like for example `!` or `@`, etc).\n" + }, + { + "name": "flattening_enabled", + "kind": "boolean", + "label": "Enable Schema Flattening", + "description": "'True' to enable schema flattening and automatically expand nested properties." + }, + { + "name": "flattening_max_depth", + "kind": "integer", + "label": "Max Flattening Depth", + "description": "The max depth to flatten schemas." + }, + { + "name": "stream_map_config", + "kind": "object", + "label": "User Stream Map Configuration", + "description": "User-defined config values to be used within map expressions." + }, + { + "name": "stream_maps", + "kind": "object", + "label": "Stream Maps", + "description": "Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html)." + } + ] +} From 447e829322c7f0eb4db8603b0e18b5f60ee35acd Mon Sep 17 00:00:00 2001 From: priscaruso Date: Tue, 28 Jan 2025 15:48:27 -0300 Subject: [PATCH 09/23] add: csv loader to meltano --- .../loaders/target-csv--meltanolabs.lock | 164 ++++++++++++++++++ 1 file changed, 164 insertions(+) create mode 100644 meltano-project/plugins/loaders/target-csv--meltanolabs.lock diff --git a/meltano-project/plugins/loaders/target-csv--meltanolabs.lock b/meltano-project/plugins/loaders/target-csv--meltanolabs.lock new file mode 100644 index 0000000000..9fa4b6cea8 --- /dev/null +++ b/meltano-project/plugins/loaders/target-csv--meltanolabs.lock @@ -0,0 +1,164 @@ +{ + "plugin_type": "loaders", + "name": "target-csv", + "namespace": "target_csv", + "variant": "meltanolabs", + "label": "Comma Separated Values (CSV)", + "docs": "https://hub.meltano.com/loaders/target-csv--meltanolabs", + "repo": "https://github.com/MeltanoLabs/target-csv", + "pip_url": "git+https://github.com/MeltanoLabs/target-csv.git", + "executable": "target-csv", + "description": "CSV loader", + "logo_url": "https://hub.meltano.com/assets/logos/loaders/csv.png", + "capabilities": [ + "about", + "schema-flattening", + "stream-maps" + ], + "settings_group_validation": [ + [] + ], + "settings": [ + { + "name": "add_record_metadata", + "kind": "boolean", + "label": "Add Record Metadata", + "description": "Whether to add metadata fields to records." + }, + { + "name": "batch_size_rows", + "kind": "integer", + "label": "Batch Size Rows", + "description": "Maximum number of rows in each batch." + }, + { + "name": "datestamp_format", + "kind": "string", + "value": "%Y-%m-%d", + "label": "Datestamp Format", + "description": "A python format string to use when outputting the `{datestamp}` string. For reference, see: https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes" + }, + { + "name": "destination_path", + "kind": "string", + "label": "Destination Path", + "description": "Filesystem path where to store output files. Alias for `output_path` to be compatible with the `hotgluexyz` variant." + }, + { + "name": "escape_character", + "kind": "string", + "label": "Escape Character", + "description": "The character to use for escaping special characters." + }, + { + "name": "faker_config.locale", + "kind": "array", + "label": "Faker Locale", + "description": "One or more LCID locale strings to produce localized output for: https://faker.readthedocs.io/en/master/#localization" + }, + { + "name": "faker_config.seed", + "kind": "string", + "label": "Faker Seed", + "description": "Value to seed the Faker generator for deterministic output: https://faker.readthedocs.io/en/master/#seeding-the-generator" + }, + { + "name": "file_naming_scheme", + "kind": "string", + "value": "{stream_name}.csv", + "label": "File Naming Scheme", + "description": "The scheme with which output files will be named. Naming scheme may leverage any of the following substitutions: \n\n- `{stream_name}`- `{datestamp}`- `{timestamp}`" + }, + { + "name": "flattening_enabled", + "kind": "boolean", + "label": "Enable Schema Flattening", + "description": "'True' to enable schema flattening and automatically expand nested properties." + }, + { + "name": "flattening_max_depth", + "kind": "integer", + "label": "Max Flattening Depth", + "description": "The max depth to flatten schemas." + }, + { + "name": "load_method", + "kind": "options", + "value": "append-only", + "label": "Load Method", + "description": "The method to use when loading data into the destination. `append-only` will always write all input records whether that records already exists or not. `upsert` will update existing records and insert new records. `overwrite` will delete all existing records and insert all input records.", + "options": [ + { + "label": "Append Only", + "value": "append-only" + }, + { + "label": "Upsert", + "value": "upsert" + }, + { + "label": "Overwrite", + "value": "overwrite" + } + ] + }, + { + "name": "output_path", + "kind": "string", + "label": "Output Path", + "description": "Filesystem path where to store output files. By default, the current working directory will be used." + }, + { + "name": "output_path_prefix", + "kind": "string", + "label": "Output Path Prefix", + "description": "DEPRECATED. Filesystem path where to store output files." + }, + { + "name": "overwrite_behavior", + "kind": "string", + "value": "replace_file", + "label": "Overwrite Behavior", + "description": "Determines the overwrite behavior if destination file already exists. Must be one of the following string values: \n\n- `append_records` (default) - append records at the insertion point\n- `replace_file` - replace entire file using `default_CSV_template`\n" + }, + { + "name": "record_sort_property_name", + "kind": "string", + "label": "Record Sort Property Name", + "description": "A property in the record which will be used as a sort key.\n\nIf this property is omitted, records will not be sorted." + }, + { + "name": "stream_map_config", + "kind": "object", + "label": "User Stream Map Configuration", + "description": "User-defined config values to be used within map expressions." + }, + { + "name": "stream_maps", + "kind": "object", + "label": "Stream Maps", + "description": "Allows inline stream transformations and aliasing. For more information see: https://sdk.meltano.com/en/latest/stream_maps.html" + }, + { + "name": "timestamp_format", + "kind": "string", + "value": "%Y-%m-%d.T%H%M%S", + "label": "Timestamp Format", + "description": "A python format string to use when outputting the `{timestamp}` string. For reference, see: https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes" + }, + { + "name": "timestamp_timezone", + "kind": "string", + "value": "UTC", + "label": "Timestamp Timezone", + "description": "The timezone code or name to use when generating `{timestamp}` and `{datestamp}`. Defaults to 'UTC'. For a list of possible values, please see: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones" + }, + { + "name": "validate_records", + "kind": "boolean", + "value": true, + "label": "Validate Records", + "description": "Whether to validate the schema of the incoming streams." + } + ] +} From 08af69c1166e744338ac1d26d794513a5de62280 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Tue, 28 Jan 2025 15:48:46 -0300 Subject: [PATCH 10/23] add: postgres loader to meltano --- .../loaders/target-postgres--meltanolabs.lock | 288 ++++++++++++++++++ 1 file changed, 288 insertions(+) create mode 100644 meltano-project/plugins/loaders/target-postgres--meltanolabs.lock diff --git a/meltano-project/plugins/loaders/target-postgres--meltanolabs.lock b/meltano-project/plugins/loaders/target-postgres--meltanolabs.lock new file mode 100644 index 0000000000..fc966549e9 --- /dev/null +++ b/meltano-project/plugins/loaders/target-postgres--meltanolabs.lock @@ -0,0 +1,288 @@ +{ + "plugin_type": "loaders", + "name": "target-postgres", + "namespace": "target_postgres", + "variant": "meltanolabs", + "label": "Postgres", + "docs": "https://hub.meltano.com/loaders/target-postgres--meltanolabs", + "repo": "https://github.com/MeltanoLabs/target-postgres", + "pip_url": "meltanolabs-target-postgres", + "executable": "target-postgres", + "description": "PostgreSQL database loader", + "logo_url": "https://hub.meltano.com/assets/logos/loaders/postgres.png", + "capabilities": [ + "about", + "activate-version", + "hard-delete", + "schema-flattening", + "stream-maps" + ], + "settings_group_validation": [ + [] + ], + "settings": [ + { + "name": "activate_version", + "kind": "boolean", + "value": true, + "label": "Activate Version", + "description": "If set to false, the tap will ignore activate version messages. If set to true, add_record_metadata must be set to true as well." + }, + { + "name": "add_record_metadata", + "kind": "boolean", + "value": true, + "label": "Add Record Metadata", + "description": "Note that this must be enabled for activate_version to work!This adds _sdc_extracted_at, _sdc_batched_at, and more to every table. See https://sdk.meltano.com/en/latest/implementation/record_metadata.html for more information." + }, + { + "name": "batch_size_rows", + "kind": "integer", + "label": "Batch Size Rows", + "description": "Maximum number of rows in each batch." + }, + { + "name": "database", + "kind": "string", + "label": "Database", + "description": "Database name." + }, + { + "name": "default_target_schema", + "kind": "string", + "value": "$MELTANO_EXTRACT__LOAD_SCHEMA", + "label": "Default Target Schema", + "description": "Postgres schema to send data to, example: tap-clickup" + }, + { + "name": "dialect+driver", + "kind": "string", + "value": "postgresql+psycopg", + "label": "Dialect+Driver", + "description": "DEPRECATED. Dialect+driver see https://docs.sqlalchemy.org/en/20/core/engines.html. Generally just leave this alone." + }, + { + "name": "faker_config.locale", + "kind": "array", + "label": "Faker Locale", + "description": "One or more LCID locale strings to produce localized output for: https://faker.readthedocs.io/en/master/#localization" + }, + { + "name": "faker_config.seed", + "kind": "string", + "label": "Faker Seed", + "description": "Value to seed the Faker generator for deterministic output: https://faker.readthedocs.io/en/master/#seeding-the-generator" + }, + { + "name": "flattening_enabled", + "kind": "boolean", + "label": "Enable Schema Flattening", + "description": "'True' to enable schema flattening and automatically expand nested properties." + }, + { + "name": "flattening_max_depth", + "kind": "integer", + "label": "Max Flattening Depth", + "description": "The max depth to flatten schemas." + }, + { + "name": "hard_delete", + "kind": "boolean", + "value": false, + "label": "Hard Delete", + "description": "When activate version is sent from a tap this specefies if we should delete the records that don't match, or mark them with a date in the `_sdc_deleted_at` column. This config option is ignored if `activate_version` is set to false." + }, + { + "name": "host", + "kind": "string", + "label": "Host", + "description": "Hostname for postgres instance." + }, + { + "name": "interpret_content_encoding", + "kind": "boolean", + "value": false, + "label": "Interpret Content Encoding", + "description": "If set to true, the target will interpret the content encoding of the schema to determine how to store the data. Using this option may result in a more efficient storage of the data but may also result in an error if the data is not encoded as expected." + }, + { + "name": "load_method", + "kind": "options", + "value": "append-only", + "label": "Load Method", + "description": "The method to use when loading data into the destination. `append-only` will always write all input records whether that records already exists or not. `upsert` will update existing records and insert new records. `overwrite` will delete all existing records and insert all input records.", + "options": [ + { + "label": "Append Only", + "value": "append-only" + }, + { + "label": "Upsert", + "value": "upsert" + }, + { + "label": "Overwrite", + "value": "overwrite" + } + ] + }, + { + "name": "password", + "kind": "string", + "label": "Password", + "description": "Password used to authenticate.", + "sensitive": true + }, + { + "name": "port", + "kind": "integer", + "value": 5432, + "label": "Port", + "description": "The port on which postgres is awaiting connections." + }, + { + "name": "process_activate_version_messages", + "kind": "boolean", + "value": true, + "label": "Process `ACTIVATE_VERSION` messages", + "description": "Whether to process `ACTIVATE_VERSION` messages." + }, + { + "name": "sanitize_null_text_characters", + "kind": "boolean", + "value": false, + "label": "Sanitize Null Text Characters", + "description": "If set to true, the target will sanitize null characters in char/text/varchar fields, as they are not supported by Postgres. See [postgres documentation](https://www.postgresql.org/docs/current/functions-string.html) for more information about chr(0) not being supported." + }, + { + "name": "sqlalchemy_url", + "kind": "string", + "label": "SQLAlchemy URL", + "description": "DEPRECATED. SQLAlchemy connection string. This will override using host, user, password, port, dialect, and all ssl settings. Note that you must escape password special characters properly. See https://docs.sqlalchemy.org/en/20/core/engines.html#escaping-special-characters-such-as-signs-in-passwords" + }, + { + "name": "ssh_tunnel.enable", + "kind": "boolean", + "value": false, + "label": "SSH Tunnel Enable", + "description": "Enable an ssh tunnel (also known as bastion host), see the other ssh_tunnel.* properties for more details" + }, + { + "name": "ssh_tunnel.host", + "kind": "string", + "label": "SSH Tunnel Host", + "description": "Host of the bastion host, this is the host we'll connect to via ssh" + }, + { + "name": "ssh_tunnel.port", + "kind": "integer", + "value": 22, + "label": "SSH Tunnel Port", + "description": "Port to connect to bastion host" + }, + { + "name": "ssh_tunnel.private_key", + "kind": "string", + "label": "SSH Tunnel Private Key", + "description": "Private Key for authentication to the bastion host", + "sensitive": true + }, + { + "name": "ssh_tunnel.private_key_password", + "kind": "string", + "label": "SSH Tunnel Private Key Password", + "description": "Private Key Password, leave None if no password is set", + "sensitive": true + }, + { + "name": "ssh_tunnel.username", + "kind": "string", + "label": "SSH Tunnel Username", + "description": "Username to connect to bastion host" + }, + { + "name": "ssl_certificate_authority", + "kind": "string", + "value": "~/.postgresql/root.crl", + "label": "SSL Certificate Authority", + "description": "The certificate authority that should be used to verify the server's identity. Can be provided either as the certificate itself (in .env) or as a filepath to the certificate." + }, + { + "name": "ssl_client_certificate", + "kind": "string", + "value": "~/.postgresql/postgresql.crt", + "label": "SSL Client Certificate", + "description": "The certificate that should be used to verify your identity to the server. Can be provided either as the certificate itself (in .env) or as a filepath to the certificate." + }, + { + "name": "ssl_client_certificate_enable", + "kind": "boolean", + "value": false, + "label": "SSL Client Certificate Enable", + "description": "Whether or not to provide client-side certificates as a method of authentication to the server. Use ssl_client_certificate and ssl_client_private_key for further customization. To use SSL to verify the server's identity, use ssl_enable instead." + }, + { + "name": "ssl_client_private_key", + "kind": "string", + "value": "~/.postgresql/postgresql.key", + "label": "SSL Client Private Key", + "description": "The private key for the certificate you provided. Can be provided either as the certificate itself (in .env) or as a filepath to the certificate.", + "sensitive": true + }, + { + "name": "ssl_enable", + "kind": "boolean", + "value": false, + "label": "SSL Enable", + "description": "Whether or not to use ssl to verify the server's identity. Use ssl_certificate_authority and ssl_mode for further customization. To use a client certificate to authenticate yourself to the server, use ssl_client_certificate_enable instead." + }, + { + "name": "ssl_mode", + "kind": "string", + "value": "verify-full", + "label": "SSL Mode", + "description": "SSL Protection method, see [postgres documentation](https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-PROTECTION) for more information. Must be one of disable, allow, prefer, require, verify-ca, or verify-full." + }, + { + "name": "ssl_storage_directory", + "kind": "string", + "value": ".secrets", + "label": "SSL Storage Directory", + "description": "The folder in which to store SSL certificates provided as raw values. When a certificate/key is provided as a raw value instead of as a filepath, it must be written to a file before it can be used. This configuration option determines where that file is created." + }, + { + "name": "stream_map_config", + "kind": "object", + "label": "User Stream Map Configuration", + "description": "User-defined config values to be used within map expressions." + }, + { + "name": "stream_maps", + "kind": "object", + "label": "Stream Maps", + "description": "Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html)." + }, + { + "name": "use_copy", + "kind": "boolean", + "value": false, + "label": "Use COPY", + "description": "Use the COPY command to insert data. This is usually faster than INSERT statements. This option is only available for the postgresql+psycopg dialect+driver." + }, + { + "name": "user", + "kind": "string", + "label": "User", + "description": "User name used to authenticate." + }, + { + "name": "validate_records", + "kind": "boolean", + "value": true, + "label": "Validate Records", + "description": "Whether to validate the schema of the incoming streams." + } + ], + "dialect": "postgres", + "target_schema": "$TARGET_POSTGRES_SCHEMA" +} From c6f2c0e2719e709c2156110de9e30513c27de1ed Mon Sep 17 00:00:00 2001 From: priscaruso Date: Tue, 28 Jan 2025 19:00:55 -0300 Subject: [PATCH 11/23] add: postgres database as final-db service in docker-compose file --- docker-compose.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 36bf333730..c65e80bb21 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -25,4 +25,15 @@ services: - ./dags:/opt/airflow/dags - ./data:/opt/airflow/data depends_on: - - db \ No newline at end of file + - db + + final-db: + image: postgres:12 + environment: + POSTGRES_DB: orders + POSTGRES_USER: final-user + POSTGRES_PASSWORD: ordersdetails + volumes: + - ./output-dbdata:/var/lib/postgresql/data + ports: + - 5433:5433 \ No newline at end of file From a71ae0f189eae007976c73323b54c7301261204a Mon Sep 17 00:00:00 2001 From: priscaruso Date: Tue, 28 Jan 2025 19:14:44 -0300 Subject: [PATCH 12/23] add: extractors and loaders config in meltano.yml file --- meltano-project/meltano.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/meltano-project/meltano.yml b/meltano-project/meltano.yml index a47dde838a..470e0f0a33 100644 --- a/meltano-project/meltano.yml +++ b/meltano-project/meltano.yml @@ -5,3 +5,38 @@ environments: - name: dev - name: staging - name: prod + +plugins: + extractors: + - name: tap-postgres + pip-url: pipelinewise-tap-postgres + config: + host: db + port: 5432 + user: northwind_user + password: thewindisblowing + dbname: northwind + + - name: tap-csv + pip_url: git+https://gitlab.com/meltano/tap-csv.git + config: + files: + - entity: order_details + file: /opt/airflow/data/order_details.csv # path to csv data + keys: + - order_id # the primary key for the csv data + + loaders: + - name: target-csv + pip-url: target-csv + config: + destination_path: /opt/airflow/data/output # output path for csv file + + - name: target-postgres + pip-url: pipelinewise-target-postgres + config: + host: final-db + port: 5433 + user: final-user + password: ordersdetails + dbname: orders \ No newline at end of file From 2693b66dfa643735fe4225f970f80483874700ef Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 12:15:37 -0300 Subject: [PATCH 13/23] fix: steps at meltano dag file --- dags/meltano-dag.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/dags/meltano-dag.py b/dags/meltano-dag.py index 22af8db468..d136ad76a5 100644 --- a/dags/meltano-dag.py +++ b/dags/meltano-dag.py @@ -18,10 +18,17 @@ catchup=False, ) -run_meltano = BashOperator( - task_id='run_meltano_etl', +step1_meltano = BashOperator( + task_id='step1_meltano_etl', bash_command='meltano etl tap-postgres target-csv && meltano etl tap-csv target-csv', dag=dag, ) -run_meltano \ No newline at end of file +step2_meltano = BashOperator( + task_id='step2_meltano_etl', + bash_command='meltano etl tap-csv target-postgres', + dag=dag, +) + +# task dependencies +step1_meltano >> step2_meltano \ No newline at end of file From 64297ebf952a414a5e027dd3c5d3e9916832bd8e Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 12:16:03 -0300 Subject: [PATCH 14/23] fix: remove airflow service --- docker-compose.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index c65e80bb21..6831340414 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,20 +12,6 @@ services: - ./data/northwind.sql:/docker-entrypoint-initdb.d/northwind.sql ports: - 5432:5432 - - airflow: - image: apache/airflow:2.10.4-python3.10 - environment: - AIRFLOW__DATABASE__SQL_ALCHEMY_CONN: postgresql+psycopg2://northwind_user:thewindisblowing@db/northwind - AIRFLOW__CORE__EXECUTOR: LocalExecutor - AIRFLOW__CORE__LOAD_EXAMPLES: 'False' - ports: - - "8080:8080" - volumes: - - ./dags:/opt/airflow/dags - - ./data:/opt/airflow/data - depends_on: - - db final-db: image: postgres:12 From 054ae00987570d43a046e609210f5b193f50b4d2 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 12:17:04 -0300 Subject: [PATCH 15/23] add: separate airflow docker compose file --- airflow-project/docker-compose.yaml | 288 ++++++++++++++++++++++++++++ 1 file changed, 288 insertions(+) create mode 100644 airflow-project/docker-compose.yaml diff --git a/airflow-project/docker-compose.yaml b/airflow-project/docker-compose.yaml new file mode 100644 index 0000000000..0c29b17b66 --- /dev/null +++ b/airflow-project/docker-compose.yaml @@ -0,0 +1,288 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +# Basic Airflow cluster configuration for CeleryExecutor with Redis and PostgreSQL. +# +# WARNING: This configuration is for local development. Do not use it in a production deployment. +# +# This configuration supports basic configuration using environment variables or an .env file +# The following variables are supported: +# +# AIRFLOW_IMAGE_NAME - Docker image name used to run Airflow. +# Default: apache/airflow:2.10.4 +# AIRFLOW_UID - User ID in Airflow containers +# Default: 50000 +# AIRFLOW_PROJ_DIR - Base path to which all the files will be volumed. +# Default: . +# Those configurations are useful mostly in case of standalone testing/running Airflow in test/try-out mode +# +# _AIRFLOW_WWW_USER_USERNAME - Username for the administrator account (if requested). +# Default: airflow +# _AIRFLOW_WWW_USER_PASSWORD - Password for the administrator account (if requested). +# Default: airflow +# _PIP_ADDITIONAL_REQUIREMENTS - Additional PIP requirements to add when starting all containers. +# Use this option ONLY for quick checks. Installing requirements at container +# startup is done EVERY TIME the service is started. +# A better way is to build a custom image or extend the official image +# as described in https://airflow.apache.org/docs/docker-stack/build.html. +# Default: '' +# +# Feel free to modify this file to suit your needs. +--- +x-airflow-common: + &airflow-common + # In order to add custom dependencies or upgrade provider packages you can use your extended image. + # Comment the image line, place your Dockerfile in the directory where you placed the docker-compose.yaml + # and uncomment the "build" line below, Then run `docker-compose build` to build the images. + image: ${AIRFLOW_IMAGE_NAME:-apache/airflow:2.10.4} + # build: . + environment: + &airflow-common-env + AIRFLOW__CORE__EXECUTOR: CeleryExecutor + AIRFLOW__DATABASE__SQL_ALCHEMY_CONN: postgresql+psycopg2://airflow:airflow@postgres/airflow + AIRFLOW__CELERY__RESULT_BACKEND: db+postgresql://airflow:airflow@postgres/airflow + AIRFLOW__CELERY__BROKER_URL: redis://:@redis:6379/0 + AIRFLOW__CORE__FERNET_KEY: '' + AIRFLOW__CORE__DAGS_ARE_PAUSED_AT_CREATION: 'true' + AIRFLOW__CORE__LOAD_EXAMPLES: 'true' + AIRFLOW__API__AUTH_BACKENDS: 'airflow.api.auth.backend.basic_auth,airflow.api.auth.backend.session' + # yamllint disable rule:line-length + # Use simple http server on scheduler for health checks + # See https://airflow.apache.org/docs/apache-airflow/stable/administration-and-deployment/logging-monitoring/check-health.html#scheduler-health-check-server + # yamllint enable rule:line-length + AIRFLOW__SCHEDULER__ENABLE_HEALTH_CHECK: 'true' + # WARNING: Use _PIP_ADDITIONAL_REQUIREMENTS option ONLY for a quick checks + # for other purpose (development, test and especially production usage) build/extend Airflow image. + _PIP_ADDITIONAL_REQUIREMENTS: ${_PIP_ADDITIONAL_REQUIREMENTS:-} + # The following line can be used to set a custom config file, stored in the local config folder + # If you want to use it, outcomment it and replace airflow.cfg with the name of your config file + # AIRFLOW_CONFIG: '/opt/airflow/config/airflow.cfg' + volumes: + - ${AIRFLOW_PROJ_DIR:-.}/dags:/opt/airflow/dags + - ${AIRFLOW_PROJ_DIR:-.}/logs:/opt/airflow/logs + - ${AIRFLOW_PROJ_DIR:-.}/config:/opt/airflow/config + - ${AIRFLOW_PROJ_DIR:-.}/plugins:/opt/airflow/plugins + user: "${AIRFLOW_UID:-50000}:0" + depends_on: + &airflow-common-depends-on + redis: + condition: service_healthy + postgres: + condition: service_healthy + +services: + postgres: + image: postgres:13 + environment: + POSTGRES_USER: airflow + POSTGRES_PASSWORD: airflow + POSTGRES_DB: airflow + volumes: + - postgres-db-volume:/var/lib/postgresql/data + healthcheck: + test: ["CMD", "pg_isready", "-U", "airflow"] + interval: 10s + retries: 5 + start_period: 5s + restart: always + + redis: + # Redis is limited to 7.2-bookworm due to licencing change + # https://redis.io/blog/redis-adopts-dual-source-available-licensing/ + image: redis:7.2-bookworm + expose: + - 6379 + healthcheck: + test: ["CMD", "redis-cli", "ping"] + interval: 10s + timeout: 30s + retries: 50 + start_period: 30s + restart: always + + airflow-webserver: + <<: *airflow-common + command: webserver + ports: + - "8080:8080" + healthcheck: + test: ["CMD", "curl", "--fail", "http://localhost:8080/health"] + interval: 30s + timeout: 10s + retries: 5 + start_period: 30s + restart: always + depends_on: + <<: *airflow-common-depends-on + airflow-init: + condition: service_completed_successfully + + airflow-scheduler: + <<: *airflow-common + command: scheduler + healthcheck: + test: ["CMD", "curl", "--fail", "http://localhost:8974/health"] + interval: 30s + timeout: 10s + retries: 5 + start_period: 30s + restart: always + depends_on: + <<: *airflow-common-depends-on + airflow-init: + condition: service_completed_successfully + + airflow-worker: + <<: *airflow-common + command: celery worker + healthcheck: + # yamllint disable rule:line-length + test: + - "CMD-SHELL" + - 'celery --app airflow.providers.celery.executors.celery_executor.app inspect ping -d "celery@$${HOSTNAME}" || celery --app airflow.executors.celery_executor.app inspect ping -d "celery@$${HOSTNAME}"' + interval: 30s + timeout: 10s + retries: 5 + start_period: 30s + environment: + <<: *airflow-common-env + # Required to handle warm shutdown of the celery workers properly + # See https://airflow.apache.org/docs/docker-stack/entrypoint.html#signal-propagation + DUMB_INIT_SETSID: "0" + restart: always + depends_on: + <<: *airflow-common-depends-on + airflow-init: + condition: service_completed_successfully + + airflow-triggerer: + <<: *airflow-common + command: triggerer + healthcheck: + test: ["CMD-SHELL", 'airflow jobs check --job-type TriggererJob --hostname "$${HOSTNAME}"'] + interval: 30s + timeout: 10s + retries: 5 + start_period: 30s + restart: always + depends_on: + <<: *airflow-common-depends-on + airflow-init: + condition: service_completed_successfully + + airflow-init: + <<: *airflow-common + entrypoint: /bin/bash + # yamllint disable rule:line-length + command: + - -c + - | + if [[ -z "${AIRFLOW_UID}" ]]; then + echo + echo -e "\033[1;33mWARNING!!!: AIRFLOW_UID not set!\e[0m" + echo "If you are on Linux, you SHOULD follow the instructions below to set " + echo "AIRFLOW_UID environment variable, otherwise files will be owned by root." + echo "For other operating systems you can get rid of the warning with manually created .env file:" + echo " See: https://airflow.apache.org/docs/apache-airflow/stable/howto/docker-compose/index.html#setting-the-right-airflow-user" + echo + fi + one_meg=1048576 + mem_available=$$(($$(getconf _PHYS_PAGES) * $$(getconf PAGE_SIZE) / one_meg)) + cpus_available=$$(grep -cE 'cpu[0-9]+' /proc/stat) + disk_available=$$(df / | tail -1 | awk '{print $$4}') + warning_resources="false" + if (( mem_available < 4000 )) ; then + echo + echo -e "\033[1;33mWARNING!!!: Not enough memory available for Docker.\e[0m" + echo "At least 4GB of memory required. You have $$(numfmt --to iec $$((mem_available * one_meg)))" + echo + warning_resources="true" + fi + if (( cpus_available < 2 )); then + echo + echo -e "\033[1;33mWARNING!!!: Not enough CPUS available for Docker.\e[0m" + echo "At least 2 CPUs recommended. You have $${cpus_available}" + echo + warning_resources="true" + fi + if (( disk_available < one_meg * 10 )); then + echo + echo -e "\033[1;33mWARNING!!!: Not enough Disk space available for Docker.\e[0m" + echo "At least 10 GBs recommended. You have $$(numfmt --to iec $$((disk_available * 1024 )))" + echo + warning_resources="true" + fi + if [[ $${warning_resources} == "true" ]]; then + echo + echo -e "\033[1;33mWARNING!!!: You have not enough resources to run Airflow (see above)!\e[0m" + echo "Please follow the instructions to increase amount of resources available:" + echo " https://airflow.apache.org/docs/apache-airflow/stable/howto/docker-compose/index.html#before-you-begin" + echo + fi + mkdir -p /sources/logs /sources/dags /sources/plugins + chown -R "${AIRFLOW_UID}:0" /sources/{logs,dags,plugins} + exec /entrypoint airflow version + # yamllint enable rule:line-length + environment: + <<: *airflow-common-env + _AIRFLOW_DB_MIGRATE: 'true' + _AIRFLOW_WWW_USER_CREATE: 'true' + _AIRFLOW_WWW_USER_USERNAME: ${_AIRFLOW_WWW_USER_USERNAME:-airflow} + _AIRFLOW_WWW_USER_PASSWORD: ${_AIRFLOW_WWW_USER_PASSWORD:-airflow} + _PIP_ADDITIONAL_REQUIREMENTS: '' + user: "0:0" + volumes: + - ${AIRFLOW_PROJ_DIR:-.}:/sources + + airflow-cli: + <<: *airflow-common + profiles: + - debug + environment: + <<: *airflow-common-env + CONNECTION_CHECK_MAX_COUNT: "0" + # Workaround for entrypoint issue. See: https://github.com/apache/airflow/issues/16252 + command: + - bash + - -c + - airflow + + # You can enable flower by adding "--profile flower" option e.g. docker-compose --profile flower up + # or by explicitly targeted on the command line e.g. docker-compose up flower. + # See: https://docs.docker.com/compose/profiles/ + flower: + <<: *airflow-common + command: celery flower + profiles: + - flower + ports: + - "5555:5555" + healthcheck: + test: ["CMD", "curl", "--fail", "http://localhost:5555/"] + interval: 30s + timeout: 10s + retries: 5 + start_period: 30s + restart: always + depends_on: + <<: *airflow-common-depends-on + airflow-init: + condition: service_completed_successfully + +volumes: + postgres-db-volume: \ No newline at end of file From 1b9188034a8f7bd73dcb14c0f49455ee8b0d0a91 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 12:18:08 -0300 Subject: [PATCH 16/23] fix: remove meltano dag file from main dag folder --- dags/meltano-dag.py | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 dags/meltano-dag.py diff --git a/dags/meltano-dag.py b/dags/meltano-dag.py deleted file mode 100644 index d136ad76a5..0000000000 --- a/dags/meltano-dag.py +++ /dev/null @@ -1,34 +0,0 @@ -from airflow import DAG -from airflow.operators.bash_operator import BashOperator -from datetime import datetime, timedelta - -default_args = { - 'owner': 'airflow', - 'depends_on_past': False, - 'retries': 1, - 'retry_delay': timedelta(minutes=5), -} - -dag = DAG( - 'meltano-daily-extraction', - default_args=default_args, - description='A simple DAG to run meltano ETL daily', - schedule_interval='@daily', - start_date = datetime(2025, 1, 1), - catchup=False, -) - -step1_meltano = BashOperator( - task_id='step1_meltano_etl', - bash_command='meltano etl tap-postgres target-csv && meltano etl tap-csv target-csv', - dag=dag, -) - -step2_meltano = BashOperator( - task_id='step2_meltano_etl', - bash_command='meltano etl tap-csv target-postgres', - dag=dag, -) - -# task dependencies -step1_meltano >> step2_meltano \ No newline at end of file From ffe56d828949e7c3b749a5201b69d9dd8f61aae0 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 12:19:00 -0300 Subject: [PATCH 17/23] add: meltano dag file into moved dag folder --- airflow-project/dags/meltano-dag.py | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 airflow-project/dags/meltano-dag.py diff --git a/airflow-project/dags/meltano-dag.py b/airflow-project/dags/meltano-dag.py new file mode 100644 index 0000000000..d136ad76a5 --- /dev/null +++ b/airflow-project/dags/meltano-dag.py @@ -0,0 +1,34 @@ +from airflow import DAG +from airflow.operators.bash_operator import BashOperator +from datetime import datetime, timedelta + +default_args = { + 'owner': 'airflow', + 'depends_on_past': False, + 'retries': 1, + 'retry_delay': timedelta(minutes=5), +} + +dag = DAG( + 'meltano-daily-extraction', + default_args=default_args, + description='A simple DAG to run meltano ETL daily', + schedule_interval='@daily', + start_date = datetime(2025, 1, 1), + catchup=False, +) + +step1_meltano = BashOperator( + task_id='step1_meltano_etl', + bash_command='meltano etl tap-postgres target-csv && meltano etl tap-csv target-csv', + dag=dag, +) + +step2_meltano = BashOperator( + task_id='step2_meltano_etl', + bash_command='meltano etl tap-csv target-postgres', + dag=dag, +) + +# task dependencies +step1_meltano >> step2_meltano \ No newline at end of file From 2498448e3b13cd4f7987794aeac6ecaf3f637a2f Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 15:07:36 -0300 Subject: [PATCH 18/23] add: .env file to git ignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 63796c6c86..ca3fe34895 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,6 @@ venvs/ # Pip package get-pip.py + +# environment variables +.env \ No newline at end of file From f5d6285db2d81bfb5001686c22cc2c5c8cd8c65c Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 15:10:57 -0300 Subject: [PATCH 19/23] add: logs file to airflow project --- .../dag_processor_manager.log | 972 ++++++++++++++++++ .../scheduler/2025-01-29/meltano-dag.py.log | 43 + .../example_bash_decorator.py.log | 113 ++ .../example_dags/example_bash_operator.py.log | 113 ++ .../example_branch_datetime_operator.py.log | 159 +++ ...example_branch_day_of_week_operator.py.log | 113 ++ .../example_dags/example_branch_labels.py.log | 113 ++ .../example_branch_operator.py.log | 113 ++ .../example_branch_operator_decorator.py.log | 113 ++ ...xample_branch_python_dop_operator_3.py.log | 113 ++ .../example_dags/example_complex.py.log | 113 ++ .../example_dags/example_dag_decorator.py.log | 113 ++ .../example_dags/example_dataset_alias.py.log | 182 ++++ ...mple_dataset_alias_with_no_taskflow.py.log | 182 ++++ .../example_dags/example_datasets.py.log | 320 ++++++ .../example_dags/example_display_name.py.log | 113 ++ .../example_dynamic_task_mapping.py.log | 113 ++ ..._mapping_with_no_taskflow_operators.py.log | 113 ++ .../example_external_task_marker_dag.py.log | 136 +++ .../example_inlet_event_extra.py.log | 136 +++ .../example_kubernetes_executor.py.log | 113 ++ .../example_dags/example_latest_only.py.log | 113 ++ .../example_latest_only_with_trigger.py.log | 113 ++ .../example_local_kubernetes_executor.py.log | 113 ++ .../example_nested_branch_dag.py.log | 113 ++ .../example_outlet_event_extra.py.log | 159 +++ .../example_params_trigger_ui.py.log | 113 ++ .../example_params_ui_tutorial.py.log | 113 ++ ...ple_passing_params_via_test_command.py.log | 113 ++ .../example_python_decorator.py.log | 113 ++ .../example_python_operator.py.log | 113 ++ .../example_sensor_decorator.py.log | 113 ++ .../example_dags/example_sensors.py.log | 113 ++ .../example_setup_teardown.py.log | 113 ++ .../example_setup_teardown_taskflow.py.log | 113 ++ .../example_short_circuit_decorator.py.log | 113 ++ .../example_short_circuit_operator.py.log | 113 ++ .../example_dags/example_skip_dag.py.log | 113 ++ .../example_dags/example_sla_dag.py.log | 113 ++ .../example_subdag_operator.py.log | 190 ++++ .../example_dags/example_task_group.py.log | 113 ++ .../example_task_group_decorator.py.log | 113 ++ .../example_time_delta_sensor_async.py.log | 113 ++ .../example_trigger_controller_dag.py.log | 113 ++ .../example_trigger_target_dag.py.log | 113 ++ .../example_workday_timetable.py.log | 113 ++ .../example_dags/example_xcom.py.log | 113 ++ .../example_dags/example_xcomargs.py.log | 136 +++ ...decreasing_priority_weight_strategy.py.log | 75 ++ .../plugins/event_listener.py.log | 75 ++ .../plugins/listener_plugin.py.log | 75 ++ .../example_dags/plugins/workday.py.log | 75 ++ .../example_dags/subdags/subdag.py.log | 75 ++ .../native_dags/example_dags/tutorial.py.log | 113 ++ .../example_dags/tutorial_dag.py.log | 113 ++ .../tutorial_objectstorage.py.log | 113 ++ .../example_dags/tutorial_taskflow_api.py.log | 113 ++ .../tutorial_taskflow_api_virtualenv.py.log | 113 ++ .../tutorial_taskflow_templates.py.log | 113 ++ airflow-project/logs/scheduler/latest | 1 + 60 files changed, 7850 insertions(+) create mode 100644 airflow-project/logs/dag_processor_manager/dag_processor_manager.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/meltano-dag.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_bash_decorator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_bash_operator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_datetime_operator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_day_of_week_operator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_labels.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_operator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_operator_decorator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_python_dop_operator_3.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_complex.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dag_decorator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dataset_alias.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dataset_alias_with_no_taskflow.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_datasets.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_display_name.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dynamic_task_mapping.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_external_task_marker_dag.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_inlet_event_extra.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_kubernetes_executor.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_latest_only.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_latest_only_with_trigger.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_local_kubernetes_executor.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_nested_branch_dag.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_outlet_event_extra.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_params_trigger_ui.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_params_ui_tutorial.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_passing_params_via_test_command.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_python_decorator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_python_operator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sensor_decorator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sensors.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_setup_teardown.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_setup_teardown_taskflow.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_short_circuit_decorator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_short_circuit_operator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_skip_dag.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sla_dag.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_subdag_operator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_task_group.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_task_group_decorator.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_time_delta_sensor_async.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_trigger_controller_dag.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_trigger_target_dag.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_workday_timetable.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_xcom.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_xcomargs.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/decreasing_priority_weight_strategy.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/event_listener.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/listener_plugin.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/workday.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/subdags/subdag.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_dag.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_objectstorage.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_api.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_api_virtualenv.py.log create mode 100644 airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_templates.py.log create mode 120000 airflow-project/logs/scheduler/latest diff --git a/airflow-project/logs/dag_processor_manager/dag_processor_manager.log b/airflow-project/logs/dag_processor_manager/dag_processor_manager.log new file mode 100644 index 0000000000..9be8097ae7 --- /dev/null +++ b/airflow-project/logs/dag_processor_manager/dag_processor_manager.log @@ -0,0 +1,972 @@ +[2025-01-29T18:01:53.376+0000] {manager.py:483} INFO - Processing files using up to 2 processes at a time +[2025-01-29T18:01:53.376+0000] {manager.py:484} INFO - Process each file at most once every 30 seconds +[2025-01-29T18:01:53.376+0000] {manager.py:485} INFO - Checking for new files in /opt/airflow/dags every 300 seconds +[2025-01-29T18:01:53.377+0000] {manager.py:821} INFO - Searching for files in /opt/airflow/dags +[2025-01-29T18:01:53.415+0000] {manager.py:824} INFO - There are 57 files in /opt/airflow/dags +[2025-01-29T18:01:53.562+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ---------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 58 0.04s 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 59 0.03s 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0 +================================================================================ +[2025-01-29T18:02:24.023+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 2.18s 2025-01-29T18:01:57 157 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 2.10s 2025-01-29T18:02:00 379 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 1.17s 2025-01-29T18:02:01 118 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 1.13s 2025-01-29T18:02:00 157 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.89s 2025-01-29T18:02:01 81 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 127 0.00s 1 0 0.50s 2025-01-29T18:01:54 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 1 0 0.50s 2025-01-29T18:01:54 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.43s 2025-01-29T18:01:58 79 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.41s 2025-01-29T18:01:59 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.39s 2025-01-29T18:01:55 117 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.34s 2025-01-29T18:01:55 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.32s 2025-01-29T18:01:54 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.31s 2025-01-29T18:01:54 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.29s 2025-01-29T18:01:54 53 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.29s 2025-01-29T18:02:02 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.28s 2025-01-29T18:02:01 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.28s 2025-01-29T18:01:54 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.27s 2025-01-29T18:02:03 79 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.27s 2025-01-29T18:01:54 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.27s 2025-01-29T18:01:57 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.26s 2025-01-29T18:02:03 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.26s 2025-01-29T18:01:57 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.26s 2025-01-29T18:01:55 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.26s 2025-01-29T18:02:02 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.25s 2025-01-29T18:02:00 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.25s 2025-01-29T18:02:03 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.25s 2025-01-29T18:01:56 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.24s 2025-01-29T18:02:00 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.24s 2025-01-29T18:02:03 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.24s 2025-01-29T18:01:57 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.24s 2025-01-29T18:01:58 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.24s 2025-01-29T18:02:02 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.24s 2025-01-29T18:02:02 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.24s 2025-01-29T18:01:58 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.23s 2025-01-29T18:01:58 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.23s 2025-01-29T18:01:58 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.23s 2025-01-29T18:02:03 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.23s 2025-01-29T18:01:57 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.23s 2025-01-29T18:01:55 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.23s 2025-01-29T18:02:01 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.23s 2025-01-29T18:02:02 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.23s 2025-01-29T18:02:02 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.22s 2025-01-29T18:02:02 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.22s 2025-01-29T18:02:03 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.22s 2025-01-29T18:02:02 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.22s 2025-01-29T18:01:56 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.22s 2025-01-29T18:01:55 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.22s 2025-01-29T18:01:56 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.22s 2025-01-29T18:01:57 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.22s 2025-01-29T18:01:57 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.21s 2025-01-29T18:01:56 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.21s 2025-01-29T18:02:03 43 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:02:03 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.04s 2025-01-29T18:02:03 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.04s 2025-01-29T18:02:03 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.04s 2025-01-29T18:02:03 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.03s 2025-01-29T18:02:03 3 +================================================================================ +[2025-01-29T18:02:54.965+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.89s 2025-01-29T18:02:33 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.67s 2025-01-29T18:02:28 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.64s 2025-01-29T18:02:31 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.59s 2025-01-29T18:02:31 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.54s 2025-01-29T18:02:32 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.19s 2025-01-29T18:02:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.18s 2025-01-29T18:02:33 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.18s 2025-01-29T18:02:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.17s 2025-01-29T18:02:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.15s 2025-01-29T18:02:25 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.14s 2025-01-29T18:02:25 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.14s 2025-01-29T18:02:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.13s 2025-01-29T18:02:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.12s 2025-01-29T18:02:28 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.11s 2025-01-29T18:02:33 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.11s 2025-01-29T18:02:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.11s 2025-01-29T18:02:28 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.11s 2025-01-29T18:02:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.11s 2025-01-29T18:02:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.11s 2025-01-29T18:02:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.11s 2025-01-29T18:02:25 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.10s 2025-01-29T18:02:26 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.10s 2025-01-29T18:02:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.10s 2025-01-29T18:02:25 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.10s 2025-01-29T18:02:33 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.09s 2025-01-29T18:02:31 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.09s 2025-01-29T18:02:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.09s 2025-01-29T18:02:28 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.09s 2025-01-29T18:02:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.09s 2025-01-29T18:02:28 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 191 0.01s 1 0 0.09s 2025-01-29T18:02:24 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.09s 2025-01-29T18:02:31 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.09s 2025-01-29T18:02:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.09s 2025-01-29T18:02:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.09s 2025-01-29T18:02:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.09s 2025-01-29T18:02:28 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.09s 2025-01-29T18:02:26 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.09s 2025-01-29T18:02:26 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.09s 2025-01-29T18:02:26 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.09s 2025-01-29T18:02:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.08s 2025-01-29T18:02:25 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.08s 2025-01-29T18:02:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.08s 2025-01-29T18:02:25 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.08s 2025-01-29T18:02:25 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.08s 2025-01-29T18:02:26 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.08s 2025-01-29T18:02:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.08s 2025-01-29T18:02:33 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 190 0.01s 1 0 0.08s 2025-01-29T18:02:24 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.08s 2025-01-29T18:02:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.08s 2025-01-29T18:02:25 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.08s 2025-01-29T18:02:28 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.07s 2025-01-29T18:02:25 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.04s 2025-01-29T18:02:34 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.03s 2025-01-29T18:02:34 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.03s 2025-01-29T18:02:34 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.03s 2025-01-29T18:02:34 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.03s 2025-01-29T18:02:34 3 +================================================================================ +[2025-01-29T18:03:25.930+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 1.03s 2025-01-29T18:02:59 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.72s 2025-01-29T18:03:02 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.69s 2025-01-29T18:03:03 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.68s 2025-01-29T18:03:02 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.65s 2025-01-29T18:03:04 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.20s 2025-01-29T18:03:03 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.17s 2025-01-29T18:02:59 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.16s 2025-01-29T18:02:59 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.15s 2025-01-29T18:02:59 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.15s 2025-01-29T18:03:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.15s 2025-01-29T18:03:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.15s 2025-01-29T18:03:03 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.14s 2025-01-29T18:02:59 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.14s 2025-01-29T18:03:03 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.13s 2025-01-29T18:02:59 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.13s 2025-01-29T18:02:59 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.12s 2025-01-29T18:03:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.12s 2025-01-29T18:02:59 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.12s 2025-01-29T18:02:56 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.12s 2025-01-29T18:02:57 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.12s 2025-01-29T18:03:00 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.12s 2025-01-29T18:03:04 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.12s 2025-01-29T18:02:58 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.11s 2025-01-29T18:03:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.11s 2025-01-29T18:03:04 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.11s 2025-01-29T18:02:56 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.11s 2025-01-29T18:03:03 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 254 0.01s 1 0 0.11s 2025-01-29T18:02:55 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.10s 2025-01-29T18:02:57 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 253 0.01s 1 0 0.10s 2025-01-29T18:02:55 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.10s 2025-01-29T18:03:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.10s 2025-01-29T18:02:56 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.10s 2025-01-29T18:02:57 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.10s 2025-01-29T18:03:03 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.10s 2025-01-29T18:02:57 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.10s 2025-01-29T18:03:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.09s 2025-01-29T18:03:02 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.09s 2025-01-29T18:02:57 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.09s 2025-01-29T18:03:04 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.09s 2025-01-29T18:03:03 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.09s 2025-01-29T18:03:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.09s 2025-01-29T18:03:02 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.09s 2025-01-29T18:03:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.09s 2025-01-29T18:02:56 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.09s 2025-01-29T18:03:03 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.08s 2025-01-29T18:02:56 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.08s 2025-01-29T18:02:56 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.08s 2025-01-29T18:03:05 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.08s 2025-01-29T18:02:56 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.08s 2025-01-29T18:02:56 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.07s 2025-01-29T18:02:56 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.07s 2025-01-29T18:03:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.04s 2025-01-29T18:03:05 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:03:05 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.04s 2025-01-29T18:03:05 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.04s 2025-01-29T18:03:05 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.03s 2025-01-29T18:03:05 3 +================================================================================ +[2025-01-29T18:03:56.261+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.66s 2025-01-29T18:03:30 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.64s 2025-01-29T18:03:34 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.60s 2025-01-29T18:03:34 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.58s 2025-01-29T18:03:35 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.56s 2025-01-29T18:03:35 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.17s 2025-01-29T18:03:35 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.13s 2025-01-29T18:03:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.12s 2025-01-29T18:03:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.11s 2025-01-29T18:03:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.11s 2025-01-29T18:03:29 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.11s 2025-01-29T18:03:27 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.11s 2025-01-29T18:03:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.11s 2025-01-29T18:03:27 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.11s 2025-01-29T18:03:35 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 317 0.00s 1 0 0.11s 2025-01-29T18:03:26 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.11s 2025-01-29T18:03:27 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 316 0.01s 1 0 0.11s 2025-01-29T18:03:26 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.11s 2025-01-29T18:03:27 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.10s 2025-01-29T18:03:27 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.10s 2025-01-29T18:03:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.10s 2025-01-29T18:03:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.10s 2025-01-29T18:03:27 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.10s 2025-01-29T18:03:27 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.10s 2025-01-29T18:03:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.10s 2025-01-29T18:03:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.10s 2025-01-29T18:03:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.10s 2025-01-29T18:03:27 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.09s 2025-01-29T18:03:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.09s 2025-01-29T18:03:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.09s 2025-01-29T18:03:29 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.09s 2025-01-29T18:03:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.09s 2025-01-29T18:03:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.09s 2025-01-29T18:03:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.09s 2025-01-29T18:03:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.09s 2025-01-29T18:03:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.09s 2025-01-29T18:03:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.09s 2025-01-29T18:03:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.08s 2025-01-29T18:03:28 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.08s 2025-01-29T18:03:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.08s 2025-01-29T18:03:27 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.08s 2025-01-29T18:03:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.08s 2025-01-29T18:03:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.08s 2025-01-29T18:03:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.08s 2025-01-29T18:03:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.08s 2025-01-29T18:03:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.08s 2025-01-29T18:03:30 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.08s 2025-01-29T18:03:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.08s 2025-01-29T18:03:35 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.08s 2025-01-29T18:03:35 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.08s 2025-01-29T18:03:35 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:03:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.07s 2025-01-29T18:03:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.04s 2025-01-29T18:03:36 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.04s 2025-01-29T18:03:35 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:03:36 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.04s 2025-01-29T18:03:35 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.03s 2025-01-29T18:03:35 3 +================================================================================ +[2025-01-29T18:04:26.569+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.72s 2025-01-29T18:04:06 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.67s 2025-01-29T18:04:06 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.65s 2025-01-29T18:04:05 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.61s 2025-01-29T18:04:05 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.50s 2025-01-29T18:04:01 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.17s 2025-01-29T18:04:06 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.12s 2025-01-29T18:04:06 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 380 0.00s 1 0 0.12s 2025-01-29T18:03:56 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 379 0.01s 1 0 0.12s 2025-01-29T18:03:56 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.11s 2025-01-29T18:04:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.11s 2025-01-29T18:03:57 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.11s 2025-01-29T18:03:57 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.11s 2025-01-29T18:04:06 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.10s 2025-01-29T18:03:57 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.10s 2025-01-29T18:03:57 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.10s 2025-01-29T18:04:05 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.10s 2025-01-29T18:04:07 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.09s 2025-01-29T18:04:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.09s 2025-01-29T18:04:06 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.09s 2025-01-29T18:04:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.09s 2025-01-29T18:04:06 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.09s 2025-01-29T18:03:58 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.09s 2025-01-29T18:04:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.09s 2025-01-29T18:03:57 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.09s 2025-01-29T18:04:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.09s 2025-01-29T18:04:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.09s 2025-01-29T18:04:05 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.09s 2025-01-29T18:04:07 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.09s 2025-01-29T18:03:59 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.09s 2025-01-29T18:04:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.09s 2025-01-29T18:03:59 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.09s 2025-01-29T18:04:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.09s 2025-01-29T18:04:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.09s 2025-01-29T18:04:06 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.09s 2025-01-29T18:03:57 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.09s 2025-01-29T18:03:57 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.08s 2025-01-29T18:04:07 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:04:07 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.08s 2025-01-29T18:04:07 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.08s 2025-01-29T18:04:06 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.08s 2025-01-29T18:04:07 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.08s 2025-01-29T18:04:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.08s 2025-01-29T18:04:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.08s 2025-01-29T18:04:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.08s 2025-01-29T18:03:58 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.08s 2025-01-29T18:04:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.08s 2025-01-29T18:03:59 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.08s 2025-01-29T18:04:00 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.08s 2025-01-29T18:03:57 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.07s 2025-01-29T18:04:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.07s 2025-01-29T18:04:07 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.07s 2025-01-29T18:03:57 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:04:07 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.04s 2025-01-29T18:04:07 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.04s 2025-01-29T18:04:07 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.04s 2025-01-29T18:04:07 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.03s 2025-01-29T18:04:07 3 +================================================================================ +[2025-01-29T18:04:57.498+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.62s 2025-01-29T18:04:37 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.60s 2025-01-29T18:04:36 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.54s 2025-01-29T18:04:32 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.54s 2025-01-29T18:04:36 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.53s 2025-01-29T18:04:37 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.16s 2025-01-29T18:04:37 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.11s 2025-01-29T18:04:37 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.11s 2025-01-29T18:04:37 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.11s 2025-01-29T18:04:27 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.11s 2025-01-29T18:04:27 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.11s 2025-01-29T18:04:36 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.11s 2025-01-29T18:04:37 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.10s 2025-01-29T18:04:27 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.10s 2025-01-29T18:04:29 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.10s 2025-01-29T18:04:36 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.10s 2025-01-29T18:04:28 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.10s 2025-01-29T18:04:37 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.10s 2025-01-29T18:04:37 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.10s 2025-01-29T18:04:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 442 0.01s 1 0 0.10s 2025-01-29T18:04:26 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.09s 2025-01-29T18:04:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 443 0.00s 1 0 0.09s 2025-01-29T18:04:26 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.09s 2025-01-29T18:04:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.09s 2025-01-29T18:04:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.09s 2025-01-29T18:04:36 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.09s 2025-01-29T18:04:27 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.09s 2025-01-29T18:04:28 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.09s 2025-01-29T18:04:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.09s 2025-01-29T18:04:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.09s 2025-01-29T18:04:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.09s 2025-01-29T18:04:36 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.09s 2025-01-29T18:04:38 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.09s 2025-01-29T18:04:27 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.09s 2025-01-29T18:04:27 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.09s 2025-01-29T18:04:37 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.09s 2025-01-29T18:04:36 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.08s 2025-01-29T18:04:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:04:37 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:04:38 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.08s 2025-01-29T18:04:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.08s 2025-01-29T18:04:38 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.08s 2025-01-29T18:04:37 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.08s 2025-01-29T18:04:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.08s 2025-01-29T18:04:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.08s 2025-01-29T18:04:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.08s 2025-01-29T18:04:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.08s 2025-01-29T18:04:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.08s 2025-01-29T18:04:38 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.08s 2025-01-29T18:04:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.07s 2025-01-29T18:04:38 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.07s 2025-01-29T18:04:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.07s 2025-01-29T18:04:30 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:04:38 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.04s 2025-01-29T18:04:38 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.04s 2025-01-29T18:04:38 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.04s 2025-01-29T18:04:38 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.04s 2025-01-29T18:04:38 3 +================================================================================ +[2025-01-29T18:05:28.327+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.57s 2025-01-29T18:05:07 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.56s 2025-01-29T18:05:03 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.55s 2025-01-29T18:05:08 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.53s 2025-01-29T18:05:07 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.52s 2025-01-29T18:05:08 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.16s 2025-01-29T18:05:08 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.13s 2025-01-29T18:05:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.13s 2025-01-29T18:05:08 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.12s 2025-01-29T18:04:58 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.11s 2025-01-29T18:04:58 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.11s 2025-01-29T18:05:08 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.11s 2025-01-29T18:04:58 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.11s 2025-01-29T18:05:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.10s 2025-01-29T18:05:08 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.10s 2025-01-29T18:05:08 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.10s 2025-01-29T18:05:09 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.10s 2025-01-29T18:04:58 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.10s 2025-01-29T18:05:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.10s 2025-01-29T18:05:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.10s 2025-01-29T18:05:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.10s 2025-01-29T18:05:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.10s 2025-01-29T18:05:08 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.10s 2025-01-29T18:05:07 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.09s 2025-01-29T18:05:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.09s 2025-01-29T18:05:08 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.09s 2025-01-29T18:05:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.09s 2025-01-29T18:05:08 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.09s 2025-01-29T18:05:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.09s 2025-01-29T18:05:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.09s 2025-01-29T18:05:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.09s 2025-01-29T18:05:08 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.09s 2025-01-29T18:05:07 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.09s 2025-01-29T18:05:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.09s 2025-01-29T18:04:59 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.09s 2025-01-29T18:05:08 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.09s 2025-01-29T18:05:01 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.09s 2025-01-29T18:05:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.09s 2025-01-29T18:04:58 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.09s 2025-01-29T18:04:58 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.08s 2025-01-29T18:05:07 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.08s 2025-01-29T18:05:08 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.08s 2025-01-29T18:04:58 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.08s 2025-01-29T18:05:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:05:08 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 506 0.00s 1 0 0.08s 2025-01-29T18:04:57 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.08s 2025-01-29T18:05:08 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.08s 2025-01-29T18:05:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.08s 2025-01-29T18:04:58 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.08s 2025-01-29T18:05:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 505 0.01s 1 0 0.08s 2025-01-29T18:04:57 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.08s 2025-01-29T18:05:07 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.08s 2025-01-29T18:05:08 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.04s 2025-01-29T18:05:09 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.04s 2025-01-29T18:05:09 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.04s 2025-01-29T18:05:09 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.04s 2025-01-29T18:05:09 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:05:09 3 +================================================================================ +[2025-01-29T18:05:58.578+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.62s 2025-01-29T18:05:38 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.61s 2025-01-29T18:05:39 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.59s 2025-01-29T18:05:38 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.50s 2025-01-29T18:05:34 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.49s 2025-01-29T18:05:39 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.17s 2025-01-29T18:05:39 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.13s 2025-01-29T18:05:39 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.12s 2025-01-29T18:05:29 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.12s 2025-01-29T18:05:29 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.11s 2025-01-29T18:05:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.11s 2025-01-29T18:05:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.11s 2025-01-29T18:05:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.11s 2025-01-29T18:05:29 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.11s 2025-01-29T18:05:31 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.11s 2025-01-29T18:05:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.10s 2025-01-29T18:05:29 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.10s 2025-01-29T18:05:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.10s 2025-01-29T18:05:38 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.10s 2025-01-29T18:05:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.10s 2025-01-29T18:05:29 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.10s 2025-01-29T18:05:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.10s 2025-01-29T18:05:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.10s 2025-01-29T18:05:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.10s 2025-01-29T18:05:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.10s 2025-01-29T18:05:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.10s 2025-01-29T18:05:39 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.09s 2025-01-29T18:05:39 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.09s 2025-01-29T18:05:39 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.09s 2025-01-29T18:05:29 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.09s 2025-01-29T18:05:38 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.09s 2025-01-29T18:05:40 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 569 0.00s 1 0 0.09s 2025-01-29T18:05:28 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.09s 2025-01-29T18:05:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.09s 2025-01-29T18:05:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 568 0.01s 1 0 0.09s 2025-01-29T18:05:28 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.09s 2025-01-29T18:05:38 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.09s 2025-01-29T18:05:40 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.09s 2025-01-29T18:05:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:05:40 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.08s 2025-01-29T18:05:32 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.08s 2025-01-29T18:05:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.08s 2025-01-29T18:05:39 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.08s 2025-01-29T18:05:39 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.08s 2025-01-29T18:05:40 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.08s 2025-01-29T18:05:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:05:39 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.08s 2025-01-29T18:05:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.08s 2025-01-29T18:05:40 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.08s 2025-01-29T18:05:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.08s 2025-01-29T18:05:39 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.07s 2025-01-29T18:05:40 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.07s 2025-01-29T18:05:38 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.04s 2025-01-29T18:05:40 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.04s 2025-01-29T18:05:40 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:05:40 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.04s 2025-01-29T18:05:40 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.04s 2025-01-29T18:05:40 3 +================================================================================ +[2025-01-29T18:06:29.321+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.68s 2025-01-29T18:06:10 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.64s 2025-01-29T18:06:10 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.61s 2025-01-29T18:06:05 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.61s 2025-01-29T18:06:09 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.55s 2025-01-29T18:06:09 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.19s 2025-01-29T18:06:10 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.14s 2025-01-29T18:06:10 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 632 0.01s 1 0 0.14s 2025-01-29T18:05:58 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 631 0.01s 1 0 0.13s 2025-01-29T18:05:58 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.12s 2025-01-29T18:06:09 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.11s 2025-01-29T18:06:09 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.11s 2025-01-29T18:06:09 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.11s 2025-01-29T18:06:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.11s 2025-01-29T18:06:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.11s 2025-01-29T18:06:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.11s 2025-01-29T18:06:09 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.11s 2025-01-29T18:05:59 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.10s 2025-01-29T18:06:02 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.10s 2025-01-29T18:06:00 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.10s 2025-01-29T18:06:02 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.10s 2025-01-29T18:06:02 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.10s 2025-01-29T18:06:11 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.10s 2025-01-29T18:06:10 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.10s 2025-01-29T18:06:10 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.10s 2025-01-29T18:06:10 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.09s 2025-01-29T18:06:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.09s 2025-01-29T18:05:59 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.09s 2025-01-29T18:06:03 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.09s 2025-01-29T18:06:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.09s 2025-01-29T18:06:10 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.09s 2025-01-29T18:06:02 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.09s 2025-01-29T18:06:10 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.09s 2025-01-29T18:05:59 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.09s 2025-01-29T18:06:09 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.09s 2025-01-29T18:06:09 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.09s 2025-01-29T18:06:10 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.09s 2025-01-29T18:05:59 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.09s 2025-01-29T18:06:02 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.09s 2025-01-29T18:06:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.09s 2025-01-29T18:06:03 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.09s 2025-01-29T18:06:10 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.08s 2025-01-29T18:06:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.08s 2025-01-29T18:06:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.08s 2025-01-29T18:06:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.08s 2025-01-29T18:06:09 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.08s 2025-01-29T18:06:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.08s 2025-01-29T18:06:10 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.08s 2025-01-29T18:05:59 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.08s 2025-01-29T18:06:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.08s 2025-01-29T18:06:10 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.08s 2025-01-29T18:06:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.07s 2025-01-29T18:06:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.05s 2025-01-29T18:06:11 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.05s 2025-01-29T18:06:11 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.05s 2025-01-29T18:06:11 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.05s 2025-01-29T18:06:11 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.04s 2025-01-29T18:06:11 3 +================================================================================ +[2025-01-29T18:06:53.867+0000] {manager.py:821} INFO - Searching for files in /opt/airflow/dags +[2025-01-29T18:06:53.883+0000] {manager.py:824} INFO - There are 58 files in /opt/airflow/dags +[2025-01-29T18:06:59.986+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.63s 2025-01-29T18:06:40 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.60s 2025-01-29T18:06:40 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.60s 2025-01-29T18:06:36 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.55s 2025-01-29T18:06:40 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.55s 2025-01-29T18:06:41 15 +/opt/airflow/dags/meltano-dag.py 1 0 0.24s 2025-01-29T18:06:54 45 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.17s 2025-01-29T18:06:40 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.12s 2025-01-29T18:06:40 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 696 0.00s 1 0 0.12s 2025-01-29T18:06:29 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.11s 2025-01-29T18:06:33 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.11s 2025-01-29T18:06:33 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.11s 2025-01-29T18:06:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.11s 2025-01-29T18:06:40 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.11s 2025-01-29T18:06:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.11s 2025-01-29T18:06:41 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 695 0.01s 1 0 0.11s 2025-01-29T18:06:29 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.11s 2025-01-29T18:06:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.11s 2025-01-29T18:06:30 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.11s 2025-01-29T18:06:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.10s 2025-01-29T18:06:40 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.10s 2025-01-29T18:06:30 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.10s 2025-01-29T18:06:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.10s 2025-01-29T18:06:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.10s 2025-01-29T18:06:40 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.10s 2025-01-29T18:06:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.09s 2025-01-29T18:06:40 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.09s 2025-01-29T18:06:41 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.09s 2025-01-29T18:06:41 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.09s 2025-01-29T18:06:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.09s 2025-01-29T18:06:40 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.09s 2025-01-29T18:06:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.09s 2025-01-29T18:06:41 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.09s 2025-01-29T18:06:41 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.09s 2025-01-29T18:06:33 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.09s 2025-01-29T18:06:33 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.09s 2025-01-29T18:06:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.09s 2025-01-29T18:06:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.08s 2025-01-29T18:06:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.08s 2025-01-29T18:06:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.08s 2025-01-29T18:06:41 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.08s 2025-01-29T18:06:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.08s 2025-01-29T18:06:33 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.08s 2025-01-29T18:06:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.08s 2025-01-29T18:06:33 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.08s 2025-01-29T18:06:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.08s 2025-01-29T18:06:41 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.08s 2025-01-29T18:06:41 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.08s 2025-01-29T18:06:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.08s 2025-01-29T18:06:41 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.08s 2025-01-29T18:06:40 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.08s 2025-01-29T18:06:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:06:41 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.08s 2025-01-29T18:06:40 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.04s 2025-01-29T18:06:41 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.04s 2025-01-29T18:06:41 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.04s 2025-01-29T18:06:41 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.03s 2025-01-29T18:06:41 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.03s 2025-01-29T18:06:41 3 +================================================================================ +[2025-01-29T18:07:30.076+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.68s 2025-01-29T18:07:11 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.62s 2025-01-29T18:07:11 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.57s 2025-01-29T18:07:12 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.55s 2025-01-29T18:07:12 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.50s 2025-01-29T18:07:06 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.17s 2025-01-29T18:07:12 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.12s 2025-01-29T18:07:11 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.11s 2025-01-29T18:07:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.11s 2025-01-29T18:07:11 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.11s 2025-01-29T18:07:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.11s 2025-01-29T18:07:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.10s 2025-01-29T18:07:01 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.10s 2025-01-29T18:07:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.10s 2025-01-29T18:07:12 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.10s 2025-01-29T18:07:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.10s 2025-01-29T18:07:01 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.10s 2025-01-29T18:07:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.10s 2025-01-29T18:07:04 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.10s 2025-01-29T18:07:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.10s 2025-01-29T18:07:12 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.10s 2025-01-29T18:07:12 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.10s 2025-01-29T18:07:02 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.10s 2025-01-29T18:07:03 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.10s 2025-01-29T18:07:11 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.10s 2025-01-29T18:07:11 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 1 0 0.09s 2025-01-29T18:07:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.09s 2025-01-29T18:07:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.09s 2025-01-29T18:07:03 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.09s 2025-01-29T18:07:02 10 +/opt/airflow/dags/meltano-dag.py 1 0 0.09s 2025-01-29T18:07:25 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.09s 2025-01-29T18:07:12 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.09s 2025-01-29T18:07:11 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 759 0.00s 1 0 0.09s 2025-01-29T18:07:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.09s 2025-01-29T18:07:11 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.09s 2025-01-29T18:07:04 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.09s 2025-01-29T18:07:12 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.09s 2025-01-29T18:07:04 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.08s 2025-01-29T18:07:11 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.08s 2025-01-29T18:07:04 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.08s 2025-01-29T18:07:12 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:07:12 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.08s 2025-01-29T18:07:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.08s 2025-01-29T18:07:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.08s 2025-01-29T18:07:12 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.08s 2025-01-29T18:07:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.08s 2025-01-29T18:07:04 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.08s 2025-01-29T18:07:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.08s 2025-01-29T18:07:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:07:12 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.08s 2025-01-29T18:07:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.08s 2025-01-29T18:07:11 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.07s 2025-01-29T18:07:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.07s 2025-01-29T18:07:12 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:07:12 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.03s 2025-01-29T18:07:12 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.03s 2025-01-29T18:07:12 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.03s 2025-01-29T18:07:12 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.03s 2025-01-29T18:07:12 3 +================================================================================ +[2025-01-29T18:08:00.144+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.74s 2025-01-29T18:07:43 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.74s 2025-01-29T18:07:43 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.67s 2025-01-29T18:07:41 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.66s 2025-01-29T18:07:41 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.51s 2025-01-29T18:07:38 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.13s 2025-01-29T18:07:42 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.12s 2025-01-29T18:07:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.12s 2025-01-29T18:07:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.11s 2025-01-29T18:07:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.11s 2025-01-29T18:07:43 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.11s 2025-01-29T18:07:31 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.11s 2025-01-29T18:07:43 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.11s 2025-01-29T18:07:43 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.11s 2025-01-29T18:07:31 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.11s 2025-01-29T18:07:42 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.10s 2025-01-29T18:07:34 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.10s 2025-01-29T18:07:43 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.10s 2025-01-29T18:07:31 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.10s 2025-01-29T18:07:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.10s 2025-01-29T18:07:42 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.10s 2025-01-29T18:07:31 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.10s 2025-01-29T18:07:43 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.09s 2025-01-29T18:07:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.09s 2025-01-29T18:07:42 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.09s 2025-01-29T18:07:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.09s 2025-01-29T18:07:43 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.09s 2025-01-29T18:07:42 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.09s 2025-01-29T18:07:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.09s 2025-01-29T18:07:42 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 1 0 0.09s 2025-01-29T18:07:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.09s 2025-01-29T18:07:42 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.09s 2025-01-29T18:07:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.09s 2025-01-29T18:07:42 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 1 0 0.09s 2025-01-29T18:07:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.09s 2025-01-29T18:07:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.09s 2025-01-29T18:07:43 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.09s 2025-01-29T18:07:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.08s 2025-01-29T18:07:43 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.08s 2025-01-29T18:07:43 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:07:43 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.08s 2025-01-29T18:07:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.08s 2025-01-29T18:07:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.08s 2025-01-29T18:07:34 10 +/opt/airflow/dags/meltano-dag.py 1 0 0.08s 2025-01-29T18:07:56 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.08s 2025-01-29T18:07:31 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.08s 2025-01-29T18:07:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.08s 2025-01-29T18:07:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.08s 2025-01-29T18:07:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.08s 2025-01-29T18:07:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.08s 2025-01-29T18:07:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.08s 2025-01-29T18:07:31 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.07s 2025-01-29T18:07:31 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.07s 2025-01-29T18:07:43 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.04s 2025-01-29T18:07:44 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:07:43 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.04s 2025-01-29T18:07:43 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.04s 2025-01-29T18:07:43 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.04s 2025-01-29T18:07:43 3 +================================================================================ +[2025-01-29T18:08:30.886+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.67s 2025-01-29T18:08:13 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.65s 2025-01-29T18:08:12 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.62s 2025-01-29T18:08:13 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.62s 2025-01-29T18:08:12 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.50s 2025-01-29T18:08:09 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.15s 2025-01-29T18:08:14 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.12s 2025-01-29T18:08:14 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.11s 2025-01-29T18:08:13 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.10s 2025-01-29T18:08:01 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.10s 2025-01-29T18:08:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.10s 2025-01-29T18:08:01 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.10s 2025-01-29T18:08:14 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.10s 2025-01-29T18:08:14 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.10s 2025-01-29T18:08:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.10s 2025-01-29T18:08:05 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.10s 2025-01-29T18:08:05 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.10s 2025-01-29T18:08:14 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.10s 2025-01-29T18:08:05 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.10s 2025-01-29T18:08:13 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.10s 2025-01-29T18:08:13 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.09s 2025-01-29T18:08:13 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.09s 2025-01-29T18:08:12 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.09s 2025-01-29T18:08:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.09s 2025-01-29T18:08:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.09s 2025-01-29T18:08:13 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.09s 2025-01-29T18:08:04 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.09s 2025-01-29T18:08:01 12 +/opt/airflow/dags/meltano-dag.py 1 0 0.09s 2025-01-29T18:08:26 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.09s 2025-01-29T18:08:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.09s 2025-01-29T18:08:05 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.09s 2025-01-29T18:08:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 887 0.01s 1 0 0.09s 2025-01-29T18:08:00 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.09s 2025-01-29T18:08:03 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.09s 2025-01-29T18:08:14 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.09s 2025-01-29T18:08:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:08:14 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.08s 2025-01-29T18:08:14 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.08s 2025-01-29T18:08:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.08s 2025-01-29T18:08:14 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.08s 2025-01-29T18:08:14 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.08s 2025-01-29T18:08:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 888 0.00s 1 0 0.08s 2025-01-29T18:08:00 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.08s 2025-01-29T18:08:13 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.08s 2025-01-29T18:08:05 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.08s 2025-01-29T18:08:01 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.08s 2025-01-29T18:08:02 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.08s 2025-01-29T18:08:14 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.08s 2025-01-29T18:08:05 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.08s 2025-01-29T18:08:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.07s 2025-01-29T18:08:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.07s 2025-01-29T18:08:01 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.07s 2025-01-29T18:08:13 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.07s 2025-01-29T18:08:05 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.05s 2025-01-29T18:08:14 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:08:14 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.03s 2025-01-29T18:08:14 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.03s 2025-01-29T18:08:14 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.03s 2025-01-29T18:08:14 3 +================================================================================ +[2025-01-29T18:09:00.896+0000] {manager.py:997} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run Last # of DB Queries +--------------------------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- ---------------------- +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py 10 0 0.75s 2025-01-29T18:08:44 49 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py 4 0 0.67s 2025-01-29T18:08:43 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py 2 0 0.60s 2025-01-29T18:08:44 15 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py 3 0 0.60s 2025-01-29T18:08:44 19 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py 4 0 0.52s 2025-01-29T18:08:40 27 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py 1 0 0.17s 2025-01-29T18:08:45 32 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py 1 0 0.14s 2025-01-29T18:08:44 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py 1 0 0.11s 2025-01-29T18:08:45 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 1 0 0.11s 2025-01-29T18:08:44 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py 1 0 0.11s 2025-01-29T18:08:44 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 1 0 0.10s 2025-01-29T18:08:34 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py 1 0 0.10s 2025-01-29T18:08:44 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py 1 0 0.10s 2025-01-29T18:08:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py 3 0 0.10s 2025-01-29T18:08:32 20 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py 3 0 0.09s 2025-01-29T18:08:32 18 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py 1 0 0.09s 2025-01-29T18:08:44 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py 1 0 0.09s 2025-01-29T18:08:36 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py 1 0 0.09s 2025-01-29T18:08:45 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py 1 0 0.09s 2025-01-29T18:08:44 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py 1 0 0.09s 2025-01-29T18:08:44 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py 1 0 0.09s 2025-01-29T18:08:35 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 1 0 0.09s 2025-01-29T18:08:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py 1 0 0.09s 2025-01-29T18:08:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py 1 0 0.09s 2025-01-29T18:08:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py 1 0 0.09s 2025-01-29T18:08:30 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py 1 0 0.09s 2025-01-29T18:08:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py 1 0 0.09s 2025-01-29T18:08:45 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py 1 0 0.09s 2025-01-29T18:08:35 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py 1 0 0.09s 2025-01-29T18:08:45 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py 1 0 0.09s 2025-01-29T18:08:33 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py 1 0 0.09s 2025-01-29T18:08:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py 1 0 0.09s 2025-01-29T18:08:30 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py 1 0 0.09s 2025-01-29T18:08:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py 1 0 0.09s 2025-01-29T18:08:45 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py 1 0 0.09s 2025-01-29T18:08:45 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py 1 0 0.09s 2025-01-29T18:08:45 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py 1 0 0.08s 2025-01-29T18:08:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py 1 0 0.08s 2025-01-29T18:08:36 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py 1 0 0.08s 2025-01-29T18:08:36 12 +/opt/airflow/dags/meltano-dag.py 1 0 0.08s 2025-01-29T18:08:57 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py 1 0 0.08s 2025-01-29T18:08:45 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py 2 0 0.08s 2025-01-29T18:08:45 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py 1 0 0.08s 2025-01-29T18:08:32 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py 1 0 0.08s 2025-01-29T18:08:36 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py 1 0 0.08s 2025-01-29T18:08:45 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py 1 0 0.08s 2025-01-29T18:08:45 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py 1 0 0.08s 2025-01-29T18:08:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py 2 0 0.08s 2025-01-29T18:08:36 13 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py 1 0 0.08s 2025-01-29T18:08:35 12 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py 1 0 0.07s 2025-01-29T18:08:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py 1 0 0.07s 2025-01-29T18:08:35 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py 1 0 0.07s 2025-01-29T18:08:34 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py 1 0 0.07s 2025-01-29T18:08:32 10 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py 0 0 0.04s 2025-01-29T18:08:45 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py 0 0 0.04s 2025-01-29T18:08:45 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py 0 0 0.04s 2025-01-29T18:08:45 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py 0 0 0.03s 2025-01-29T18:08:45 3 +/home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py 0 0 0.03s 2025-01-29T18:08:45 3 +================================================================================ diff --git a/airflow-project/logs/scheduler/2025-01-29/meltano-dag.py.log b/airflow-project/logs/scheduler/2025-01-29/meltano-dag.py.log new file mode 100644 index 0000000000..27b5129a71 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/meltano-dag.py.log @@ -0,0 +1,43 @@ +[2025-01-29T18:06:53.916+0000] {processor.py:186} INFO - Started process (PID=688) to work on /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:06:53.917+0000] {processor.py:914} INFO - Processing file /opt/airflow/dags/meltano-dag.py for tasks to queue +[2025-01-29T18:06:53.918+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:53.918+0000] {dagbag.py:588} INFO - Filling up the DagBag from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:06:53.930+0000] {processor.py:925} INFO - DAG(s) 'meltano-daily-extraction' retrieved from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:06:54.027+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.026+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:meltano-daily-extraction +[2025-01-29T18:06:54.036+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.036+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:meltano-daily-extraction +[2025-01-29T18:06:54.049+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.049+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:meltano-daily-extraction +[2025-01-29T18:06:54.061+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.061+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:meltano-daily-extraction +[2025-01-29T18:06:54.072+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.072+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:meltano-daily-extraction +[2025-01-29T18:06:54.082+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.081+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:meltano-daily-extraction +[2025-01-29T18:06:54.095+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.094+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:meltano-daily-extraction +[2025-01-29T18:06:54.095+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.095+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:54.106+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.106+0000] {dag.py:3262} INFO - Creating ORM DAG for meltano-daily-extraction +[2025-01-29T18:06:54.113+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:54.113+0000] {dag.py:4180} INFO - Setting next_dagrun for meltano-daily-extraction to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:54.129+0000] {processor.py:208} INFO - Processing /opt/airflow/dags/meltano-dag.py took 0.219 seconds +[2025-01-29T18:07:25.010+0000] {processor.py:186} INFO - Started process (PID=758) to work on /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:07:25.022+0000] {processor.py:914} INFO - Processing file /opt/airflow/dags/meltano-dag.py for tasks to queue +[2025-01-29T18:07:25.024+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:25.024+0000] {dagbag.py:588} INFO - Filling up the DagBag from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:07:25.032+0000] {processor.py:925} INFO - DAG(s) 'meltano-daily-extraction' retrieved from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:07:25.049+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:25.049+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:25.066+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:25.066+0000] {dag.py:4180} INFO - Setting next_dagrun for meltano-daily-extraction to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:25.083+0000] {processor.py:208} INFO - Processing /opt/airflow/dags/meltano-dag.py took 0.077 seconds +[2025-01-29T18:07:56.091+0000] {processor.py:186} INFO - Started process (PID=822) to work on /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:07:56.093+0000] {processor.py:914} INFO - Processing file /opt/airflow/dags/meltano-dag.py for tasks to queue +[2025-01-29T18:07:56.095+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:56.095+0000] {dagbag.py:588} INFO - Filling up the DagBag from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:07:56.103+0000] {processor.py:925} INFO - DAG(s) 'meltano-daily-extraction' retrieved from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:07:56.120+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:56.120+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:56.137+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:56.137+0000] {dag.py:4180} INFO - Setting next_dagrun for meltano-daily-extraction to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:56.152+0000] {processor.py:208} INFO - Processing /opt/airflow/dags/meltano-dag.py took 0.066 seconds +[2025-01-29T18:08:26.827+0000] {processor.py:186} INFO - Started process (PID=886) to work on /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:08:26.837+0000] {processor.py:914} INFO - Processing file /opt/airflow/dags/meltano-dag.py for tasks to queue +[2025-01-29T18:08:26.839+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:26.839+0000] {dagbag.py:588} INFO - Filling up the DagBag from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:08:26.846+0000] {processor.py:925} INFO - DAG(s) 'meltano-daily-extraction' retrieved from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:08:26.864+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:26.863+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:26.881+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:26.881+0000] {dag.py:4180} INFO - Setting next_dagrun for meltano-daily-extraction to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:26.897+0000] {processor.py:208} INFO - Processing /opt/airflow/dags/meltano-dag.py took 0.075 seconds +[2025-01-29T18:08:57.791+0000] {processor.py:186} INFO - Started process (PID=950) to work on /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:08:57.793+0000] {processor.py:914} INFO - Processing file /opt/airflow/dags/meltano-dag.py for tasks to queue +[2025-01-29T18:08:57.795+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:57.795+0000] {dagbag.py:588} INFO - Filling up the DagBag from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:08:57.802+0000] {processor.py:925} INFO - DAG(s) 'meltano-daily-extraction' retrieved from /opt/airflow/dags/meltano-dag.py +[2025-01-29T18:08:57.819+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:57.819+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:57.837+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:57.837+0000] {dag.py:4180} INFO - Setting next_dagrun for meltano-daily-extraction to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:57.854+0000] {processor.py:208} INFO - Processing /opt/airflow/dags/meltano-dag.py took 0.068 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_bash_decorator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_bash_decorator.py.log new file mode 100644 index 0000000000..34c73db0ce --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_bash_decorator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:02.092+0000] {processor.py:186} INFO - Started process (PID=103) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:02:02.093+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:02:02.096+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.095+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:02:02.117+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:02:02.240+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.239+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_bash_decorator +[2025-01-29T18:02:02.249+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.248+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_bash_decorator +[2025-01-29T18:02:02.255+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.255+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_bash_decorator +[2025-01-29T18:02:02.261+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.261+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_bash_decorator +[2025-01-29T18:02:02.267+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.267+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_bash_decorator +[2025-01-29T18:02:02.273+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.273+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_bash_decorator +[2025-01-29T18:02:02.279+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.279+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_bash_decorator +[2025-01-29T18:02:02.280+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.280+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:02.293+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.293+0000] {dag.py:3262} INFO - Creating ORM DAG for example_bash_decorator +[2025-01-29T18:02:02.294+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.294+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:02:02.309+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.224 seconds +[2025-01-29T18:02:32.780+0000] {processor.py:186} INFO - Started process (PID=166) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:02:32.781+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:02:32.784+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.783+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:02:32.797+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:02:32.820+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.819+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:32.837+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.836+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:02:32.855+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.082 seconds +[2025-01-29T18:03:03.454+0000] {processor.py:186} INFO - Started process (PID=228) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:03:03.455+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:03:03.458+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.457+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:03:03.475+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:03:03.501+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.500+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:03.514+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.514+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:03:03.532+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.084 seconds +[2025-01-29T18:03:35.015+0000] {processor.py:186} INFO - Started process (PID=291) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:03:35.016+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:03:35.018+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.018+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:03:35.029+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:03:35.050+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.050+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.061+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.061+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:03:35.078+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.068 seconds +[2025-01-29T18:04:06.547+0000] {processor.py:186} INFO - Started process (PID=355) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:04:06.548+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:04:06.550+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.550+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:04:06.564+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:04:06.586+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.586+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:06.598+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.598+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:04:06.614+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.073 seconds +[2025-01-29T18:04:37.507+0000] {processor.py:186} INFO - Started process (PID=418) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:04:37.508+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:04:37.511+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.510+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:04:37.525+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:04:37.549+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.548+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:37.565+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.565+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:04:37.583+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.081 seconds +[2025-01-29T18:05:08.287+0000] {processor.py:186} INFO - Started process (PID=481) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:05:08.288+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:05:08.290+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.289+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:05:08.302+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:05:08.329+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.328+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.342+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.342+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:05:08.362+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.082 seconds +[2025-01-29T18:05:39.326+0000] {processor.py:186} INFO - Started process (PID=544) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:05:39.327+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:05:39.329+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.329+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:05:39.344+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:05:39.368+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.367+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:39.382+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.382+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:05:39.401+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.081 seconds +[2025-01-29T18:06:09.764+0000] {processor.py:186} INFO - Started process (PID=606) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:06:09.765+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:06:09.768+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.767+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:06:09.780+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:06:09.803+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.802+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:09.815+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.815+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:06:09.833+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.074 seconds +[2025-01-29T18:06:40.337+0000] {processor.py:186} INFO - Started process (PID=668) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:06:40.339+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:06:40.341+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.341+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:06:40.354+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:06:40.378+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.378+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:40.391+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.391+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:06:40.409+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.078 seconds +[2025-01-29T18:07:11.462+0000] {processor.py:186} INFO - Started process (PID=732) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:07:11.464+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:07:11.466+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.466+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:07:11.477+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:07:11.506+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.506+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:11.518+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.518+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:07:11.540+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.083 seconds +[2025-01-29T18:07:42.281+0000] {processor.py:186} INFO - Started process (PID=796) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:07:42.283+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:07:42.285+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.284+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:07:42.298+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:07:42.320+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.319+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:42.333+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.332+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:07:42.353+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.078 seconds +[2025-01-29T18:08:13.189+0000] {processor.py:186} INFO - Started process (PID=860) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:08:13.190+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:08:13.193+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.192+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:08:13.206+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:08:13.230+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.229+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:13.243+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.243+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:08:13.264+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.080 seconds +[2025-01-29T18:08:44.903+0000] {processor.py:186} INFO - Started process (PID=926) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:08:44.904+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:08:44.907+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.906+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:08:44.923+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:08:44.947+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.947+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:44.963+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.963+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:08:44.983+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.086 seconds +[2025-01-29T18:09:15.788+0000] {processor.py:186} INFO - Started process (PID=990) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:09:15.790+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py for tasks to queue +[2025-01-29T18:09:15.792+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.791+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:09:15.805+0000] {processor.py:925} INFO - DAG(s) 'example_bash_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py +[2025-01-29T18:09:15.827+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.826+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.837+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.837+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_decorator to None, run_after=None +[2025-01-29T18:09:15.854+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_decorator.py took 0.071 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_bash_operator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_bash_operator.py.log new file mode 100644 index 0000000000..cb9a76fc1a --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_bash_operator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:54.331+0000] {processor.py:186} INFO - Started process (PID=69) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:01:54.331+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:01:54.334+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.334+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:01:54.349+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:01:54.511+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.508+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_bash_operator +[2025-01-29T18:01:54.524+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.524+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_bash_operator +[2025-01-29T18:01:54.532+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.532+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_bash_operator +[2025-01-29T18:01:54.543+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.542+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_bash_operator +[2025-01-29T18:01:54.550+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.550+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_bash_operator +[2025-01-29T18:01:54.561+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.561+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_bash_operator +[2025-01-29T18:01:54.569+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.569+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_bash_operator +[2025-01-29T18:01:54.570+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.569+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:54.585+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.584+0000] {dag.py:3262} INFO - Creating ORM DAG for example_bash_operator +[2025-01-29T18:01:54.597+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.597+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:54.623+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.299 seconds +[2025-01-29T18:02:25.295+0000] {processor.py:186} INFO - Started process (PID=132) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:02:25.296+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:02:25.298+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.298+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:02:25.324+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:02:25.356+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.356+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:25.395+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.394+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:25.414+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.127 seconds +[2025-01-29T18:02:56.170+0000] {processor.py:186} INFO - Started process (PID=195) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:02:56.171+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:02:56.173+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.173+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:02:56.186+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:02:56.213+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.213+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:56.233+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.233+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:56.250+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.085 seconds +[2025-01-29T18:03:27.172+0000] {processor.py:186} INFO - Started process (PID=258) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:03:27.174+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:03:27.176+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.175+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:03:27.187+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:03:27.216+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.216+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:27.240+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.240+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:27.258+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.092 seconds +[2025-01-29T18:03:57.575+0000] {processor.py:186} INFO - Started process (PID=321) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:03:57.577+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:03:57.579+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.578+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:03:57.589+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:03:57.614+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.614+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:57.633+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.633+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:57.650+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.080 seconds +[2025-01-29T18:04:27.775+0000] {processor.py:186} INFO - Started process (PID=384) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:04:27.776+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:04:27.778+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.778+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:04:27.791+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:04:27.817+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.817+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:27.846+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.846+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:27.862+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.096 seconds +[2025-01-29T18:04:58.682+0000] {processor.py:186} INFO - Started process (PID=447) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:04:58.683+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:04:58.685+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.685+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:04:58.696+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:04:58.720+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.720+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:58.741+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.741+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:58.759+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.083 seconds +[2025-01-29T18:05:29.552+0000] {processor.py:186} INFO - Started process (PID=510) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:05:29.553+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:05:29.556+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.555+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:05:29.575+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:05:29.619+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.619+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:29.641+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.641+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:29.657+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.112 seconds +[2025-01-29T18:05:59.818+0000] {processor.py:186} INFO - Started process (PID=573) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:05:59.819+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:05:59.822+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.821+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:05:59.832+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:05:59.856+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.855+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:59.877+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.877+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:59.895+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.082 seconds +[2025-01-29T18:06:30.559+0000] {processor.py:186} INFO - Started process (PID=636) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:06:30.560+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:06:30.563+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.562+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:06:30.573+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:06:30.600+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.600+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:30.619+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.618+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:30.635+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.082 seconds +[2025-01-29T18:07:01.281+0000] {processor.py:186} INFO - Started process (PID=700) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:07:01.282+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:07:01.284+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.283+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:07:01.294+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:07:01.319+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.318+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:01.339+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.338+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:01.357+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.081 seconds +[2025-01-29T18:07:31.438+0000] {processor.py:186} INFO - Started process (PID=764) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:07:31.439+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:07:31.441+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.441+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:07:31.451+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:07:31.478+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.478+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:31.497+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.497+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:31.515+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.082 seconds +[2025-01-29T18:08:01.587+0000] {processor.py:186} INFO - Started process (PID=828) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:08:01.588+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:08:01.590+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.590+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:08:01.600+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:08:01.626+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.626+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:01.643+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.643+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:01.660+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.077 seconds +[2025-01-29T18:08:32.173+0000] {processor.py:186} INFO - Started process (PID=892) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:08:32.175+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:08:32.177+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.176+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:08:32.187+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:08:32.211+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.210+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:32.228+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.228+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:32.245+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.076 seconds +[2025-01-29T18:09:03.111+0000] {processor.py:186} INFO - Started process (PID=956) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:09:03.113+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py for tasks to queue +[2025-01-29T18:09:03.115+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.115+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:09:03.126+0000] {processor.py:925} INFO - DAG(s) 'example_bash_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py +[2025-01-29T18:09:03.151+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.151+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:03.169+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.169+0000] {dag.py:4180} INFO - Setting next_dagrun for example_bash_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:03.185+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_bash_operator.py took 0.079 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_datetime_operator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_datetime_operator.py.log new file mode 100644 index 0000000000..8a0c18446d --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_datetime_operator.py.log @@ -0,0 +1,159 @@ +[2025-01-29T18:01:54.661+0000] {processor.py:186} INFO - Started process (PID=71) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:01:54.662+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:01:54.665+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.665+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:01:54.683+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_2', 'example_branch_datetime_operator_3', 'example_branch_datetime_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:01:54.818+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.817+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_branch_datetime_operator_2 +[2025-01-29T18:01:54.829+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.829+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_branch_datetime_operator_2 +[2025-01-29T18:01:54.835+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.835+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_branch_datetime_operator_2 +[2025-01-29T18:01:54.843+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.842+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_branch_datetime_operator_2 +[2025-01-29T18:01:54.849+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.848+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_branch_datetime_operator_2 +[2025-01-29T18:01:54.855+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.855+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_branch_datetime_operator_2 +[2025-01-29T18:01:54.862+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.861+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_branch_datetime_operator_2 +[2025-01-29T18:01:54.874+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.874+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_branch_datetime_operator_3 +[2025-01-29T18:01:54.882+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.882+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_branch_datetime_operator_3 +[2025-01-29T18:01:54.889+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.888+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_branch_datetime_operator_3 +[2025-01-29T18:01:54.897+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.896+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_branch_datetime_operator_3 +[2025-01-29T18:01:54.903+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.903+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_branch_datetime_operator_3 +[2025-01-29T18:01:54.911+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.911+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_branch_datetime_operator_3 +[2025-01-29T18:01:54.917+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.917+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_branch_datetime_operator_3 +[2025-01-29T18:01:54.932+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.932+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_branch_datetime_operator +[2025-01-29T18:01:54.939+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.939+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_branch_datetime_operator +[2025-01-29T18:01:54.945+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.945+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_branch_datetime_operator +[2025-01-29T18:01:54.953+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.952+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_branch_datetime_operator +[2025-01-29T18:01:54.960+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.960+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_branch_datetime_operator +[2025-01-29T18:01:54.968+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.967+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_branch_datetime_operator +[2025-01-29T18:01:54.974+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.974+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_branch_datetime_operator +[2025-01-29T18:01:54.975+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.975+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:01:54.990+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.990+0000] {dag.py:3262} INFO - Creating ORM DAG for example_branch_datetime_operator +[2025-01-29T18:01:54.991+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.991+0000] {dag.py:3262} INFO - Creating ORM DAG for example_branch_datetime_operator_2 +[2025-01-29T18:01:54.991+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.991+0000] {dag.py:3262} INFO - Creating ORM DAG for example_branch_datetime_operator_3 +[2025-01-29T18:01:55.002+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.002+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:55.004+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.004+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:55.007+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.006+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:55.030+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.377 seconds +[2025-01-29T18:02:25.439+0000] {processor.py:186} INFO - Started process (PID=134) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:02:25.440+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:02:25.442+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.442+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:02:25.451+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_2', 'example_branch_datetime_operator_3', 'example_branch_datetime_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:02:25.475+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.475+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:02:25.493+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.493+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:25.497+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.497+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:25.499+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.498+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:25.514+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.081 seconds +[2025-01-29T18:02:56.275+0000] {processor.py:186} INFO - Started process (PID=197) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:02:56.277+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:02:56.278+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.278+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:02:56.302+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_2', 'example_branch_datetime_operator_3', 'example_branch_datetime_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:02:56.329+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.329+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:02:56.349+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.349+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:56.353+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.353+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:56.355+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.355+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:56.371+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.101 seconds +[2025-01-29T18:03:27.284+0000] {processor.py:186} INFO - Started process (PID=260) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:03:27.285+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:03:27.288+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.288+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:03:27.298+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_3', 'example_branch_datetime_operator_2', 'example_branch_datetime_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:03:27.322+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.322+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:03:27.345+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.345+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:27.350+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.349+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:27.351+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.351+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:27.368+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.089 seconds +[2025-01-29T18:03:57.678+0000] {processor.py:186} INFO - Started process (PID=323) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:03:57.680+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:03:57.682+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.682+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:03:57.692+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator', 'example_branch_datetime_operator_2', 'example_branch_datetime_operator_3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:03:57.716+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.716+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:03:57.737+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.737+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:57.742+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.741+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:57.743+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.743+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:57.759+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.086 seconds +[2025-01-29T18:04:27.888+0000] {processor.py:186} INFO - Started process (PID=386) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:04:27.890+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:04:27.892+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.892+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:04:27.903+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_2', 'example_branch_datetime_operator', 'example_branch_datetime_operator_3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:04:27.930+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.930+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:04:27.955+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.955+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:27.959+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.959+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:27.961+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.961+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:27.975+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.093 seconds +[2025-01-29T18:04:58.790+0000] {processor.py:186} INFO - Started process (PID=449) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:04:58.792+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:04:58.795+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.794+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:04:58.805+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator', 'example_branch_datetime_operator_3', 'example_branch_datetime_operator_2' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:04:58.835+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.835+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:04:58.856+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.856+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:58.861+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.861+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:58.864+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.864+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:58.879+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.095 seconds +[2025-01-29T18:05:29.681+0000] {processor.py:186} INFO - Started process (PID=512) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:05:29.683+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:05:29.685+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.685+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:05:29.695+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator', 'example_branch_datetime_operator_2', 'example_branch_datetime_operator_3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:05:29.716+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.716+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:05:29.741+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.741+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:29.745+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.745+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:29.747+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.747+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:29.763+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.087 seconds +[2025-01-29T18:05:59.921+0000] {processor.py:186} INFO - Started process (PID=575) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:05:59.923+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:05:59.925+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.924+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:05:59.933+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_3', 'example_branch_datetime_operator_2', 'example_branch_datetime_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:05:59.960+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.959+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:05:59.981+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.981+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:59.986+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.986+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:59.988+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.988+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:00.004+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.088 seconds +[2025-01-29T18:06:30.664+0000] {processor.py:186} INFO - Started process (PID=638) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:06:30.665+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:06:30.667+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.667+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:06:30.677+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_2', 'example_branch_datetime_operator_3', 'example_branch_datetime_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:06:30.702+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.701+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:06:30.721+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.721+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:30.726+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.725+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:30.728+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.728+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:30.747+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.089 seconds +[2025-01-29T18:07:01.381+0000] {processor.py:186} INFO - Started process (PID=702) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:07:01.382+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:07:01.385+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.384+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:07:01.394+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_3', 'example_branch_datetime_operator', 'example_branch_datetime_operator_2' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:07:01.418+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.418+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:07:01.437+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.437+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:01.441+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.441+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:01.443+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.442+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:01.458+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.082 seconds +[2025-01-29T18:07:31.542+0000] {processor.py:186} INFO - Started process (PID=766) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:07:31.544+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:07:31.546+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.546+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:07:31.557+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator', 'example_branch_datetime_operator_3', 'example_branch_datetime_operator_2' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:07:31.581+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.581+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:07:31.600+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.600+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:31.604+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.604+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:31.606+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.606+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:31.621+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.085 seconds +[2025-01-29T18:08:01.684+0000] {processor.py:186} INFO - Started process (PID=830) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:08:01.686+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:08:01.688+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.688+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:08:01.697+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_2', 'example_branch_datetime_operator', 'example_branch_datetime_operator_3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:08:01.721+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.721+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:08:01.742+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.742+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:01.746+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.746+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:01.749+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.749+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:01.766+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.086 seconds +[2025-01-29T18:08:32.269+0000] {processor.py:186} INFO - Started process (PID=894) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:08:32.271+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:08:32.273+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.273+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:08:32.284+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_3', 'example_branch_datetime_operator_2', 'example_branch_datetime_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:08:32.307+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.307+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:08:32.325+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.325+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:32.329+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.329+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:32.331+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.331+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:32.347+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.082 seconds +[2025-01-29T18:09:03.209+0000] {processor.py:186} INFO - Started process (PID=958) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:09:03.210+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py for tasks to queue +[2025-01-29T18:09:03.212+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.212+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:09:03.221+0000] {processor.py:925} INFO - DAG(s) 'example_branch_datetime_operator_2', 'example_branch_datetime_operator_3', 'example_branch_datetime_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py +[2025-01-29T18:09:03.245+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.245+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:09:03.266+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.265+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:03.272+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.272+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_2 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:03.274+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.274+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_datetime_operator_3 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:03.291+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_datetime_operator.py took 0.087 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_day_of_week_operator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_day_of_week_operator.py.log new file mode 100644 index 0000000000..8a1169d0ca --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_day_of_week_operator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:00.509+0000] {processor.py:186} INFO - Started process (PID=97) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:02:00.510+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:02:00.512+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.512+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:02:00.522+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:02:00.632+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.631+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_weekday_branch_operator +[2025-01-29T18:02:00.643+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.642+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_weekday_branch_operator +[2025-01-29T18:02:00.651+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.650+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_weekday_branch_operator +[2025-01-29T18:02:00.660+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.659+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_weekday_branch_operator +[2025-01-29T18:02:00.668+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.667+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_weekday_branch_operator +[2025-01-29T18:02:00.675+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.674+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_weekday_branch_operator +[2025-01-29T18:02:00.683+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.683+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_weekday_branch_operator +[2025-01-29T18:02:00.684+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.684+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:00.698+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.697+0000] {dag.py:3262} INFO - Creating ORM DAG for example_weekday_branch_operator +[2025-01-29T18:02:00.709+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.709+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:00.731+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.227 seconds +[2025-01-29T18:02:31.500+0000] {processor.py:186} INFO - Started process (PID=159) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:02:31.501+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:02:31.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.503+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:02:31.511+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:02:31.531+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.530+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:31.551+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.551+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:31.569+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.076 seconds +[2025-01-29T18:03:02.903+0000] {processor.py:186} INFO - Started process (PID=222) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:03:02.905+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:03:02.907+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.907+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:03:02.916+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:03:02.933+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.933+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:02.954+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.953+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:02.971+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.073 seconds +[2025-01-29T18:03:34.516+0000] {processor.py:186} INFO - Started process (PID=286) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:03:34.517+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:03:34.519+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.518+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:03:34.526+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:03:34.547+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.547+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:34.567+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.567+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:34.584+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.074 seconds +[2025-01-29T18:04:05.591+0000] {processor.py:186} INFO - Started process (PID=348) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:04:05.592+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:04:05.594+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.594+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:04:05.602+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:04:05.620+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.620+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:05.641+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.641+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:05.671+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.085 seconds +[2025-01-29T18:04:36.690+0000] {processor.py:186} INFO - Started process (PID=411) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:04:36.691+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:04:36.694+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.693+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:04:36.704+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:04:36.722+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.722+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:36.743+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.743+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:36.760+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.076 seconds +[2025-01-29T18:05:07.492+0000] {processor.py:186} INFO - Started process (PID=474) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:05:07.493+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:05:07.495+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.495+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:05:07.503+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:05:07.521+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.521+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:07.542+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.541+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:07.560+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.072 seconds +[2025-01-29T18:05:38.431+0000] {processor.py:186} INFO - Started process (PID=537) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:05:38.432+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:05:38.434+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.434+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:05:38.443+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:05:38.463+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.463+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:38.483+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.483+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:38.500+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.075 seconds +[2025-01-29T18:06:09.339+0000] {processor.py:186} INFO - Started process (PID=600) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:06:09.340+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:06:09.343+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.342+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:06:09.354+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:06:09.375+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.375+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:09.404+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.404+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:09.424+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.092 seconds +[2025-01-29T18:06:40.061+0000] {processor.py:186} INFO - Started process (PID=663) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:06:40.063+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:06:40.066+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.066+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:06:40.077+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:06:40.097+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.097+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:40.119+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.119+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:40.143+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.090 seconds +[2025-01-29T18:07:11.222+0000] {processor.py:186} INFO - Started process (PID=727) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:07:11.223+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:07:11.225+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.225+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:07:11.233+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:07:11.252+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.252+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:11.276+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.276+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:11.295+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.078 seconds +[2025-01-29T18:07:42.069+0000] {processor.py:186} INFO - Started process (PID=791) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:07:42.071+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:07:42.074+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.073+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:07:42.083+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:07:42.104+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.103+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:42.123+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.122+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:42.141+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.078 seconds +[2025-01-29T18:08:12.940+0000] {processor.py:186} INFO - Started process (PID=855) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:08:12.942+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:08:12.945+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.944+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:08:12.953+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:08:12.972+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.972+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:12.992+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.992+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:13.011+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.076 seconds +[2025-01-29T18:08:44.030+0000] {processor.py:186} INFO - Started process (PID=919) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:08:44.031+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:08:44.033+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.033+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:08:44.044+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:08:44.065+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.065+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:44.086+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.086+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:44.102+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.079 seconds +[2025-01-29T18:09:15.004+0000] {processor.py:186} INFO - Started process (PID=983) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:09:15.005+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py for tasks to queue +[2025-01-29T18:09:15.007+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.007+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:09:15.015+0000] {processor.py:925} INFO - DAG(s) 'example_weekday_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py +[2025-01-29T18:09:15.034+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.034+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.054+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.053+0000] {dag.py:4180} INFO - Setting next_dagrun for example_weekday_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:15.071+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_day_of_week_operator.py took 0.072 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_labels.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_labels.py.log new file mode 100644 index 0000000000..9681979770 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_labels.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:53.542+0000] {processor.py:186} INFO - Started process (PID=59) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:01:53.545+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:01:53.549+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.549+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:01:53.567+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:01:53.906+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.905+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_branch_labels +[2025-01-29T18:01:53.919+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.918+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_branch_labels +[2025-01-29T18:01:53.927+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.926+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_branch_labels +[2025-01-29T18:01:53.936+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.935+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_branch_labels +[2025-01-29T18:01:53.943+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.943+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_branch_labels +[2025-01-29T18:01:53.951+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.951+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_branch_labels +[2025-01-29T18:01:53.958+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.958+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_branch_labels +[2025-01-29T18:01:53.958+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.958+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:53.976+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.976+0000] {dag.py:3262} INFO - Creating ORM DAG for example_branch_labels +[2025-01-29T18:01:53.990+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.990+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:54.010+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.477 seconds +[2025-01-29T18:02:24.042+0000] {processor.py:186} INFO - Started process (PID=128) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:02:24.045+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:02:24.047+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:24.047+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:02:24.056+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:02:24.075+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:24.075+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:24.094+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:24.094+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:24.113+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.077 seconds +[2025-01-29T18:02:54.965+0000] {processor.py:186} INFO - Started process (PID=191) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:02:54.967+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:02:54.969+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:54.968+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:02:54.979+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:02:55.002+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:55.002+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:55.031+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:55.031+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:55.054+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.095 seconds +[2025-01-29T18:03:25.931+0000] {processor.py:186} INFO - Started process (PID=254) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:03:25.936+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:03:25.938+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:25.938+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:03:25.948+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:03:25.969+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:25.969+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:25.992+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:25.992+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:26.015+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.090 seconds +[2025-01-29T18:03:56.261+0000] {processor.py:186} INFO - Started process (PID=317) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:03:56.267+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:03:56.269+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:56.269+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:03:56.278+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:03:56.300+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:56.300+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:56.337+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:56.336+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:56.360+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.105 seconds +[2025-01-29T18:04:26.568+0000] {processor.py:186} INFO - Started process (PID=380) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:04:26.572+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:04:26.575+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:26.574+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:04:26.583+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:04:26.605+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:26.605+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:26.625+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:26.625+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:26.643+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.081 seconds +[2025-01-29T18:04:57.498+0000] {processor.py:186} INFO - Started process (PID=443) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:04:57.500+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:04:57.502+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:57.502+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:04:57.510+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:04:57.528+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:57.528+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:57.546+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:57.546+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:57.564+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.072 seconds +[2025-01-29T18:05:28.327+0000] {processor.py:186} INFO - Started process (PID=506) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:05:28.332+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:05:28.334+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:28.334+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:05:28.342+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:05:28.363+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:28.362+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:28.380+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:28.380+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:28.398+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.076 seconds +[2025-01-29T18:05:58.580+0000] {processor.py:186} INFO - Started process (PID=569) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:05:58.581+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:05:58.585+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:58.584+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:05:58.611+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:05:58.633+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:58.633+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:58.676+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:58.675+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:58.692+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.122 seconds +[2025-01-29T18:06:29.321+0000] {processor.py:186} INFO - Started process (PID=632) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:06:29.322+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:06:29.325+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:29.324+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:06:29.337+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:06:29.373+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:29.373+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:29.399+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:29.399+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:29.418+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.104 seconds +[2025-01-29T18:06:59.986+0000] {processor.py:186} INFO - Started process (PID=696) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:06:59.992+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:06:59.994+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:59.994+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:07:00.001+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:07:00.024+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:00.024+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:00.044+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:00.044+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:00.062+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.081 seconds +[2025-01-29T18:07:30.158+0000] {processor.py:186} INFO - Started process (PID=760) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:07:30.161+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:07:30.165+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:30.165+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:07:30.174+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:07:30.191+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:30.191+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:30.208+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:30.208+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:30.226+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.075 seconds +[2025-01-29T18:08:00.309+0000] {processor.py:186} INFO - Started process (PID=824) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:08:00.310+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:08:00.313+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:00.312+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:08:00.320+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:08:00.338+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:00.338+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:00.356+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:00.356+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:00.373+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.069 seconds +[2025-01-29T18:08:30.886+0000] {processor.py:186} INFO - Started process (PID=888) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:08:30.893+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:08:30.896+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:30.895+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:08:30.903+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:08:30.922+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:30.922+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:30.940+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:30.940+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:30.958+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.076 seconds +[2025-01-29T18:09:01.853+0000] {processor.py:186} INFO - Started process (PID=952) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:09:01.858+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py for tasks to queue +[2025-01-29T18:09:01.860+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:01.860+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:09:01.867+0000] {processor.py:925} INFO - DAG(s) 'example_branch_labels' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py +[2025-01-29T18:09:01.886+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:01.886+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:01.906+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:01.906+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_labels to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:01.927+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_labels.py took 0.079 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_operator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_operator.py.log new file mode 100644 index 0000000000..e9179eda21 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_operator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:57.316+0000] {processor.py:186} INFO - Started process (PID=83) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:01:57.317+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:01:57.319+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.319+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:01:57.343+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:01:57.463+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.462+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_branch_operator +[2025-01-29T18:01:57.473+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.472+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_branch_operator +[2025-01-29T18:01:57.479+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.479+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_branch_operator +[2025-01-29T18:01:57.487+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.486+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_branch_operator +[2025-01-29T18:01:57.495+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.495+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_branch_operator +[2025-01-29T18:01:57.502+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.501+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_branch_operator +[2025-01-29T18:01:57.508+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.508+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_branch_operator +[2025-01-29T18:01:57.508+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.508+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:57.522+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.522+0000] {dag.py:3262} INFO - Creating ORM DAG for example_branch_operator +[2025-01-29T18:01:57.533+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.533+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:57.553+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.245 seconds +[2025-01-29T18:02:28.155+0000] {processor.py:186} INFO - Started process (PID=146) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:02:28.156+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:02:28.158+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.157+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:02:28.186+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:02:28.215+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.215+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:28.236+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.236+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:28.254+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.105 seconds +[2025-01-29T18:02:59.032+0000] {processor.py:186} INFO - Started process (PID=209) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:02:59.034+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:02:59.037+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.037+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:02:59.074+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:02:59.111+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.111+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:59.142+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.142+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:59.173+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.149 seconds +[2025-01-29T18:03:29.825+0000] {processor.py:186} INFO - Started process (PID=271) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:03:29.826+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:03:29.828+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.828+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:03:29.842+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:03:29.865+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.865+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:29.882+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.882+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:29.899+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.080 seconds +[2025-01-29T18:04:00.178+0000] {processor.py:186} INFO - Started process (PID=334) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:04:00.179+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:04:00.182+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.181+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:04:00.196+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:04:00.220+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.220+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.238+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.238+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:00.255+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.083 seconds +[2025-01-29T18:04:30.421+0000] {processor.py:186} INFO - Started process (PID=397) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:04:30.422+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:04:30.424+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.423+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:04:30.436+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:04:30.461+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.460+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.479+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.478+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:30.493+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.078 seconds +[2025-01-29T18:05:01.322+0000] {processor.py:186} INFO - Started process (PID=460) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:05:01.324+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:05:01.326+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.326+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:05:01.344+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:05:01.376+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.376+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.399+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.399+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:01.428+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.112 seconds +[2025-01-29T18:05:32.259+0000] {processor.py:186} INFO - Started process (PID=523) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:05:32.260+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:05:32.263+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.262+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:05:32.276+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:05:32.301+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.300+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.321+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.321+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:32.341+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.088 seconds +[2025-01-29T18:06:02.477+0000] {processor.py:186} INFO - Started process (PID=586) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:06:02.478+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:06:02.480+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.480+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:06:02.494+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:06:02.517+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.517+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.537+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.537+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:02.555+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.083 seconds +[2025-01-29T18:06:33.228+0000] {processor.py:186} INFO - Started process (PID=649) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:06:33.230+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:06:33.231+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.231+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:06:33.245+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:06:33.269+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.268+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.288+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.288+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:33.304+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.089 seconds +[2025-01-29T18:07:03.942+0000] {processor.py:186} INFO - Started process (PID=713) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:07:03.943+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:07:03.945+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:03.945+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:07:03.960+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:07:03.983+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:03.983+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:04.006+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.006+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:04.023+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.087 seconds +[2025-01-29T18:07:34.158+0000] {processor.py:186} INFO - Started process (PID=777) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:07:34.160+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:07:34.162+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.161+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:07:34.176+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:07:34.201+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.201+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.222+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.221+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:34.241+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.089 seconds +[2025-01-29T18:08:05.183+0000] {processor.py:186} INFO - Started process (PID=841) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:08:05.185+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:08:05.187+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.187+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:08:05.204+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:08:05.228+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.228+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.245+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.245+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:05.262+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.084 seconds +[2025-01-29T18:08:35.679+0000] {processor.py:186} INFO - Started process (PID=905) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:08:35.681+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:08:35.683+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.683+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:08:35.696+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:08:35.720+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.719+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:35.737+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.737+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:35.753+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.081 seconds +[2025-01-29T18:09:05.842+0000] {processor.py:186} INFO - Started process (PID=969) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:09:05.843+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py for tasks to queue +[2025-01-29T18:09:05.845+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.845+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:09:05.858+0000] {processor.py:925} INFO - DAG(s) 'example_branch_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py +[2025-01-29T18:09:05.880+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.880+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:05.897+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.897+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:05.912+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator.py took 0.074 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_operator_decorator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_operator_decorator.py.log new file mode 100644 index 0000000000..ce20ce37d3 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_operator_decorator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:02.467+0000] {processor.py:186} INFO - Started process (PID=106) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:02:02.468+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:02:02.471+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.470+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:02:02.496+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:02:02.611+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.610+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_branch_python_operator_decorator +[2025-01-29T18:02:02.621+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.621+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_branch_python_operator_decorator +[2025-01-29T18:02:02.629+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.628+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_branch_python_operator_decorator +[2025-01-29T18:02:02.637+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.637+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_branch_python_operator_decorator +[2025-01-29T18:02:02.644+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.644+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_branch_python_operator_decorator +[2025-01-29T18:02:02.651+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.651+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_branch_python_operator_decorator +[2025-01-29T18:02:02.658+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.658+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_branch_python_operator_decorator +[2025-01-29T18:02:02.659+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.658+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:02.672+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.672+0000] {dag.py:3262} INFO - Creating ORM DAG for example_branch_python_operator_decorator +[2025-01-29T18:02:02.684+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.684+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:02.703+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.242 seconds +[2025-01-29T18:02:33.112+0000] {processor.py:186} INFO - Started process (PID=169) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:02:33.113+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:02:33.116+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.116+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:02:33.136+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:02:33.164+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.164+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:33.188+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.188+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:33.207+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.100 seconds +[2025-01-29T18:03:04.019+0000] {processor.py:186} INFO - Started process (PID=232) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:03:04.020+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:03:04.022+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.022+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:03:04.040+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:03:04.068+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.068+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:04.090+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.090+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:04.114+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.101 seconds +[2025-01-29T18:03:35.378+0000] {processor.py:186} INFO - Started process (PID=295) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:03:35.379+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:03:35.381+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.381+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:03:35.400+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:03:35.430+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.430+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.451+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.450+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:35.469+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.097 seconds +[2025-01-29T18:04:06.734+0000] {processor.py:186} INFO - Started process (PID=358) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:04:06.735+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:04:06.737+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.737+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:04:06.754+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:04:06.779+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.778+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:06.803+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.802+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:06.823+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.096 seconds +[2025-01-29T18:04:37.612+0000] {processor.py:186} INFO - Started process (PID=420) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:04:37.613+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:04:37.616+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.615+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:04:37.634+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:04:37.662+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.662+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:37.683+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.683+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:37.701+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.095 seconds +[2025-01-29T18:05:08.483+0000] {processor.py:186} INFO - Started process (PID=484) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:05:08.485+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:05:08.486+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.486+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:05:08.504+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:05:08.531+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.531+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.553+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.553+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:08.572+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.095 seconds +[2025-01-29T18:05:39.700+0000] {processor.py:186} INFO - Started process (PID=547) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:05:39.701+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:05:39.703+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.703+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:05:39.720+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:05:39.746+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.746+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:39.765+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.764+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:39.783+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.088 seconds +[2025-01-29T18:06:10.460+0000] {processor.py:186} INFO - Started process (PID=610) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:06:10.462+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:06:10.464+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.464+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:06:10.491+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:06:10.524+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.523+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.556+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.556+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:10.575+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.124 seconds +[2025-01-29T18:06:40.965+0000] {processor.py:186} INFO - Started process (PID=673) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:06:40.966+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:06:40.969+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.969+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:06:40.991+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:06:41.022+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.021+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:41.039+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.039+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:41.055+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.097 seconds +[2025-01-29T18:07:12.199+0000] {processor.py:186} INFO - Started process (PID=737) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:07:12.200+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:07:12.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.202+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:07:12.218+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:07:12.246+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.246+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.264+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.264+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:12.281+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.087 seconds +[2025-01-29T18:07:43.225+0000] {processor.py:186} INFO - Started process (PID=801) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:07:43.226+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:07:43.230+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.229+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:07:43.249+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:07:43.275+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.275+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.297+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.297+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:43.314+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.096 seconds +[2025-01-29T18:08:14.124+0000] {processor.py:186} INFO - Started process (PID=865) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:08:14.125+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:08:14.127+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.127+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:08:14.146+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:08:14.174+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.174+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.197+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.197+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:14.216+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.098 seconds +[2025-01-29T18:08:45.079+0000] {processor.py:186} INFO - Started process (PID=929) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:08:45.081+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:08:45.083+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.082+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:08:45.100+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:08:45.128+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.128+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.152+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.152+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:45.171+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.098 seconds +[2025-01-29T18:09:15.919+0000] {processor.py:186} INFO - Started process (PID=993) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:09:15.921+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py for tasks to queue +[2025-01-29T18:09:15.923+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.923+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:09:15.941+0000] {processor.py:925} INFO - DAG(s) 'example_branch_python_operator_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py +[2025-01-29T18:09:15.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.964+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.986+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.986+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_python_operator_decorator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:16.009+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_operator_decorator.py took 0.094 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_python_dop_operator_3.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_python_dop_operator_3.py.log new file mode 100644 index 0000000000..681ef4baf3 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_branch_python_dop_operator_3.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:56.151+0000] {processor.py:186} INFO - Started process (PID=78) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:01:56.152+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:01:56.154+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.154+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:01:56.165+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:01:56.264+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.263+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_branch_dop_operator_v3 +[2025-01-29T18:01:56.273+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.273+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_branch_dop_operator_v3 +[2025-01-29T18:01:56.280+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.279+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_branch_dop_operator_v3 +[2025-01-29T18:01:56.287+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.287+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_branch_dop_operator_v3 +[2025-01-29T18:01:56.294+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.293+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_branch_dop_operator_v3 +[2025-01-29T18:01:56.301+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.301+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_branch_dop_operator_v3 +[2025-01-29T18:01:56.308+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.307+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_branch_dop_operator_v3 +[2025-01-29T18:01:56.308+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.308+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:56.323+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.322+0000] {dag.py:3262} INFO - Creating ORM DAG for example_branch_dop_operator_v3 +[2025-01-29T18:01:56.335+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.335+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:00:00+00:00, run_after=2025-01-29 18:01:00+00:00 +[2025-01-29T18:01:56.352+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.208 seconds +[2025-01-29T18:02:26.736+0000] {processor.py:186} INFO - Started process (PID=140) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:02:26.738+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:02:26.740+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.739+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:02:26.747+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:02:26.764+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.764+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:26.785+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.785+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:01:00+00:00, run_after=2025-01-29 18:02:00+00:00 +[2025-01-29T18:02:26.801+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.071 seconds +[2025-01-29T18:02:57.610+0000] {processor.py:186} INFO - Started process (PID=203) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:02:57.611+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:02:57.613+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.613+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:02:57.621+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:02:57.642+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.642+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:57.671+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.671+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:01:00+00:00, run_after=2025-01-29 18:02:00+00:00 +[2025-01-29T18:02:57.688+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.084 seconds +[2025-01-29T18:03:28.592+0000] {processor.py:186} INFO - Started process (PID=266) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:03:28.593+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:03:28.595+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.595+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:03:28.603+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:03:28.620+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.620+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:28.638+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.638+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:02:00+00:00, run_after=2025-01-29 18:03:00+00:00 +[2025-01-29T18:03:28.659+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.073 seconds +[2025-01-29T18:03:58.973+0000] {processor.py:186} INFO - Started process (PID=329) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:03:58.975+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:03:58.978+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:58.978+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:03:58.987+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:03:59.005+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:59.004+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:59.023+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:59.023+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:02:00+00:00, run_after=2025-01-29 18:03:00+00:00 +[2025-01-29T18:03:59.042+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.075 seconds +[2025-01-29T18:04:29.198+0000] {processor.py:186} INFO - Started process (PID=392) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:04:29.200+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:04:29.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.202+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:04:29.213+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:04:29.235+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.235+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:29.262+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.261+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:03:00+00:00, run_after=2025-01-29 18:04:00+00:00 +[2025-01-29T18:04:29.279+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.087 seconds +[2025-01-29T18:05:00.114+0000] {processor.py:186} INFO - Started process (PID=455) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:05:00.115+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:05:00.117+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.117+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:05:00.125+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:05:00.143+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.142+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:00.162+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.162+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:04:00+00:00, run_after=2025-01-29 18:05:00+00:00 +[2025-01-29T18:05:00.179+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.070 seconds +[2025-01-29T18:05:31.011+0000] {processor.py:186} INFO - Started process (PID=518) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:05:31.012+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:05:31.014+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:31.014+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:05:31.025+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:05:31.045+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:31.045+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:31.075+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:31.075+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:04:00+00:00, run_after=2025-01-29 18:05:00+00:00 +[2025-01-29T18:05:31.098+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.092 seconds +[2025-01-29T18:06:01.240+0000] {processor.py:186} INFO - Started process (PID=581) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:06:01.242+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:06:01.244+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.243+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:06:01.254+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:06:01.276+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.276+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:01.300+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.300+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:05:00+00:00, run_after=2025-01-29 18:06:00+00:00 +[2025-01-29T18:06:01.330+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.097 seconds +[2025-01-29T18:06:31.966+0000] {processor.py:186} INFO - Started process (PID=644) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:06:31.968+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:06:31.971+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:31.970+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:06:31.979+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:06:31.998+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:31.997+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:32.017+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:32.017+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:05:00+00:00, run_after=2025-01-29 18:06:00+00:00 +[2025-01-29T18:06:32.053+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.093 seconds +[2025-01-29T18:07:02.722+0000] {processor.py:186} INFO - Started process (PID=708) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:07:02.723+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:07:02.725+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.725+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:07:02.734+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:07:02.756+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.756+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:02.778+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.778+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:06:00+00:00, run_after=2025-01-29 18:07:00+00:00 +[2025-01-29T18:07:02.797+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.081 seconds +[2025-01-29T18:07:32.841+0000] {processor.py:186} INFO - Started process (PID=772) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:07:32.843+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:07:32.844+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.844+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:07:32.852+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:07:32.870+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.869+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:32.888+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.888+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:06:00+00:00, run_after=2025-01-29 18:07:00+00:00 +[2025-01-29T18:07:32.904+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.067 seconds +[2025-01-29T18:08:03.897+0000] {processor.py:186} INFO - Started process (PID=836) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:08:03.899+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:08:03.902+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:03.901+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:08:03.909+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:08:03.928+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:03.928+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:03.946+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:03.946+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:07:00+00:00, run_after=2025-01-29 18:08:00+00:00 +[2025-01-29T18:08:03.963+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.072 seconds +[2025-01-29T18:08:34.479+0000] {processor.py:186} INFO - Started process (PID=900) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:08:34.491+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:08:34.493+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:34.492+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:08:34.501+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:08:34.519+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:34.519+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:34.539+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:34.539+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:07:00+00:00, run_after=2025-01-29 18:08:00+00:00 +[2025-01-29T18:08:34.559+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.085 seconds +[2025-01-29T18:09:05.506+0000] {processor.py:186} INFO - Started process (PID=964) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:09:05.508+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py for tasks to queue +[2025-01-29T18:09:05.510+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.510+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:09:05.519+0000] {processor.py:925} INFO - DAG(s) 'example_branch_dop_operator_v3' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py +[2025-01-29T18:09:05.541+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.541+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:05.562+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.562+0000] {dag.py:4180} INFO - Setting next_dagrun for example_branch_dop_operator_v3 to 2025-01-29 18:08:00+00:00, run_after=2025-01-29 18:09:00+00:00 +[2025-01-29T18:09:05.580+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py took 0.079 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_complex.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_complex.py.log new file mode 100644 index 0000000000..1144a13e89 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_complex.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:03.250+0000] {processor.py:186} INFO - Started process (PID=112) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:02:03.251+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:02:03.253+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.253+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:02:03.267+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:02:03.392+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.391+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_complex +[2025-01-29T18:02:03.402+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.402+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_complex +[2025-01-29T18:02:03.410+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.409+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_complex +[2025-01-29T18:02:03.418+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.417+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_complex +[2025-01-29T18:02:03.426+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.426+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_complex +[2025-01-29T18:02:03.432+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.432+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_complex +[2025-01-29T18:02:03.439+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.438+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_complex +[2025-01-29T18:02:03.439+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.439+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:03.454+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.454+0000] {dag.py:3262} INFO - Creating ORM DAG for example_complex +[2025-01-29T18:02:03.455+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.455+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:02:03.472+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.228 seconds +[2025-01-29T18:02:34.440+0000] {processor.py:186} INFO - Started process (PID=175) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:02:34.442+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:02:34.444+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.444+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:02:34.458+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:02:34.495+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.495+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:34.512+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.511+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:02:34.535+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.103 seconds +[2025-01-29T18:03:05.443+0000] {processor.py:186} INFO - Started process (PID=238) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:03:05.447+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:03:05.449+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.448+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:03:05.460+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:03:05.489+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.489+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:05.500+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.500+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:03:05.516+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.078 seconds +[2025-01-29T18:03:35.749+0000] {processor.py:186} INFO - Started process (PID=301) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:03:35.751+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:03:35.753+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.752+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:03:35.763+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:03:35.788+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.788+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.800+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.800+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:03:35.818+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.075 seconds +[2025-01-29T18:04:07.095+0000] {processor.py:186} INFO - Started process (PID=364) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:04:07.097+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:04:07.099+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.099+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:04:07.109+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:04:07.137+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.137+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:07.149+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.148+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:04:07.166+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.076 seconds +[2025-01-29T18:04:38.010+0000] {processor.py:186} INFO - Started process (PID=427) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:04:38.011+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:04:38.014+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.013+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:04:38.024+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:04:38.049+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.049+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:38.062+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.061+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:04:38.079+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.075 seconds +[2025-01-29T18:05:08.800+0000] {processor.py:186} INFO - Started process (PID=490) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:05:08.802+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:05:08.805+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.805+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:05:08.818+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:05:08.847+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.847+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.862+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.862+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:05:08.884+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.089 seconds +[2025-01-29T18:05:40.062+0000] {processor.py:186} INFO - Started process (PID=553) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:05:40.063+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:05:40.064+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.064+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:05:40.073+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:05:40.098+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.098+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:40.109+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.109+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:05:40.127+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.070 seconds +[2025-01-29T18:06:10.791+0000] {processor.py:186} INFO - Started process (PID=616) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:06:10.792+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:06:10.794+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.794+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:06:10.805+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:06:10.835+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.835+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.848+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.848+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:06:10.866+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.079 seconds +[2025-01-29T18:06:41.418+0000] {processor.py:186} INFO - Started process (PID=679) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:06:41.419+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:06:41.421+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.421+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:06:41.431+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:06:41.459+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.459+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:41.473+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.473+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:06:41.489+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.076 seconds +[2025-01-29T18:07:12.583+0000] {processor.py:186} INFO - Started process (PID=743) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:07:12.584+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:07:12.586+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.586+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:07:12.596+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:07:12.630+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.629+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.643+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.643+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:07:12.660+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.082 seconds +[2025-01-29T18:07:43.592+0000] {processor.py:186} INFO - Started process (PID=807) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:07:43.594+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:07:43.596+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.596+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:07:43.606+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:07:43.634+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.634+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.651+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.651+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:07:43.674+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.087 seconds +[2025-01-29T18:08:14.404+0000] {processor.py:186} INFO - Started process (PID=871) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:08:14.406+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:08:14.408+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.408+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:08:14.422+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:08:14.451+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.450+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.463+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.463+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:08:14.482+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.085 seconds +[2025-01-29T18:08:45.379+0000] {processor.py:186} INFO - Started process (PID=935) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:08:45.381+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:08:45.383+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.382+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:08:45.392+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:08:45.419+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.419+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.432+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.432+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:08:45.450+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.076 seconds +[2025-01-29T18:09:16.283+0000] {processor.py:186} INFO - Started process (PID=999) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:09:16.284+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py for tasks to queue +[2025-01-29T18:09:16.286+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.286+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:09:16.295+0000] {processor.py:925} INFO - DAG(s) 'example_complex' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py +[2025-01-29T18:09:16.321+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.320+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:16.332+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.331+0000] {dag.py:4180} INFO - Setting next_dagrun for example_complex to None, run_after=None +[2025-01-29T18:09:16.347+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_complex.py took 0.069 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dag_decorator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dag_decorator.py.log new file mode 100644 index 0000000000..736c5a7dd5 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dag_decorator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:02.338+0000] {processor.py:186} INFO - Started process (PID=105) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:02:02.339+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:02:02.342+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.341+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:02:02.355+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:02:02.463+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.462+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_dag_decorator +[2025-01-29T18:02:02.475+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.474+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_dag_decorator +[2025-01-29T18:02:02.481+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.481+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_dag_decorator +[2025-01-29T18:02:02.490+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.489+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_dag_decorator +[2025-01-29T18:02:02.498+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.498+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_dag_decorator +[2025-01-29T18:02:02.505+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.504+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_dag_decorator +[2025-01-29T18:02:02.511+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.511+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_dag_decorator +[2025-01-29T18:02:02.512+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.511+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:02.524+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.524+0000] {dag.py:3262} INFO - Creating ORM DAG for example_dag_decorator +[2025-01-29T18:02:02.525+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.525+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:02:02.541+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.209 seconds +[2025-01-29T18:02:33.011+0000] {processor.py:186} INFO - Started process (PID=168) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:02:33.012+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:02:33.015+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.014+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:02:33.028+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:02:33.133+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.133+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:33.146+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.146+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:02:33.171+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.167 seconds +[2025-01-29T18:03:03.813+0000] {processor.py:186} INFO - Started process (PID=231) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:03:03.815+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:03:03.819+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.818+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:03:03.831+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:03:03.952+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.952+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:03.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.965+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:03:03.988+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.181 seconds +[2025-01-29T18:03:35.199+0000] {processor.py:186} INFO - Started process (PID=294) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:03:35.200+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:03:35.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.202+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:03:35.213+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:03:35.319+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.319+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.332+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.332+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:03:35.351+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.159 seconds +[2025-01-29T18:04:06.726+0000] {processor.py:186} INFO - Started process (PID=357) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:04:06.728+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:04:06.731+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.730+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:04:06.741+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:04:06.848+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.848+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:06.860+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.860+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:04:06.881+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.161 seconds +[2025-01-29T18:04:37.679+0000] {processor.py:186} INFO - Started process (PID=421) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:04:37.680+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:04:37.682+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.682+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:04:37.693+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:04:37.787+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.787+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:37.798+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.798+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:04:37.815+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.142 seconds +[2025-01-29T18:05:08.415+0000] {processor.py:186} INFO - Started process (PID=483) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:05:08.416+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:05:08.418+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.418+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:05:08.429+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:05:08.528+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.527+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.539+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.539+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:05:08.558+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.149 seconds +[2025-01-29T18:05:39.530+0000] {processor.py:186} INFO - Started process (PID=546) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:05:39.531+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:05:39.534+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.533+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:05:39.546+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:05:39.642+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.641+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:39.654+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.654+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:05:39.676+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.154 seconds +[2025-01-29T18:06:10.262+0000] {processor.py:186} INFO - Started process (PID=609) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:06:10.264+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:06:10.266+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.265+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:06:10.275+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:06:10.382+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.382+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.403+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.403+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:06:10.430+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.173 seconds +[2025-01-29T18:06:40.519+0000] {processor.py:186} INFO - Started process (PID=671) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:06:40.521+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:06:40.523+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.523+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:06:40.537+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:06:40.635+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.634+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:40.647+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.647+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:06:40.668+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.155 seconds +[2025-01-29T18:07:12.143+0000] {processor.py:186} INFO - Started process (PID=736) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:07:12.144+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:07:12.147+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.146+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:07:12.161+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:07:12.254+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.253+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.264+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.264+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:07:12.282+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.145 seconds +[2025-01-29T18:07:43.158+0000] {processor.py:186} INFO - Started process (PID=800) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:07:43.160+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:07:43.162+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.162+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:07:43.177+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:07:43.201+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.201+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.216+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.215+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:07:43.233+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.081 seconds +[2025-01-29T18:08:13.962+0000] {processor.py:186} INFO - Started process (PID=864) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:08:13.963+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:08:13.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.965+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:08:13.977+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:08:14.067+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.066+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.077+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.076+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:08:14.094+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.137 seconds +[2025-01-29T18:08:45.012+0000] {processor.py:186} INFO - Started process (PID=928) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:08:45.014+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:08:45.017+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.016+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:08:45.030+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:08:45.129+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.129+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.140+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.140+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:08:45.160+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.155 seconds +[2025-01-29T18:09:15.878+0000] {processor.py:186} INFO - Started process (PID=992) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:09:15.879+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py for tasks to queue +[2025-01-29T18:09:15.881+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.881+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:09:15.891+0000] {processor.py:925} INFO - DAG(s) 'example_dag_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py +[2025-01-29T18:09:15.983+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.983+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.993+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.992+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dag_decorator to None, run_after=None +[2025-01-29T18:09:16.013+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dag_decorator.py took 0.139 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dataset_alias.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dataset_alias.py.log new file mode 100644 index 0000000000..8d5cc3617a --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dataset_alias.py.log @@ -0,0 +1,182 @@ +[2025-01-29T18:01:55.152+0000] {processor.py:186} INFO - Started process (PID=74) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:01:55.153+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:01:55.156+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.155+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:01:56.923+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_producer', 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_producer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:01:57.018+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.017+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_alias_example_alias_producer +[2025-01-29T18:01:57.028+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.027+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_alias_example_alias_producer +[2025-01-29T18:01:57.036+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.035+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_alias_example_alias_producer +[2025-01-29T18:01:57.045+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.044+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_alias_example_alias_producer +[2025-01-29T18:01:57.052+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.051+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_alias_example_alias_producer +[2025-01-29T18:01:57.060+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.059+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_alias_example_alias_producer +[2025-01-29T18:01:57.068+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.067+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_alias_example_alias_producer +[2025-01-29T18:01:57.083+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.083+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_alias_example_alias_consumer +[2025-01-29T18:01:57.091+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.091+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_alias_example_alias_consumer +[2025-01-29T18:01:57.099+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.099+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_alias_example_alias_consumer +[2025-01-29T18:01:57.109+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.108+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_alias_example_alias_consumer +[2025-01-29T18:01:57.116+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.116+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_alias_example_alias_consumer +[2025-01-29T18:01:57.128+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.128+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_alias_example_alias_consumer +[2025-01-29T18:01:57.138+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.137+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_alias_example_alias_consumer +[2025-01-29T18:01:57.152+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.151+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_s3_bucket_producer +[2025-01-29T18:01:57.159+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.158+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_s3_bucket_producer +[2025-01-29T18:01:57.166+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.165+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_s3_bucket_producer +[2025-01-29T18:01:57.174+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.174+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_s3_bucket_producer +[2025-01-29T18:01:57.181+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.181+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_s3_bucket_producer +[2025-01-29T18:01:57.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.188+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_s3_bucket_producer +[2025-01-29T18:01:57.194+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.194+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_s3_bucket_producer +[2025-01-29T18:01:57.206+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.205+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_s3_bucket_consumer +[2025-01-29T18:01:57.212+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.211+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_s3_bucket_consumer +[2025-01-29T18:01:57.222+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.221+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_s3_bucket_consumer +[2025-01-29T18:01:57.229+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.229+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_s3_bucket_consumer +[2025-01-29T18:01:57.236+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.235+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_s3_bucket_consumer +[2025-01-29T18:01:57.243+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.242+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_s3_bucket_consumer +[2025-01-29T18:01:57.250+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.249+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_s3_bucket_consumer +[2025-01-29T18:01:57.251+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.250+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:01:57.265+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.264+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_s3_bucket_consumer +[2025-01-29T18:01:57.266+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.266+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_alias_example_alias_producer +[2025-01-29T18:01:57.266+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.266+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_alias_example_alias_consumer +[2025-01-29T18:01:57.267+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.267+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_s3_bucket_producer +[2025-01-29T18:01:57.276+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.276+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:01:57.277+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.277+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:01:57.278+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.278+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:01:57.279+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.278+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:01:57.310+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 2.165 seconds +[2025-01-29T18:02:27.932+0000] {processor.py:186} INFO - Started process (PID=143) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:02:27.943+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:02:27.945+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:27.945+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:02:28.513+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_producer', 'dataset_alias_example_alias_consumer', 'dataset_alias_example_alias_producer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:02:28.536+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.534+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:02:28.555+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.555+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:02:28.558+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.557+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:02:28.559+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.559+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:02:28.560+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.560+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:02:28.580+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.653 seconds +[2025-01-29T18:02:58.752+0000] {processor.py:186} INFO - Started process (PID=206) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:02:58.767+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:02:58.770+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:58.769+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:02:59.618+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_consumer', 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_producer', 'dataset_alias_example_alias_producer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:02:59.655+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.652+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:02:59.689+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.688+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:02:59.694+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.694+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:02:59.696+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.696+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:02:59.698+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.698+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:02:59.735+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 1.002 seconds +[2025-01-29T18:03:30.127+0000] {processor.py:186} INFO - Started process (PID=275) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:03:30.128+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:03:30.131+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.131+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:03:30.685+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_producer', 'dataset_s3_bucket_producer', 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:03:30.717+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.717+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:03:30.735+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.735+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:03:30.738+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.738+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:03:30.739+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.739+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:03:30.740+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.740+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:03:30.760+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.641 seconds +[2025-01-29T18:04:00.792+0000] {processor.py:186} INFO - Started process (PID=343) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:04:00.793+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:04:00.795+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.795+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:04:01.218+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_producer', 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_producer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:04:01.235+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:01.235+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:04:01.251+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:01.251+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:04:01.253+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:01.253+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:04:01.254+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:01.254+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:04:01.256+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:01.255+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:04:01.277+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.490 seconds +[2025-01-29T18:04:31.939+0000] {processor.py:186} INFO - Started process (PID=407) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:04:31.941+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:04:31.943+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:31.943+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:04:32.400+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_producer', 'dataset_alias_example_alias_producer', 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:04:32.419+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:32.418+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:04:32.435+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:32.435+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:04:32.437+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:32.437+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:04:32.438+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:32.438+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:04:32.439+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:32.439+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:04:32.458+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.525 seconds +[2025-01-29T18:05:02.839+0000] {processor.py:186} INFO - Started process (PID=470) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:05:02.841+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:05:02.845+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:02.844+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:05:03.323+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_producer', 'dataset_alias_example_alias_producer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:05:03.340+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:03.339+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:05:03.357+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:03.357+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:05:03.359+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:03.359+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:05:03.360+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:03.360+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:05:03.361+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:03.361+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:05:03.380+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.546 seconds +[2025-01-29T18:05:33.723+0000] {processor.py:186} INFO - Started process (PID=533) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:05:33.734+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:05:33.737+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:33.736+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:05:34.142+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_producer', 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_consumer', 'dataset_alias_example_alias_producer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:05:34.159+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:34.158+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:05:34.175+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:34.175+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:05:34.177+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:34.177+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:05:34.178+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:34.178+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:05:34.179+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:34.179+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:05:34.198+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.482 seconds +[2025-01-29T18:06:05.073+0000] {processor.py:186} INFO - Started process (PID=596) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:06:05.085+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:06:05.087+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:05.086+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:06:05.572+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_consumer', 'dataset_alias_example_alias_producer', 'dataset_s3_bucket_consumer', 'dataset_s3_bucket_producer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:06:05.596+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:05.595+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:06:05.615+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:05.615+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:06:05.618+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:05.618+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:06:05.621+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:05.621+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:06:05.622+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:05.622+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:06:05.660+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.593 seconds +[2025-01-29T18:06:35.781+0000] {processor.py:186} INFO - Started process (PID=659) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:06:35.792+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:06:35.794+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:35.793+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:06:36.291+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_consumer', 'dataset_alias_example_alias_producer', 'dataset_s3_bucket_producer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:06:36.309+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:36.308+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:06:36.326+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:36.325+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:06:36.328+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:36.327+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:06:36.329+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:36.329+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:06:36.330+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:36.329+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:06:36.358+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.584 seconds +[2025-01-29T18:07:06.494+0000] {processor.py:186} INFO - Started process (PID=723) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:07:06.506+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:07:06.508+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:06.508+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:07:06.904+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_producer', 'dataset_alias_example_alias_producer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:07:06.921+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:06.920+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:07:06.935+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:06.935+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:07:06.937+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:06.937+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:07:06.938+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:06.938+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:07:06.939+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:06.939+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:07:06.973+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.484 seconds +[2025-01-29T18:07:37.756+0000] {processor.py:186} INFO - Started process (PID=787) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:07:37.759+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:07:37.761+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:37.760+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:07:38.172+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_consumer', 'dataset_alias_example_alias_producer', 'dataset_s3_bucket_producer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:07:38.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:38.189+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:07:38.204+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:38.204+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:07:38.207+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:38.206+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:07:38.208+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:38.208+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:07:38.209+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:38.209+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:07:38.238+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.488 seconds +[2025-01-29T18:08:08.746+0000] {processor.py:186} INFO - Started process (PID=851) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:08:08.758+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:08:08.761+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:08.760+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:08:09.175+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_producer', 'dataset_s3_bucket_consumer', 'dataset_alias_example_alias_consumer', 'dataset_alias_example_alias_producer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:08:09.190+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:09.190+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:08:09.205+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:09.205+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:08:09.207+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:09.207+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:08:09.208+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:09.208+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:08:09.209+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:09.209+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:08:09.227+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.486 seconds +[2025-01-29T18:08:40.229+0000] {processor.py:186} INFO - Started process (PID=915) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:08:40.240+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:08:40.242+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:40.242+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:08:40.659+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_producer', 'dataset_alias_example_alias_producer', 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:08:40.681+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:40.680+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:08:40.698+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:40.698+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:08:40.700+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:40.700+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:08:40.701+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:40.701+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:08:40.702+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:40.702+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:08:40.721+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.498 seconds +[2025-01-29T18:09:11.411+0000] {processor.py:186} INFO - Started process (PID=979) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:09:11.415+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py for tasks to queue +[2025-01-29T18:09:11.417+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:11.417+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:09:11.836+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_producer', 'dataset_alias_example_alias_consumer', 'dataset_s3_bucket_producer', 'dataset_s3_bucket_consumer' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py +[2025-01-29T18:09:11.853+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:11.853+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:09:11.868+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:11.868+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer to None, run_after=None +[2025-01-29T18:09:11.870+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:11.870+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer to None, run_after=None +[2025-01-29T18:09:11.871+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:11.871+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer to None, run_after=None +[2025-01-29T18:09:11.872+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:11.872+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer to None, run_after=None +[2025-01-29T18:09:11.890+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias.py took 0.484 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dataset_alias_with_no_taskflow.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dataset_alias_with_no_taskflow.py.log new file mode 100644 index 0000000000..e2dfc50699 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dataset_alias_with_no_taskflow.py.log @@ -0,0 +1,182 @@ +[2025-01-29T18:01:59.120+0000] {processor.py:186} INFO - Started process (PID=94) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:01:59.122+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:01:59.125+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.125+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:01:59.806+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:01:59.919+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.918+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_s3_bucket_consumer_with_no_taskflow +[2025-01-29T18:01:59.949+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.948+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_s3_bucket_consumer_with_no_taskflow +[2025-01-29T18:01:59.955+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.955+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_s3_bucket_consumer_with_no_taskflow +[2025-01-29T18:01:59.966+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.966+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_s3_bucket_consumer_with_no_taskflow +[2025-01-29T18:01:59.973+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.973+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_s3_bucket_consumer_with_no_taskflow +[2025-01-29T18:01:59.982+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.982+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_s3_bucket_consumer_with_no_taskflow +[2025-01-29T18:01:59.988+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.988+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_s3_bucket_consumer_with_no_taskflow +[2025-01-29T18:02:00.004+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.004+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_alias_example_alias_producer_with_no_taskflow +[2025-01-29T18:02:00.013+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.013+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_alias_example_alias_producer_with_no_taskflow +[2025-01-29T18:02:00.020+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.020+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_alias_example_alias_producer_with_no_taskflow +[2025-01-29T18:02:00.030+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.029+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_alias_example_alias_producer_with_no_taskflow +[2025-01-29T18:02:00.037+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.037+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_alias_example_alias_producer_with_no_taskflow +[2025-01-29T18:02:00.045+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.045+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_alias_example_alias_producer_with_no_taskflow +[2025-01-29T18:02:00.052+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.051+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_alias_example_alias_producer_with_no_taskflow +[2025-01-29T18:02:00.063+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.063+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_s3_bucket_producer_with_no_taskflow +[2025-01-29T18:02:00.069+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.069+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_s3_bucket_producer_with_no_taskflow +[2025-01-29T18:02:00.076+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.075+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_s3_bucket_producer_with_no_taskflow +[2025-01-29T18:02:00.084+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.084+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_s3_bucket_producer_with_no_taskflow +[2025-01-29T18:02:00.092+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.091+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_s3_bucket_producer_with_no_taskflow +[2025-01-29T18:02:00.099+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.098+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_s3_bucket_producer_with_no_taskflow +[2025-01-29T18:02:00.106+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.105+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_s3_bucket_producer_with_no_taskflow +[2025-01-29T18:02:00.120+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.120+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_alias_example_alias_consumer_with_no_taskflow +[2025-01-29T18:02:00.127+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.127+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_alias_example_alias_consumer_with_no_taskflow +[2025-01-29T18:02:00.134+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.133+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_alias_example_alias_consumer_with_no_taskflow +[2025-01-29T18:02:00.142+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.141+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_alias_example_alias_consumer_with_no_taskflow +[2025-01-29T18:02:00.149+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.149+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_alias_example_alias_consumer_with_no_taskflow +[2025-01-29T18:02:00.156+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.155+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_alias_example_alias_consumer_with_no_taskflow +[2025-01-29T18:02:00.162+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.162+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_alias_example_alias_consumer_with_no_taskflow +[2025-01-29T18:02:00.163+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.163+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:02:00.177+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.177+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_s3_bucket_producer_with_no_taskflow +[2025-01-29T18:02:00.178+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.178+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_s3_bucket_consumer_with_no_taskflow +[2025-01-29T18:02:00.179+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.179+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_alias_example_alias_producer_with_no_taskflow +[2025-01-29T18:02:00.179+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.179+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_alias_example_alias_consumer_with_no_taskflow +[2025-01-29T18:02:00.187+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.187+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:02:00.188+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.187+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:02:00.188+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.188+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:02:00.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.188+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:02:00.220+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 1.106 seconds +[2025-01-29T18:02:30.857+0000] {processor.py:186} INFO - Started process (PID=157) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:02:30.860+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:02:30.863+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:30.862+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:02:31.361+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:02:31.382+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.382+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:02:31.401+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.400+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:02:31.403+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.403+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:02:31.404+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.404+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:02:31.405+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.405+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:02:31.426+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.575 seconds +[2025-01-29T18:03:02.199+0000] {processor.py:186} INFO - Started process (PID=220) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:03:02.201+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:03:02.204+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.204+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:03:02.757+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:03:02.781+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.780+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:03:02.801+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.801+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:03:02.804+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.804+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:03:02.805+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.805+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:03:02.806+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.806+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:03:02.844+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.656 seconds +[2025-01-29T18:03:33.813+0000] {processor.py:186} INFO - Started process (PID=283) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:03:33.815+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:03:33.817+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:33.817+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:03:34.334+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:03:34.352+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.352+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:03:34.368+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.368+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:03:34.370+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.370+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:03:34.371+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.371+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:03:34.372+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.372+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:03:34.391+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.584 seconds +[2025-01-29T18:04:04.945+0000] {processor.py:186} INFO - Started process (PID=346) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:04:04.952+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:04:04.954+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:04.954+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:04:05.463+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:04:05.482+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.482+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:04:05.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.503+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:04:05.506+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.506+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:04:05.507+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.507+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:04:05.508+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.508+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:04:05.529+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.588 seconds +[2025-01-29T18:04:36.084+0000] {processor.py:186} INFO - Started process (PID=409) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:04:36.090+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:04:36.093+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.092+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:04:36.537+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:04:36.557+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.557+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:04:36.574+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.574+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:04:36.576+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.576+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:04:36.578+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.578+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:04:36.580+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.579+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:04:36.602+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.522 seconds +[2025-01-29T18:05:06.925+0000] {processor.py:186} INFO - Started process (PID=472) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:05:06.930+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:05:06.933+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:06.932+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:05:07.355+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_s3_bucket_consumer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:05:07.374+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.374+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:05:07.391+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.391+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:05:07.393+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.393+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:05:07.395+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.395+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:05:07.396+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.396+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:05:07.416+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.496 seconds +[2025-01-29T18:05:37.809+0000] {processor.py:186} INFO - Started process (PID=535) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:05:37.815+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:05:37.817+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:37.817+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:05:38.311+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:05:38.327+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.327+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:05:38.346+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.346+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:05:38.348+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.348+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:05:38.350+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.350+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:05:38.351+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.351+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:05:38.379+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.575 seconds +[2025-01-29T18:06:08.725+0000] {processor.py:186} INFO - Started process (PID=598) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:06:08.728+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:06:08.730+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:08.730+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:06:09.171+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_s3_bucket_consumer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:06:09.192+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.191+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:06:09.212+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.212+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:06:09.214+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.214+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:06:09.216+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.216+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:06:09.218+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.218+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:06:09.242+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.524 seconds +[2025-01-29T18:06:39.427+0000] {processor.py:186} INFO - Started process (PID=661) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:06:39.428+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:06:39.430+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.430+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:06:39.927+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_s3_bucket_consumer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:06:39.951+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.950+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:06:39.970+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.970+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:06:39.973+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.972+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:06:39.975+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.975+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:06:39.976+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.976+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:06:40.006+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.585 seconds +[2025-01-29T18:07:10.550+0000] {processor.py:186} INFO - Started process (PID=725) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:07:10.551+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:07:10.557+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:10.556+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:07:11.070+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:07:11.090+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.089+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:07:11.107+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.107+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:07:11.110+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.109+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:07:11.112+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.112+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:07:11.114+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.114+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:07:11.142+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.598 seconds +[2025-01-29T18:07:41.295+0000] {processor.py:186} INFO - Started process (PID=789) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:07:41.300+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:07:41.302+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.302+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:07:41.865+0000] {processor.py:925} INFO - DAG(s) 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:07:41.883+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.883+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:07:41.900+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.900+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:07:41.903+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.902+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:07:41.904+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.904+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:07:41.905+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.905+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:07:41.929+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.639 seconds +[2025-01-29T18:08:12.288+0000] {processor.py:186} INFO - Started process (PID=853) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:08:12.294+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:08:12.297+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.296+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:08:12.815+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:08:12.834+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.834+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:08:12.852+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.852+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:08:12.854+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.854+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:08:12.855+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.855+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:08:12.856+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.856+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:08:12.877+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.594 seconds +[2025-01-29T18:08:43.288+0000] {processor.py:186} INFO - Started process (PID=917) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:08:43.290+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:08:43.292+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.292+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:08:43.840+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_consumer_with_no_taskflow', 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:08:43.864+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.864+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:08:43.885+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.885+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:08:43.888+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.887+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:08:43.889+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.889+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:08:43.890+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.890+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:08:43.926+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.645 seconds +[2025-01-29T18:09:14.457+0000] {processor.py:186} INFO - Started process (PID=981) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:09:14.463+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py for tasks to queue +[2025-01-29T18:09:14.465+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.465+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:09:14.883+0000] {processor.py:925} INFO - DAG(s) 'dataset_s3_bucket_producer_with_no_taskflow', 'dataset_alias_example_alias_producer_with_no_taskflow', 'dataset_alias_example_alias_consumer_with_no_taskflow', 'dataset_s3_bucket_consumer_with_no_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py +[2025-01-29T18:09:14.900+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.900+0000] {dag.py:3239} INFO - Sync 4 DAGs +[2025-01-29T18:09:14.916+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.916+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:09:14.918+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.918+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_alias_example_alias_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:09:14.919+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.919+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_consumer_with_no_taskflow to None, run_after=None +[2025-01-29T18:09:14.920+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.920+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_s3_bucket_producer_with_no_taskflow to None, run_after=None +[2025-01-29T18:09:14.941+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dataset_alias_with_no_taskflow.py took 0.489 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_datasets.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_datasets.py.log new file mode 100644 index 0000000000..5304109905 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_datasets.py.log @@ -0,0 +1,320 @@ +[2025-01-29T18:01:58.348+0000] {processor.py:186} INFO - Started process (PID=92) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:01:58.349+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:01:58.351+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.351+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:01:58.964+0000] {processor.py:925} INFO - DAG(s) 'consume_1_or_2_with_dataset_expressions', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'dataset_consumes_1', 'conditional_dataset_and_time_based_timetable', 'dataset_consumes_unknown_never_scheduled', 'consume_1_and_2_with_dataset_expressions', 'dataset_produces_2', 'dataset_consumes_1_never_scheduled', 'dataset_consumes_1_and_2', 'dataset_produces_1' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:01:59.065+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.064+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:consume_1_or_2_with_dataset_expressions +[2025-01-29T18:01:59.077+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.077+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:consume_1_or_2_with_dataset_expressions +[2025-01-29T18:01:59.086+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.085+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:consume_1_or_2_with_dataset_expressions +[2025-01-29T18:01:59.101+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.100+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:consume_1_or_2_with_dataset_expressions +[2025-01-29T18:01:59.111+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.110+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:consume_1_or_2_with_dataset_expressions +[2025-01-29T18:01:59.123+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.122+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:consume_1_or_2_with_dataset_expressions +[2025-01-29T18:01:59.135+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.135+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:consume_1_or_2_with_dataset_expressions +[2025-01-29T18:01:59.158+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.158+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:consume_1_or_both_2_and_3_with_dataset_expressions +[2025-01-29T18:01:59.171+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.171+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:consume_1_or_both_2_and_3_with_dataset_expressions +[2025-01-29T18:01:59.181+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.180+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:consume_1_or_both_2_and_3_with_dataset_expressions +[2025-01-29T18:01:59.197+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.196+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:consume_1_or_both_2_and_3_with_dataset_expressions +[2025-01-29T18:01:59.210+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.209+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:consume_1_or_both_2_and_3_with_dataset_expressions +[2025-01-29T18:01:59.223+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.221+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:consume_1_or_both_2_and_3_with_dataset_expressions +[2025-01-29T18:01:59.232+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.232+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:consume_1_or_both_2_and_3_with_dataset_expressions +[2025-01-29T18:01:59.303+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.302+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_consumes_1 +[2025-01-29T18:01:59.316+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.315+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_consumes_1 +[2025-01-29T18:01:59.333+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.332+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_consumes_1 +[2025-01-29T18:01:59.344+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.344+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_consumes_1 +[2025-01-29T18:01:59.355+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.355+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_consumes_1 +[2025-01-29T18:01:59.364+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.364+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_consumes_1 +[2025-01-29T18:01:59.374+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.374+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_consumes_1 +[2025-01-29T18:01:59.392+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.392+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:conditional_dataset_and_time_based_timetable +[2025-01-29T18:01:59.400+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.400+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:conditional_dataset_and_time_based_timetable +[2025-01-29T18:01:59.899+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.898+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:conditional_dataset_and_time_based_timetable +[2025-01-29T18:01:59.922+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.921+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:conditional_dataset_and_time_based_timetable +[2025-01-29T18:01:59.948+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.947+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:conditional_dataset_and_time_based_timetable +[2025-01-29T18:01:59.955+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.954+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:conditional_dataset_and_time_based_timetable +[2025-01-29T18:01:59.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.964+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:conditional_dataset_and_time_based_timetable +[2025-01-29T18:01:59.979+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.979+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_consumes_unknown_never_scheduled +[2025-01-29T18:01:59.986+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.985+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_consumes_unknown_never_scheduled +[2025-01-29T18:01:59.995+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.993+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_consumes_unknown_never_scheduled +[2025-01-29T18:02:00.003+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.003+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_consumes_unknown_never_scheduled +[2025-01-29T18:02:00.014+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.014+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_consumes_unknown_never_scheduled +[2025-01-29T18:02:00.021+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.021+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_consumes_unknown_never_scheduled +[2025-01-29T18:02:00.031+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.031+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_consumes_unknown_never_scheduled +[2025-01-29T18:02:00.044+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.044+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:consume_1_and_2_with_dataset_expressions +[2025-01-29T18:02:00.050+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.050+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:consume_1_and_2_with_dataset_expressions +[2025-01-29T18:02:00.058+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.057+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:consume_1_and_2_with_dataset_expressions +[2025-01-29T18:02:00.065+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.064+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:consume_1_and_2_with_dataset_expressions +[2025-01-29T18:02:00.071+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.071+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:consume_1_and_2_with_dataset_expressions +[2025-01-29T18:02:00.078+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.078+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:consume_1_and_2_with_dataset_expressions +[2025-01-29T18:02:00.085+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.085+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:consume_1_and_2_with_dataset_expressions +[2025-01-29T18:02:00.096+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.096+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_produces_2 +[2025-01-29T18:02:00.103+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.103+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_produces_2 +[2025-01-29T18:02:00.111+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.110+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_produces_2 +[2025-01-29T18:02:00.119+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.119+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_produces_2 +[2025-01-29T18:02:00.126+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.126+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_produces_2 +[2025-01-29T18:02:00.133+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.132+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_produces_2 +[2025-01-29T18:02:00.139+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.139+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_produces_2 +[2025-01-29T18:02:00.151+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.151+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_consumes_1_never_scheduled +[2025-01-29T18:02:00.157+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.157+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_consumes_1_never_scheduled +[2025-01-29T18:02:00.163+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.163+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_consumes_1_never_scheduled +[2025-01-29T18:02:00.169+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.169+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_consumes_1_never_scheduled +[2025-01-29T18:02:00.176+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.175+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_consumes_1_never_scheduled +[2025-01-29T18:02:00.182+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.182+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_consumes_1_never_scheduled +[2025-01-29T18:02:00.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.189+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_consumes_1_never_scheduled +[2025-01-29T18:02:00.203+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.202+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_consumes_1_and_2 +[2025-01-29T18:02:00.210+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.210+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_consumes_1_and_2 +[2025-01-29T18:02:00.217+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.216+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_consumes_1_and_2 +[2025-01-29T18:02:00.225+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.224+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_consumes_1_and_2 +[2025-01-29T18:02:00.232+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.231+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_consumes_1_and_2 +[2025-01-29T18:02:00.238+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.238+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_consumes_1_and_2 +[2025-01-29T18:02:00.245+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.245+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_consumes_1_and_2 +[2025-01-29T18:02:00.263+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.263+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_produces_1 +[2025-01-29T18:02:00.272+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.271+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_produces_1 +[2025-01-29T18:02:00.280+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.279+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_produces_1 +[2025-01-29T18:02:00.290+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.290+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_produces_1 +[2025-01-29T18:02:00.300+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.299+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_produces_1 +[2025-01-29T18:02:00.314+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.309+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_produces_1 +[2025-01-29T18:02:00.330+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.329+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_produces_1 +[2025-01-29T18:02:00.330+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.330+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:02:00.347+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.346+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_consumes_1_never_scheduled +[2025-01-29T18:02:00.348+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.347+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_produces_1 +[2025-01-29T18:02:00.348+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.348+0000] {dag.py:3262} INFO - Creating ORM DAG for conditional_dataset_and_time_based_timetable +[2025-01-29T18:02:00.349+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.349+0000] {dag.py:3262} INFO - Creating ORM DAG for consume_1_or_2_with_dataset_expressions +[2025-01-29T18:02:00.350+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.350+0000] {dag.py:3262} INFO - Creating ORM DAG for consume_1_or_both_2_and_3_with_dataset_expressions +[2025-01-29T18:02:00.350+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.350+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_produces_2 +[2025-01-29T18:02:00.351+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.351+0000] {dag.py:3262} INFO - Creating ORM DAG for consume_1_and_2_with_dataset_expressions +[2025-01-29T18:02:00.351+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.351+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_consumes_1 +[2025-01-29T18:02:00.352+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.352+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_consumes_1_and_2 +[2025-01-29T18:02:00.352+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.352+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_consumes_unknown_never_scheduled +[2025-01-29T18:02:00.364+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.364+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:02:00.365+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.365+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:02:00.365+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.365+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:02:00.366+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.366+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:02:00.366+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.366+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:02:00.366+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.366+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:02:00.367+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.367+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:02:00.367+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.367+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:02:00.369+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.369+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:00.369+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.369+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:02:00.416+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 2.072 seconds +[2025-01-29T18:02:30.851+0000] {processor.py:186} INFO - Started process (PID=156) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:02:30.853+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:02:30.855+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:30.855+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:02:31.355+0000] {processor.py:925} INFO - DAG(s) 'dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1_never_scheduled', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'consume_1_or_2_with_dataset_expressions', 'consume_1_and_2_with_dataset_expressions', 'dataset_consumes_1_and_2', 'dataset_consumes_1', 'dataset_produces_2', 'conditional_dataset_and_time_based_timetable', 'dataset_produces_1' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:02:31.397+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.397+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:02:31.418+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.417+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:02:31.421+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.421+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:02:31.423+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.423+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:02:31.424+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.424+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:02:31.425+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.425+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:02:31.426+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.426+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:02:31.428+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.427+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:02:31.429+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.429+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:02:31.431+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.431+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:31.433+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.433+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:02:31.468+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.623 seconds +[2025-01-29T18:03:02.189+0000] {processor.py:186} INFO - Started process (PID=219) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:03:02.191+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:03:02.195+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.194+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:03:02.767+0000] {processor.py:925} INFO - DAG(s) 'conditional_dataset_and_time_based_timetable', 'dataset_consumes_1', 'dataset_produces_2', 'consume_1_or_2_with_dataset_expressions', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'consume_1_and_2_with_dataset_expressions', 'dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1_and_2', 'dataset_produces_1', 'dataset_consumes_1_never_scheduled' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:03:02.806+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.806+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:03:02.827+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.827+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:03:02.830+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.830+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:03:02.831+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.831+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:03:02.832+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.831+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:03:02.832+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.832+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:03:02.834+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.834+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:03:02.835+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.835+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:03:02.837+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.836+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:03:02.839+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.839+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:02.841+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.840+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:03:02.872+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.694 seconds +[2025-01-29T18:03:33.808+0000] {processor.py:186} INFO - Started process (PID=282) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:03:33.810+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:03:33.812+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:33.812+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:03:34.316+0000] {processor.py:925} INFO - DAG(s) 'consume_1_and_2_with_dataset_expressions', 'dataset_produces_2', 'dataset_produces_1', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'conditional_dataset_and_time_based_timetable', 'dataset_consumes_1_never_scheduled', 'dataset_consumes_1', 'consume_1_or_2_with_dataset_expressions', 'dataset_consumes_1_and_2', 'dataset_consumes_unknown_never_scheduled' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:03:34.356+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.356+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:03:34.375+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.374+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:03:34.377+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.377+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:03:34.379+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.379+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:03:34.380+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.380+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:03:34.381+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.381+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:03:34.382+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.382+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:03:34.383+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.383+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:03:34.384+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.384+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:03:34.387+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.386+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:34.388+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.388+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:03:34.420+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.620 seconds +[2025-01-29T18:04:04.940+0000] {processor.py:186} INFO - Started process (PID=345) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:04:04.952+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:04:04.954+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:04.954+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:04:05.454+0000] {processor.py:925} INFO - DAG(s) 'dataset_produces_2', 'dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1_and_2', 'dataset_consumes_1', 'consume_1_or_2_with_dataset_expressions', 'conditional_dataset_and_time_based_timetable', 'dataset_produces_1', 'dataset_consumes_1_never_scheduled', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'consume_1_and_2_with_dataset_expressions' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:04:05.497+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.497+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:04:05.520+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.520+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:04:05.524+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.523+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:04:05.525+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.525+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:04:05.526+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.526+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:04:05.527+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.527+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:04:05.528+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.528+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:04:05.529+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.529+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:04:05.529+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.529+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:04:05.531+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.531+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:05.532+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.532+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:04:05.563+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.629 seconds +[2025-01-29T18:04:36.079+0000] {processor.py:186} INFO - Started process (PID=408) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:04:36.090+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:04:36.093+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.092+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:04:36.543+0000] {processor.py:925} INFO - DAG(s) 'consume_1_and_2_with_dataset_expressions', 'dataset_consumes_1_never_scheduled', 'consume_1_or_2_with_dataset_expressions', 'dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1_and_2', 'dataset_consumes_1', 'dataset_produces_1', 'dataset_produces_2', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'conditional_dataset_and_time_based_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:04:36.583+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.582+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:04:36.609+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.609+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:04:36.613+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.613+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:04:36.614+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.614+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:04:36.616+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.616+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:04:36.617+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.617+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:04:36.618+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.618+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:04:36.619+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.619+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:04:36.620+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.620+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:04:36.624+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.623+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:36.625+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.625+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:04:36.660+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.586 seconds +[2025-01-29T18:05:06.919+0000] {processor.py:186} INFO - Started process (PID=471) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:05:06.930+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:05:06.933+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:06.932+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:05:07.348+0000] {processor.py:925} INFO - DAG(s) 'dataset_consumes_1', 'dataset_produces_1', 'dataset_consumes_1_never_scheduled', 'dataset_consumes_1_and_2', 'dataset_produces_2', 'consume_1_and_2_with_dataset_expressions', 'conditional_dataset_and_time_based_timetable', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'dataset_consumes_unknown_never_scheduled', 'consume_1_or_2_with_dataset_expressions' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:05:07.384+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.384+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:05:07.406+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.405+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:05:07.409+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.409+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:05:07.410+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.410+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:05:07.411+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.411+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:05:07.412+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.412+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:05:07.413+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.413+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:05:07.414+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.414+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:05:07.415+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.415+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:05:07.423+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.419+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:07.432+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.432+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:05:07.463+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.549 seconds +[2025-01-29T18:05:37.804+0000] {processor.py:186} INFO - Started process (PID=534) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:05:37.815+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:05:37.818+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:37.817+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:05:38.299+0000] {processor.py:925} INFO - DAG(s) 'dataset_produces_1', 'consume_1_or_2_with_dataset_expressions', 'consume_1_and_2_with_dataset_expressions', 'dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1_never_scheduled', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'dataset_consumes_1_and_2', 'conditional_dataset_and_time_based_timetable', 'dataset_consumes_1', 'dataset_produces_2' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:05:38.336+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.336+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:05:38.358+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.358+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:05:38.361+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.361+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:05:38.362+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.362+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:05:38.363+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.363+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:05:38.364+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.364+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:05:38.365+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.365+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:05:38.366+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.366+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:05:38.367+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.367+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:05:38.369+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.369+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:38.371+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.371+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:05:38.402+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.603 seconds +[2025-01-29T18:06:08.719+0000] {processor.py:186} INFO - Started process (PID=597) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:06:08.720+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:06:08.723+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:08.722+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:06:09.177+0000] {processor.py:925} INFO - DAG(s) 'consume_1_or_both_2_and_3_with_dataset_expressions', 'dataset_produces_1', 'consume_1_and_2_with_dataset_expressions', 'consume_1_or_2_with_dataset_expressions', 'dataset_consumes_1_and_2', 'dataset_produces_2', 'dataset_consumes_1_never_scheduled', 'dataset_consumes_unknown_never_scheduled', 'conditional_dataset_and_time_based_timetable', 'dataset_consumes_1' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:06:09.218+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.218+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:06:09.245+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.245+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:06:09.249+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.249+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:06:09.251+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.251+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:06:09.252+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.252+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:06:09.253+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.253+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:06:09.254+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.254+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:06:09.257+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.257+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:06:09.258+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.258+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:06:09.261+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.261+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:09.262+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.262+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:06:09.305+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.593 seconds +[2025-01-29T18:06:39.421+0000] {processor.py:186} INFO - Started process (PID=660) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:06:39.422+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:06:39.424+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.424+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:06:39.919+0000] {processor.py:925} INFO - DAG(s) 'consume_1_or_both_2_and_3_with_dataset_expressions', 'dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1_never_scheduled', 'consume_1_and_2_with_dataset_expressions', 'dataset_produces_1', 'dataset_consumes_1', 'consume_1_or_2_with_dataset_expressions', 'dataset_consumes_1_and_2', 'dataset_produces_2', 'conditional_dataset_and_time_based_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:06:39.963+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.962+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:06:39.982+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.981+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:06:39.985+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.984+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:06:39.987+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.987+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:06:39.988+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.988+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:06:39.989+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.989+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:06:39.990+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.990+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:06:39.991+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.991+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:06:39.992+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.992+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:06:39.993+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.993+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:39.994+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:39.994+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:06:40.026+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.611 seconds +[2025-01-29T18:07:10.540+0000] {processor.py:186} INFO - Started process (PID=724) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:07:10.551+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:07:10.554+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:10.554+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:07:11.090+0000] {processor.py:925} INFO - DAG(s) 'conditional_dataset_and_time_based_timetable', 'consume_1_and_2_with_dataset_expressions', 'dataset_consumes_1', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'dataset_consumes_1_and_2', 'consume_1_or_2_with_dataset_expressions', 'dataset_consumes_1_never_scheduled', 'dataset_consumes_unknown_never_scheduled', 'dataset_produces_1', 'dataset_produces_2' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:07:11.130+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.130+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:07:11.150+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.150+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:07:11.154+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.154+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:07:11.157+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.157+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:07:11.158+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.158+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:07:11.159+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.159+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:07:11.160+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.160+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:07:11.161+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.161+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:07:11.162+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.162+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:07:11.164+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.164+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:11.165+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.165+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:07:11.196+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.662 seconds +[2025-01-29T18:07:41.290+0000] {processor.py:186} INFO - Started process (PID=788) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:07:41.300+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:07:41.302+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.302+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:07:41.819+0000] {processor.py:925} INFO - DAG(s) 'dataset_consumes_1_and_2', 'consume_1_and_2_with_dataset_expressions', 'conditional_dataset_and_time_based_timetable', 'dataset_consumes_1_never_scheduled', 'dataset_consumes_unknown_never_scheduled', 'consume_1_or_2_with_dataset_expressions', 'dataset_produces_2', 'dataset_produces_1', 'dataset_consumes_1', 'consume_1_or_both_2_and_3_with_dataset_expressions' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:07:41.861+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.861+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:07:41.886+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.885+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:07:41.889+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.889+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:07:41.891+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.891+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:07:41.892+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.892+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:07:41.893+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.893+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:07:41.894+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.894+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:07:41.895+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.895+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:07:41.896+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.896+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:07:41.898+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.898+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:41.899+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.899+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:07:41.931+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.646 seconds +[2025-01-29T18:08:12.283+0000] {processor.py:186} INFO - Started process (PID=852) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:08:12.294+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:08:12.297+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.296+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:08:12.802+0000] {processor.py:925} INFO - DAG(s) 'consume_1_or_both_2_and_3_with_dataset_expressions', 'dataset_produces_2', 'dataset_consumes_1_and_2', 'consume_1_or_2_with_dataset_expressions', 'consume_1_and_2_with_dataset_expressions', 'conditional_dataset_and_time_based_timetable', 'dataset_consumes_unknown_never_scheduled', 'dataset_consumes_1_never_scheduled', 'dataset_consumes_1', 'dataset_produces_1' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:08:12.839+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.839+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:08:12.858+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.858+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:08:12.862+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.862+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:08:12.864+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.864+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:08:12.865+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.865+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:08:12.866+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.866+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:08:12.867+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.867+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:08:12.868+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.868+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:08:12.869+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.869+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:08:12.871+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.871+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:12.872+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.872+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:08:12.909+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.633 seconds +[2025-01-29T18:08:43.281+0000] {processor.py:186} INFO - Started process (PID=916) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:08:43.282+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:08:43.288+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.287+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:08:43.863+0000] {processor.py:925} INFO - DAG(s) 'dataset_consumes_1_and_2', 'dataset_consumes_1_never_scheduled', 'consume_1_and_2_with_dataset_expressions', 'dataset_produces_1', 'consume_1_or_2_with_dataset_expressions', 'dataset_consumes_unknown_never_scheduled', 'conditional_dataset_and_time_based_timetable', 'consume_1_or_both_2_and_3_with_dataset_expressions', 'dataset_produces_2', 'dataset_consumes_1' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:08:43.909+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.908+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:08:43.944+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.944+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:08:43.948+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.948+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:08:43.950+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.950+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:08:43.952+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.952+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:08:43.953+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.953+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:08:43.955+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.954+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:08:43.955+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.955+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:08:43.956+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.956+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:08:43.960+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.959+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:43.962+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.962+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:08:43.999+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.726 seconds +[2025-01-29T18:09:14.452+0000] {processor.py:186} INFO - Started process (PID=980) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:09:14.463+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py for tasks to queue +[2025-01-29T18:09:14.465+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.465+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:09:14.874+0000] {processor.py:925} INFO - DAG(s) 'consume_1_or_both_2_and_3_with_dataset_expressions', 'conditional_dataset_and_time_based_timetable', 'dataset_consumes_unknown_never_scheduled', 'dataset_produces_2', 'consume_1_and_2_with_dataset_expressions', 'dataset_consumes_1_and_2', 'dataset_produces_1', 'dataset_consumes_1_never_scheduled', 'consume_1_or_2_with_dataset_expressions', 'dataset_consumes_1' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py +[2025-01-29T18:09:14.911+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.911+0000] {dag.py:3239} INFO - Sync 10 DAGs +[2025-01-29T18:09:14.932+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.931+0000] {dag.py:4180} INFO - Setting next_dagrun for conditional_dataset_and_time_based_timetable to 2025-01-29 01:00:00+00:00, run_after=2025-01-29 01:00:00+00:00 +[2025-01-29T18:09:14.935+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.935+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_and_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:09:14.936+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.936+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_2_with_dataset_expressions to None, run_after=None +[2025-01-29T18:09:14.938+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.937+0000] {dag.py:4180} INFO - Setting next_dagrun for consume_1_or_both_2_and_3_with_dataset_expressions to None, run_after=None +[2025-01-29T18:09:14.939+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.938+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1 to None, run_after=None +[2025-01-29T18:09:14.940+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.940+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_and_2 to None, run_after=None +[2025-01-29T18:09:14.941+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.941+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_1_never_scheduled to None, run_after=None +[2025-01-29T18:09:14.942+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.942+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_consumes_unknown_never_scheduled to None, run_after=None +[2025-01-29T18:09:14.944+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.944+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_1 to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:14.945+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.945+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_produces_2 to None, run_after=None +[2025-01-29T18:09:14.977+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_datasets.py took 0.531 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_display_name.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_display_name.py.log new file mode 100644 index 0000000000..21f48391db --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_display_name.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:01.874+0000] {processor.py:186} INFO - Started process (PID=101) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:02:01.875+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:02:01.877+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.877+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:02:01.886+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:02:01.992+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.992+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_display_name +[2025-01-29T18:02:02.002+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.002+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_display_name +[2025-01-29T18:02:02.008+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.008+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_display_name +[2025-01-29T18:02:02.015+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.015+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_display_name +[2025-01-29T18:02:02.021+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.021+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_display_name +[2025-01-29T18:02:02.028+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.027+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_display_name +[2025-01-29T18:02:02.035+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.034+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_display_name +[2025-01-29T18:02:02.035+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.035+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:02.047+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.047+0000] {dag.py:3262} INFO - Creating ORM DAG for example_display_name +[2025-01-29T18:02:02.048+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.048+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:02:02.064+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.198 seconds +[2025-01-29T18:02:32.439+0000] {processor.py:186} INFO - Started process (PID=164) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:02:32.441+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:02:32.445+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.445+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:02:32.467+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:02:32.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.502+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:32.530+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.529+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:02:32.564+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.139 seconds +[2025-01-29T18:03:03.224+0000] {processor.py:186} INFO - Started process (PID=226) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:03:03.226+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:03:03.229+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.228+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:03:03.237+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:03:03.256+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.256+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:03.270+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.270+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:03:03.288+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.070 seconds +[2025-01-29T18:03:34.797+0000] {processor.py:186} INFO - Started process (PID=289) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:03:34.799+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:03:34.802+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.801+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:03:34.809+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:03:34.826+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.826+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:34.839+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.839+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:03:34.855+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.065 seconds +[2025-01-29T18:04:05.775+0000] {processor.py:186} INFO - Started process (PID=351) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:04:05.777+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:04:05.779+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.779+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:04:05.788+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:04:05.809+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.809+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:05.823+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.823+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:04:05.844+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.076 seconds +[2025-01-29T18:04:36.844+0000] {processor.py:186} INFO - Started process (PID=414) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:04:36.849+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:04:36.851+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.851+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:04:36.859+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:04:36.878+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.878+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:36.892+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.892+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:04:36.911+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.072 seconds +[2025-01-29T18:05:08.196+0000] {processor.py:186} INFO - Started process (PID=479) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:05:08.197+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:05:08.199+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.199+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:05:08.205+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:05:08.225+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.225+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.237+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.236+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:05:08.256+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.065 seconds +[2025-01-29T18:05:39.099+0000] {processor.py:186} INFO - Started process (PID=542) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:05:39.100+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:05:39.102+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.102+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:05:39.108+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:05:39.125+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.125+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:39.136+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.136+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:05:39.154+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.060 seconds +[2025-01-29T18:06:09.562+0000] {processor.py:186} INFO - Started process (PID=604) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:06:09.563+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:06:09.565+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.565+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:06:09.572+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:06:09.592+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.591+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:09.605+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.604+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:06:09.624+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.068 seconds +[2025-01-29T18:06:40.256+0000] {processor.py:186} INFO - Started process (PID=666) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:06:40.257+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:06:40.260+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.259+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:06:40.267+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:06:40.282+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.282+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:40.296+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.295+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:06:40.311+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.061 seconds +[2025-01-29T18:07:11.383+0000] {processor.py:186} INFO - Started process (PID=730) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:07:11.384+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:07:11.386+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.386+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:07:11.393+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:07:11.410+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.410+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:11.422+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.422+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:07:11.439+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.063 seconds +[2025-01-29T18:07:42.194+0000] {processor.py:186} INFO - Started process (PID=794) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:07:42.195+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:07:42.198+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.197+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:07:42.204+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:07:42.223+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.223+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:42.236+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.236+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:07:42.254+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.066 seconds +[2025-01-29T18:08:13.110+0000] {processor.py:186} INFO - Started process (PID=858) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:08:13.112+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:08:13.113+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.113+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:08:13.120+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:08:13.136+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.136+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:13.148+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.148+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:08:13.166+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.061 seconds +[2025-01-29T18:08:44.196+0000] {processor.py:186} INFO - Started process (PID=922) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:08:44.198+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:08:44.200+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.200+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:08:44.210+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:08:44.230+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.230+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:44.243+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.243+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:08:44.266+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.077 seconds +[2025-01-29T18:09:15.162+0000] {processor.py:186} INFO - Started process (PID=986) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:09:15.164+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py for tasks to queue +[2025-01-29T18:09:15.166+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.166+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:09:15.173+0000] {processor.py:925} INFO - DAG(s) 'example_display_name' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py +[2025-01-29T18:09:15.190+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.190+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.202+0000] {dag.py:4180} INFO - Setting next_dagrun for example_display_name to None, run_after=None +[2025-01-29T18:09:15.219+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_display_name.py took 0.063 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dynamic_task_mapping.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dynamic_task_mapping.py.log new file mode 100644 index 0000000000..2069a3d743 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dynamic_task_mapping.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:55.904+0000] {processor.py:186} INFO - Started process (PID=77) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:01:55.905+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:01:55.907+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.907+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:01:55.916+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:01:56.043+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.042+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_dynamic_task_mapping +[2025-01-29T18:01:56.057+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.056+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_dynamic_task_mapping +[2025-01-29T18:01:56.063+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.063+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_dynamic_task_mapping +[2025-01-29T18:01:56.074+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.074+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_dynamic_task_mapping +[2025-01-29T18:01:56.082+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.082+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_dynamic_task_mapping +[2025-01-29T18:01:56.089+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.089+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_dynamic_task_mapping +[2025-01-29T18:01:56.096+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.096+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_dynamic_task_mapping +[2025-01-29T18:01:56.096+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.096+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:56.108+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.108+0000] {dag.py:3262} INFO - Creating ORM DAG for example_dynamic_task_mapping +[2025-01-29T18:01:56.108+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.108+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:01:56.123+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.227 seconds +[2025-01-29T18:02:26.645+0000] {processor.py:186} INFO - Started process (PID=139) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:02:26.655+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:02:26.658+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.657+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:02:26.665+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:02:26.685+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.685+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:26.697+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.697+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:02:26.714+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.074 seconds +[2025-01-29T18:02:57.502+0000] {processor.py:186} INFO - Started process (PID=202) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:02:57.507+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:02:57.510+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.510+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:02:57.520+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:02:57.543+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.543+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:57.559+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.559+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:02:57.582+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.086 seconds +[2025-01-29T18:03:28.511+0000] {processor.py:186} INFO - Started process (PID=265) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:03:28.513+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:03:28.515+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.515+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:03:28.525+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:03:28.544+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.543+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:28.554+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.554+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:03:28.572+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.066 seconds +[2025-01-29T18:03:58.889+0000] {processor.py:186} INFO - Started process (PID=328) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:03:58.893+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:03:58.895+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:58.895+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:03:58.902+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:03:58.921+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:58.921+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:58.932+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:58.932+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:03:58.949+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.065 seconds +[2025-01-29T18:04:29.115+0000] {processor.py:186} INFO - Started process (PID=391) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:04:29.120+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:04:29.122+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.122+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:04:29.129+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:04:29.147+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.147+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:29.159+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.159+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:04:29.176+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.066 seconds +[2025-01-29T18:05:00.032+0000] {processor.py:186} INFO - Started process (PID=454) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:05:00.034+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:05:00.038+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.037+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:05:00.047+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:05:00.067+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.067+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:00.079+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.079+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:05:00.096+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.071 seconds +[2025-01-29T18:05:30.919+0000] {processor.py:186} INFO - Started process (PID=517) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:05:30.920+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:05:30.923+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:30.922+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:05:30.930+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:05:30.952+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:30.951+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:30.964+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:30.963+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:05:30.985+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.073 seconds +[2025-01-29T18:06:01.142+0000] {processor.py:186} INFO - Started process (PID=580) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:06:01.143+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:06:01.146+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.146+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:06:01.155+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:06:01.177+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.177+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:01.191+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.191+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:06:01.211+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.076 seconds +[2025-01-29T18:06:31.875+0000] {processor.py:186} INFO - Started process (PID=643) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:06:31.882+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:06:31.884+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:31.884+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:06:31.890+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:06:31.912+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:31.912+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:31.926+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:31.925+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:06:31.944+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.074 seconds +[2025-01-29T18:07:02.631+0000] {processor.py:186} INFO - Started process (PID=707) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:07:02.633+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:07:02.636+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.636+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:07:02.646+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:07:02.667+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.667+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:02.679+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.679+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:07:02.697+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.075 seconds +[2025-01-29T18:07:32.758+0000] {processor.py:186} INFO - Started process (PID=771) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:07:32.759+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:07:32.763+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.762+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:07:32.771+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:07:32.790+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.790+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:32.800+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.800+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:07:32.818+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.065 seconds +[2025-01-29T18:08:02.886+0000] {processor.py:186} INFO - Started process (PID=835) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:08:02.887+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:08:02.889+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:02.888+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:08:02.895+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:08:02.914+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:02.914+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:02.925+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:02.925+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:08:02.943+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.063 seconds +[2025-01-29T18:08:33.460+0000] {processor.py:186} INFO - Started process (PID=899) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:08:33.462+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:08:33.464+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:33.464+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:08:33.473+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:08:33.492+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:33.492+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:33.506+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:33.506+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:08:33.525+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.073 seconds +[2025-01-29T18:09:04.416+0000] {processor.py:186} INFO - Started process (PID=963) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:09:04.423+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py for tasks to queue +[2025-01-29T18:09:04.425+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:04.425+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:09:04.431+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py +[2025-01-29T18:09:04.451+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:04.450+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:04.461+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:04.461+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping to None, run_after=None +[2025-01-29T18:09:04.479+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping.py took 0.069 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py.log new file mode 100644 index 0000000000..11c8dccac0 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:57.342+0000] {processor.py:186} INFO - Started process (PID=84) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:01:57.343+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:01:57.346+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.345+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:01:57.358+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:01:57.457+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.456+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_dynamic_task_mapping_with_no_taskflow_operators +[2025-01-29T18:01:57.467+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.467+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_dynamic_task_mapping_with_no_taskflow_operators +[2025-01-29T18:01:57.473+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.473+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_dynamic_task_mapping_with_no_taskflow_operators +[2025-01-29T18:01:57.480+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.480+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_dynamic_task_mapping_with_no_taskflow_operators +[2025-01-29T18:01:57.488+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.487+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_dynamic_task_mapping_with_no_taskflow_operators +[2025-01-29T18:01:57.496+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.495+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_dynamic_task_mapping_with_no_taskflow_operators +[2025-01-29T18:01:57.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.502+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_dynamic_task_mapping_with_no_taskflow_operators +[2025-01-29T18:01:57.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.503+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:57.518+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.518+0000] {dag.py:3262} INFO - Creating ORM DAG for example_dynamic_task_mapping_with_no_taskflow_operators +[2025-01-29T18:01:57.519+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.519+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:01:57.536+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.199 seconds +[2025-01-29T18:02:28.281+0000] {processor.py:186} INFO - Started process (PID=147) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:02:28.282+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:02:28.285+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.285+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:02:28.294+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:02:28.314+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.313+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:28.329+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.328+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:02:28.349+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.073 seconds +[2025-01-29T18:02:59.215+0000] {processor.py:186} INFO - Started process (PID=210) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:02:59.217+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:02:59.220+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.220+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:02:59.243+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:02:59.278+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.277+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:59.301+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.301+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:02:59.335+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.130 seconds +[2025-01-29T18:03:29.922+0000] {processor.py:186} INFO - Started process (PID=272) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:03:29.924+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:03:29.926+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.926+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:03:29.934+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:03:29.955+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.955+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:29.969+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.969+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:03:29.992+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.076 seconds +[2025-01-29T18:04:00.278+0000] {processor.py:186} INFO - Started process (PID=335) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:04:00.280+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:04:00.282+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.282+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:04:00.288+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:04:00.307+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.307+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.318+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.317+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:04:00.336+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.062 seconds +[2025-01-29T18:04:30.516+0000] {processor.py:186} INFO - Started process (PID=398) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:04:30.518+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:04:30.520+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.520+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:04:30.528+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:04:30.547+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.546+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.558+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.558+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:04:30.575+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.065 seconds +[2025-01-29T18:05:01.337+0000] {processor.py:186} INFO - Started process (PID=461) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:05:01.339+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:05:01.341+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.340+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:05:01.348+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:05:01.373+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.373+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.388+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.388+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:05:01.410+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.080 seconds +[2025-01-29T18:05:32.265+0000] {processor.py:186} INFO - Started process (PID=524) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:05:32.266+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:05:32.268+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.268+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:05:32.276+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:05:32.294+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.293+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.306+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.305+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:05:32.323+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.063 seconds +[2025-01-29T18:06:02.489+0000] {processor.py:186} INFO - Started process (PID=587) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:06:02.491+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:06:02.493+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.492+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:06:02.499+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:06:02.516+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.516+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.527+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.527+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:06:02.545+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.060 seconds +[2025-01-29T18:06:33.326+0000] {processor.py:186} INFO - Started process (PID=650) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:06:33.328+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:06:33.330+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.329+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:06:33.337+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:06:33.355+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.355+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.366+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.366+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:06:33.386+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.064 seconds +[2025-01-29T18:07:04.048+0000] {processor.py:186} INFO - Started process (PID=714) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:07:04.049+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:07:04.051+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.051+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:07:04.058+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:07:04.077+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.077+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:04.088+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.088+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:07:04.105+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.062 seconds +[2025-01-29T18:07:34.266+0000] {processor.py:186} INFO - Started process (PID=778) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:07:34.267+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:07:34.269+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.269+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:07:34.277+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:07:34.298+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.298+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.309+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.309+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:07:34.327+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.066 seconds +[2025-01-29T18:08:05.285+0000] {processor.py:186} INFO - Started process (PID=842) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:08:05.286+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:08:05.288+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.288+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:08:05.295+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:08:05.313+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.313+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.324+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.324+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:08:05.342+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.062 seconds +[2025-01-29T18:08:35.777+0000] {processor.py:186} INFO - Started process (PID=906) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:08:35.778+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:08:35.780+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.780+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:08:35.786+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:08:35.804+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.804+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:35.815+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.815+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:08:35.832+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.060 seconds +[2025-01-29T18:09:05.932+0000] {processor.py:186} INFO - Started process (PID=970) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:09:05.933+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py for tasks to queue +[2025-01-29T18:09:05.935+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.935+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:09:05.942+0000] {processor.py:925} INFO - DAG(s) 'example_dynamic_task_mapping_with_no_taskflow_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py +[2025-01-29T18:09:05.961+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.961+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:05.973+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.973+0000] {dag.py:4180} INFO - Setting next_dagrun for example_dynamic_task_mapping_with_no_taskflow_operators to None, run_after=None +[2025-01-29T18:09:05.993+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py took 0.065 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_external_task_marker_dag.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_external_task_marker_dag.py.log new file mode 100644 index 0000000000..e1852583d8 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_external_task_marker_dag.py.log @@ -0,0 +1,136 @@ +[2025-01-29T18:01:58.268+0000] {processor.py:186} INFO - Started process (PID=91) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:01:58.269+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:01:58.272+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.271+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:01:58.280+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_child', 'example_external_task_marker_parent' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:01:58.414+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.413+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_external_task_marker_child +[2025-01-29T18:01:58.429+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.429+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_external_task_marker_child +[2025-01-29T18:01:58.442+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.442+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_external_task_marker_child +[2025-01-29T18:01:58.457+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.456+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_external_task_marker_child +[2025-01-29T18:01:58.468+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.468+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_external_task_marker_child +[2025-01-29T18:01:58.485+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.485+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_external_task_marker_child +[2025-01-29T18:01:58.508+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.508+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_external_task_marker_child +[2025-01-29T18:01:58.548+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.547+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_external_task_marker_parent +[2025-01-29T18:01:58.557+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.557+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_external_task_marker_parent +[2025-01-29T18:01:58.572+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.572+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_external_task_marker_parent +[2025-01-29T18:01:58.594+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.593+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_external_task_marker_parent +[2025-01-29T18:01:58.604+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.604+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_external_task_marker_parent +[2025-01-29T18:01:58.616+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.615+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_external_task_marker_parent +[2025-01-29T18:01:58.628+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.628+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_external_task_marker_parent +[2025-01-29T18:01:58.628+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.628+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:01:58.643+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.643+0000] {dag.py:3262} INFO - Creating ORM DAG for example_external_task_marker_child +[2025-01-29T18:01:58.644+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.644+0000] {dag.py:3262} INFO - Creating ORM DAG for example_external_task_marker_parent +[2025-01-29T18:01:58.644+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.644+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:01:58.645+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.645+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:01:58.674+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.411 seconds +[2025-01-29T18:02:28.748+0000] {processor.py:186} INFO - Started process (PID=154) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:02:28.750+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:02:28.752+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.752+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:02:28.759+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_child', 'example_external_task_marker_parent' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:02:28.780+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.780+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:02:28.792+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.791+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:02:28.795+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.794+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:02:28.809+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.066 seconds +[2025-01-29T18:03:00.039+0000] {processor.py:186} INFO - Started process (PID=217) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:03:00.041+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:03:00.045+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:00.045+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:03:00.056+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_parent', 'example_external_task_marker_child' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:03:00.083+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:00.082+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:03:00.098+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:00.098+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:03:00.102+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:00.102+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:03:00.123+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.092 seconds +[2025-01-29T18:03:30.573+0000] {processor.py:186} INFO - Started process (PID=280) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:03:30.574+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:03:30.576+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.575+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:03:30.582+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_child', 'example_external_task_marker_parent' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:03:30.606+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.606+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:03:30.617+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.617+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:03:30.620+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.620+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:03:30.636+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.069 seconds +[2025-01-29T18:04:00.709+0000] {processor.py:186} INFO - Started process (PID=342) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:04:00.710+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:04:00.713+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.712+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:04:00.721+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_parent', 'example_external_task_marker_child' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:04:00.741+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.741+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:04:00.752+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.751+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:04:00.754+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.754+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:04:00.770+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.066 seconds +[2025-01-29T18:04:30.850+0000] {processor.py:186} INFO - Started process (PID=405) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:04:30.851+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:04:30.853+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.853+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:04:30.859+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_child', 'example_external_task_marker_parent' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:04:30.878+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.877+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:04:30.888+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.888+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:04:30.891+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.891+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:04:30.905+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.060 seconds +[2025-01-29T18:05:01.735+0000] {processor.py:186} INFO - Started process (PID=468) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:05:01.737+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:05:01.739+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.739+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:05:01.746+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_child', 'example_external_task_marker_parent' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:05:01.769+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.769+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:05:01.782+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.782+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:05:01.785+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.785+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:05:01.803+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.074 seconds +[2025-01-29T18:05:32.619+0000] {processor.py:186} INFO - Started process (PID=531) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:05:32.621+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:05:32.623+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.622+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:05:32.630+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_child', 'example_external_task_marker_parent' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:05:32.651+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.650+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:05:32.663+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.663+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:05:32.667+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.667+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:05:32.684+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.071 seconds +[2025-01-29T18:06:02.962+0000] {processor.py:186} INFO - Started process (PID=594) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:06:02.963+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:06:02.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.965+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:06:02.973+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_parent', 'example_external_task_marker_child' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:06:02.995+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.995+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:06:03.007+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:03.006+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:06:03.011+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:03.011+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:06:03.028+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.071 seconds +[2025-01-29T18:06:33.671+0000] {processor.py:186} INFO - Started process (PID=657) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:06:33.672+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:06:33.674+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.674+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:06:33.682+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_parent', 'example_external_task_marker_child' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:06:33.704+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.703+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:06:33.721+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.720+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:06:33.724+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.724+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:06:33.741+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.075 seconds +[2025-01-29T18:07:04.387+0000] {processor.py:186} INFO - Started process (PID=721) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:07:04.388+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:07:04.390+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.390+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:07:04.397+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_parent', 'example_external_task_marker_child' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:07:04.417+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.417+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:07:04.432+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.431+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:07:04.436+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.435+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:07:04.453+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.071 seconds +[2025-01-29T18:07:34.620+0000] {processor.py:186} INFO - Started process (PID=785) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:07:34.622+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:07:34.624+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.624+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:07:34.637+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_parent', 'example_external_task_marker_child' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:07:34.662+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.661+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:07:34.677+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.677+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:07:34.683+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.683+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:07:34.702+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.087 seconds +[2025-01-29T18:08:05.631+0000] {processor.py:186} INFO - Started process (PID=849) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:08:05.632+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:08:05.634+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.633+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:08:05.640+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_parent', 'example_external_task_marker_child' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:08:05.660+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.659+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:08:05.672+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.671+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:08:05.676+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.676+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:08:05.691+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.067 seconds +[2025-01-29T18:08:36.104+0000] {processor.py:186} INFO - Started process (PID=913) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:08:36.105+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:08:36.107+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.107+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:08:36.114+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_parent', 'example_external_task_marker_child' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:08:36.133+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.133+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:08:36.145+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.145+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:08:36.148+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.148+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:08:36.162+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.063 seconds +[2025-01-29T18:09:06.268+0000] {processor.py:186} INFO - Started process (PID=977) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:09:06.269+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py for tasks to queue +[2025-01-29T18:09:06.271+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.271+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:09:06.278+0000] {processor.py:925} INFO - DAG(s) 'example_external_task_marker_child', 'example_external_task_marker_parent' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py +[2025-01-29T18:09:06.299+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.299+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:09:06.310+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.310+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_child to None, run_after=None +[2025-01-29T18:09:06.314+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.314+0000] {dag.py:4180} INFO - Setting next_dagrun for example_external_task_marker_parent to None, run_after=None +[2025-01-29T18:09:06.328+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_external_task_marker_dag.py took 0.065 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_inlet_event_extra.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_inlet_event_extra.py.log new file mode 100644 index 0000000000..f2f85063a7 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_inlet_event_extra.py.log @@ -0,0 +1,136 @@ +[2025-01-29T18:02:01.043+0000] {processor.py:186} INFO - Started process (PID=99) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:02:01.044+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:02:01.046+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.046+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:02:01.642+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:02:01.755+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.754+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:read_dataset_event_from_classic +[2025-01-29T18:02:01.766+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.766+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:read_dataset_event_from_classic +[2025-01-29T18:02:01.773+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.773+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:read_dataset_event_from_classic +[2025-01-29T18:02:01.781+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.781+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:read_dataset_event_from_classic +[2025-01-29T18:02:01.787+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.787+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:read_dataset_event_from_classic +[2025-01-29T18:02:01.793+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.793+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:read_dataset_event_from_classic +[2025-01-29T18:02:01.800+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.800+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:read_dataset_event_from_classic +[2025-01-29T18:02:01.813+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.812+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:read_dataset_event +[2025-01-29T18:02:01.819+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.818+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:read_dataset_event +[2025-01-29T18:02:01.826+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.826+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:read_dataset_event +[2025-01-29T18:02:01.833+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.833+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:read_dataset_event +[2025-01-29T18:02:01.841+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.840+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:read_dataset_event +[2025-01-29T18:02:01.848+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.847+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:read_dataset_event +[2025-01-29T18:02:01.865+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.865+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:read_dataset_event +[2025-01-29T18:02:01.866+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.866+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:02:01.879+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.879+0000] {dag.py:3262} INFO - Creating ORM DAG for read_dataset_event_from_classic +[2025-01-29T18:02:01.880+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.880+0000] {dag.py:3262} INFO - Creating ORM DAG for read_dataset_event +[2025-01-29T18:02:01.890+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.890+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:01.892+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.891+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:01.910+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.872 seconds +[2025-01-29T18:02:32.214+0000] {processor.py:186} INFO - Started process (PID=162) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:02:32.216+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:02:32.219+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.218+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:02:33.018+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:02:33.043+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.043+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:02:33.065+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.064+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:33.070+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.069+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:33.082+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.875 seconds +[2025-01-29T18:03:03.559+0000] {processor.py:186} INFO - Started process (PID=229) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:03:03.561+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:03:03.563+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.563+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:03:04.122+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:03:04.145+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.145+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:03:04.165+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.165+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:04.169+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.169+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:04.185+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.633 seconds +[2025-01-29T18:03:35.029+0000] {processor.py:186} INFO - Started process (PID=292) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:03:35.031+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:03:35.033+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.033+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:03:35.508+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:03:35.527+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.527+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:03:35.546+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.545+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:35.550+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.549+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:35.566+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.541 seconds +[2025-01-29T18:04:05.871+0000] {processor.py:186} INFO - Started process (PID=353) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:04:05.872+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:04:05.875+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.874+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:04:06.451+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event', 'read_dataset_event_from_classic' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:04:06.471+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.471+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:04:06.494+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.494+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:06.498+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.498+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:06.516+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.651 seconds +[2025-01-29T18:04:36.938+0000] {processor.py:186} INFO - Started process (PID=416) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:04:36.940+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:04:36.942+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.941+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:04:37.384+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:04:37.404+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.404+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:04:37.424+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.424+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:37.429+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.428+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:37.445+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.512 seconds +[2025-01-29T18:05:07.672+0000] {processor.py:186} INFO - Started process (PID=478) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:05:07.673+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:05:07.675+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.675+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:05:08.109+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:05:08.127+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.127+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:05:08.152+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.151+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:08.156+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.155+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:08.171+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.504 seconds +[2025-01-29T18:05:39.093+0000] {processor.py:186} INFO - Started process (PID=541) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:05:39.094+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:05:39.097+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.096+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:05:39.609+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event', 'read_dataset_event_from_classic' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:05:39.629+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.629+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:05:39.654+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.654+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:39.659+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.659+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:39.677+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.589 seconds +[2025-01-29T18:06:09.857+0000] {processor.py:186} INFO - Started process (PID=607) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:06:09.858+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:06:09.861+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.860+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:06:10.423+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:06:10.446+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.446+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:06:10.480+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.479+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:10.484+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.484+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:10.504+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.651 seconds +[2025-01-29T18:06:40.695+0000] {processor.py:186} INFO - Started process (PID=672) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:06:40.696+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:06:40.699+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.698+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:06:41.152+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:06:41.172+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.171+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:06:41.191+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.191+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:41.195+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.195+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:41.213+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.524 seconds +[2025-01-29T18:07:11.652+0000] {processor.py:186} INFO - Started process (PID=735) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:07:11.654+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:07:11.656+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.656+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:07:12.105+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event', 'read_dataset_event_from_classic' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:07:12.124+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.124+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:07:12.145+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.145+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:12.150+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.150+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:12.169+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.525 seconds +[2025-01-29T18:07:42.478+0000] {processor.py:186} INFO - Started process (PID=799) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:07:42.479+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:07:42.481+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.481+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:07:43.111+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event', 'read_dataset_event_from_classic' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:07:43.144+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.144+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:07:43.167+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.166+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:43.171+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.171+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:43.188+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.715 seconds +[2025-01-29T18:08:13.343+0000] {processor.py:186} INFO - Started process (PID=863) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:08:13.344+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:08:13.346+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.346+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:08:13.833+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:08:13.854+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.854+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:08:13.898+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.898+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:13.904+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.903+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:13.933+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.598 seconds +[2025-01-29T18:08:44.374+0000] {processor.py:186} INFO - Started process (PID=925) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:08:44.377+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:08:44.380+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.380+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:08:44.880+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event', 'read_dataset_event_from_classic' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:08:44.901+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.900+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:08:44.926+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.926+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:44.932+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.932+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:44.950+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.581 seconds +[2025-01-29T18:09:15.294+0000] {processor.py:186} INFO - Started process (PID=989) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:09:15.295+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py for tasks to queue +[2025-01-29T18:09:15.297+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.297+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:09:15.750+0000] {processor.py:925} INFO - DAG(s) 'read_dataset_event_from_classic', 'read_dataset_event' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py +[2025-01-29T18:09:15.770+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.770+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:09:15.789+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.789+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:15.793+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.793+0000] {dag.py:4180} INFO - Setting next_dagrun for read_dataset_event_from_classic to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:15.808+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_inlet_event_extra.py took 0.519 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_kubernetes_executor.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_kubernetes_executor.py.log new file mode 100644 index 0000000000..886b7f3823 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_kubernetes_executor.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:03.515+0000] {processor.py:186} INFO - Started process (PID=115) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:02:03.516+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:02:03.518+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.518+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:02:03.548+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:02:03.668+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.667+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_kubernetes_executor +[2025-01-29T18:02:03.680+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.680+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_kubernetes_executor +[2025-01-29T18:02:03.687+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.687+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_kubernetes_executor +[2025-01-29T18:02:03.695+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.695+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_kubernetes_executor +[2025-01-29T18:02:03.702+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.702+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_kubernetes_executor +[2025-01-29T18:02:03.708+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.708+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_kubernetes_executor +[2025-01-29T18:02:03.714+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.714+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_kubernetes_executor +[2025-01-29T18:02:03.714+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.714+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:03.729+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.729+0000] {dag.py:3262} INFO - Creating ORM DAG for example_kubernetes_executor +[2025-01-29T18:02:03.730+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.730+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:02:03.747+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.239 seconds +[2025-01-29T18:02:34.655+0000] {processor.py:186} INFO - Started process (PID=178) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:02:34.657+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:02:34.659+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.659+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:02:34.674+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:02:34.697+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.696+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:34.709+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.709+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:02:34.726+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.077 seconds +[2025-01-29T18:03:05.617+0000] {processor.py:186} INFO - Started process (PID=241) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:03:05.618+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:03:05.621+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.620+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:03:05.633+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:03:05.655+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.655+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:05.666+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.666+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:03:05.685+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.074 seconds +[2025-01-29T18:03:35.863+0000] {processor.py:186} INFO - Started process (PID=304) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:03:35.865+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:03:35.867+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.866+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:03:35.878+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:03:35.901+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.901+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.912+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.912+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:03:35.929+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.071 seconds +[2025-01-29T18:04:07.232+0000] {processor.py:186} INFO - Started process (PID=367) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:04:07.233+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:04:07.235+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.235+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:04:07.247+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:04:07.268+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.268+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:07.280+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.280+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:04:07.298+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.072 seconds +[2025-01-29T18:04:38.127+0000] {processor.py:186} INFO - Started process (PID=430) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:04:38.128+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:04:38.130+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.130+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:04:38.141+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:04:38.162+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.162+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:38.175+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.175+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:04:38.192+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.070 seconds +[2025-01-29T18:05:08.975+0000] {processor.py:186} INFO - Started process (PID=493) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:05:08.977+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:05:08.981+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.980+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:05:08.998+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:05:09.024+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:09.024+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:09.037+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:09.037+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:05:09.057+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.089 seconds +[2025-01-29T18:05:40.231+0000] {processor.py:186} INFO - Started process (PID=556) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:05:40.233+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:05:40.234+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.234+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:05:40.245+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:05:40.269+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.269+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:40.280+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.280+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:05:40.299+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.072 seconds +[2025-01-29T18:06:10.920+0000] {processor.py:186} INFO - Started process (PID=619) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:06:10.921+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:06:10.923+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.923+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:06:10.934+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:06:10.960+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.960+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.976+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.976+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:06:10.997+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.081 seconds +[2025-01-29T18:06:41.603+0000] {processor.py:186} INFO - Started process (PID=682) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:06:41.604+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:06:41.606+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.606+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:06:41.618+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:06:41.642+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.642+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:41.654+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.654+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:06:41.673+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.075 seconds +[2025-01-29T18:07:12.753+0000] {processor.py:186} INFO - Started process (PID=746) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:07:12.755+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:07:12.757+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.756+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:07:12.769+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:07:12.789+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.789+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.801+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.801+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:07:12.818+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.070 seconds +[2025-01-29T18:07:43.819+0000] {processor.py:186} INFO - Started process (PID=810) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:07:43.821+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:07:43.826+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.825+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:07:43.840+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:07:43.866+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.865+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.880+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.880+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:07:43.899+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.085 seconds +[2025-01-29T18:08:14.527+0000] {processor.py:186} INFO - Started process (PID=874) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:08:14.528+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:08:14.530+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.530+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:08:14.544+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:08:14.567+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.566+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.579+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.578+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:08:14.607+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.086 seconds +[2025-01-29T18:08:45.536+0000] {processor.py:186} INFO - Started process (PID=938) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:08:45.537+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:08:45.539+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.539+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:08:45.552+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:08:45.573+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.572+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.586+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.585+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:08:45.604+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.074 seconds +[2025-01-29T18:09:16.447+0000] {processor.py:186} INFO - Started process (PID=1002) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:09:16.448+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py for tasks to queue +[2025-01-29T18:09:16.450+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.450+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:09:16.462+0000] {processor.py:925} INFO - DAG(s) 'example_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py +[2025-01-29T18:09:16.482+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.482+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:16.493+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.493+0000] {dag.py:4180} INFO - Setting next_dagrun for example_kubernetes_executor to None, run_after=None +[2025-01-29T18:09:16.509+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_kubernetes_executor.py took 0.067 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_latest_only.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_latest_only.py.log new file mode 100644 index 0000000000..1493fe8dc2 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_latest_only.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:02.733+0000] {processor.py:186} INFO - Started process (PID=108) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:02:02.734+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:02:02.736+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.736+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:02:02.744+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:02:02.854+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.853+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:latest_only +[2025-01-29T18:02:02.867+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.866+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:latest_only +[2025-01-29T18:02:02.874+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.873+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:latest_only +[2025-01-29T18:02:02.883+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.883+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:latest_only +[2025-01-29T18:02:02.890+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.890+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:latest_only +[2025-01-29T18:02:02.899+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.898+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:latest_only +[2025-01-29T18:02:02.906+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.906+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:latest_only +[2025-01-29T18:02:02.907+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.906+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:02.919+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.919+0000] {dag.py:3262} INFO - Creating ORM DAG for latest_only +[2025-01-29T18:02:02.930+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.930+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:02:02.945+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.220 seconds +[2025-01-29T18:02:33.235+0000] {processor.py:186} INFO - Started process (PID=171) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:02:33.236+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:02:33.238+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.237+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:02:33.245+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:02:33.261+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.260+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:33.280+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.280+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:02:33.296+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.068 seconds +[2025-01-29T18:03:04.219+0000] {processor.py:186} INFO - Started process (PID=234) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:03:04.221+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:03:04.223+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.223+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:03:04.233+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:03:04.271+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.270+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:04.296+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.296+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:03:04.311+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.100 seconds +[2025-01-29T18:03:35.574+0000] {processor.py:186} INFO - Started process (PID=297) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:03:35.575+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:03:35.577+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.577+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:03:35.583+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:03:35.601+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.601+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.620+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.620+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:03:35.634+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.065 seconds +[2025-01-29T18:04:06.909+0000] {processor.py:186} INFO - Started process (PID=360) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:04:06.910+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:04:06.913+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.913+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:04:06.919+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:04:06.941+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.941+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:06.961+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.960+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:04:06.979+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.079 seconds +[2025-01-29T18:04:37.816+0000] {processor.py:186} INFO - Started process (PID=423) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:04:37.817+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:04:37.819+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.819+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:04:37.826+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:04:37.845+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.845+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:37.877+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.877+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:04:37.894+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.083 seconds +[2025-01-29T18:05:08.599+0000] {processor.py:186} INFO - Started process (PID=486) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:05:08.600+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:05:08.602+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.602+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:05:08.608+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:05:08.628+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.628+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.648+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.648+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:05:08.669+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.075 seconds +[2025-01-29T18:05:39.810+0000] {processor.py:186} INFO - Started process (PID=549) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:05:39.811+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:05:39.814+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.814+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:05:39.820+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:05:39.838+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.838+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:39.855+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.855+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:05:39.874+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.069 seconds +[2025-01-29T18:06:10.602+0000] {processor.py:186} INFO - Started process (PID=612) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:06:10.603+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:06:10.605+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.605+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:06:10.612+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:06:10.631+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.631+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.653+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.653+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:06:10.672+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.077 seconds +[2025-01-29T18:06:41.160+0000] {processor.py:186} INFO - Started process (PID=675) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:06:41.162+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:06:41.164+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.163+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:06:41.170+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:06:41.188+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.188+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:41.209+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.208+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:06:41.229+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.074 seconds +[2025-01-29T18:07:12.386+0000] {processor.py:186} INFO - Started process (PID=739) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:07:12.387+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:07:12.389+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.389+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:07:12.395+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:07:12.414+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.414+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.434+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.434+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:07:12.450+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.069 seconds +[2025-01-29T18:07:43.338+0000] {processor.py:186} INFO - Started process (PID=803) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:07:43.339+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:07:43.341+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.341+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:07:43.348+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:07:43.368+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.368+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.389+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.389+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:07:43.405+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.072 seconds +[2025-01-29T18:08:14.222+0000] {processor.py:186} INFO - Started process (PID=867) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:08:14.223+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:08:14.226+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.225+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:08:14.233+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:08:14.251+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.251+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.272+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.272+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:08:14.286+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.072 seconds +[2025-01-29T18:08:45.197+0000] {processor.py:186} INFO - Started process (PID=931) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:08:45.198+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:08:45.200+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.200+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:08:45.206+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:08:45.225+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.225+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.246+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.246+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:08:45.264+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.073 seconds +[2025-01-29T18:09:16.111+0000] {processor.py:186} INFO - Started process (PID=995) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:09:16.112+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py for tasks to queue +[2025-01-29T18:09:16.114+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.114+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:09:16.120+0000] {processor.py:925} INFO - DAG(s) 'latest_only' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py +[2025-01-29T18:09:16.139+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.138+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:16.156+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.156+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:09:16.174+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only.py took 0.068 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_latest_only_with_trigger.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_latest_only_with_trigger.py.log new file mode 100644 index 0000000000..0eaf208aeb --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_latest_only_with_trigger.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:54.045+0000] {processor.py:186} INFO - Started process (PID=67) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:01:54.046+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:01:54.049+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.049+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:01:54.060+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:01:54.195+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.194+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:latest_only_with_trigger +[2025-01-29T18:01:54.211+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.210+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:latest_only_with_trigger +[2025-01-29T18:01:54.218+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.218+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:latest_only_with_trigger +[2025-01-29T18:01:54.227+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.226+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:latest_only_with_trigger +[2025-01-29T18:01:54.234+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.234+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:latest_only_with_trigger +[2025-01-29T18:01:54.242+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.241+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:latest_only_with_trigger +[2025-01-29T18:01:54.249+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.249+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:latest_only_with_trigger +[2025-01-29T18:01:54.250+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.250+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:54.266+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.266+0000] {dag.py:3262} INFO - Creating ORM DAG for latest_only_with_trigger +[2025-01-29T18:01:54.279+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.278+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:01:54.299+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.260 seconds +[2025-01-29T18:02:25.126+0000] {processor.py:186} INFO - Started process (PID=130) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:02:25.130+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:02:25.132+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.131+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:02:25.138+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:02:25.157+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.157+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:25.174+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.174+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:02:25.193+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.072 seconds +[2025-01-29T18:02:56.078+0000] {processor.py:186} INFO - Started process (PID=193) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:02:56.079+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:02:56.081+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.081+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:02:56.087+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:02:56.105+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.105+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:56.125+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.125+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:02:56.143+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.071 seconds +[2025-01-29T18:03:27.048+0000] {processor.py:186} INFO - Started process (PID=256) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:03:27.050+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:03:27.053+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.052+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:03:27.059+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:03:27.080+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.080+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:27.104+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.104+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:03:27.138+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.095 seconds +[2025-01-29T18:03:57.390+0000] {processor.py:186} INFO - Started process (PID=319) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:03:57.391+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:03:57.393+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.393+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:03:57.402+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:03:57.426+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.426+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:57.457+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.457+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:03:57.482+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.099 seconds +[2025-01-29T18:04:27.673+0000] {processor.py:186} INFO - Started process (PID=382) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:04:27.674+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:04:27.676+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.676+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:04:27.682+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:04:27.700+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.700+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:27.720+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.720+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:04:27.745+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.077 seconds +[2025-01-29T18:04:58.588+0000] {processor.py:186} INFO - Started process (PID=445) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:04:58.590+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:04:58.592+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.592+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:04:58.598+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:04:58.617+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.616+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:58.636+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.635+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:04:58.654+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.071 seconds +[2025-01-29T18:05:29.428+0000] {processor.py:186} INFO - Started process (PID=508) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:05:29.429+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:05:29.431+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.431+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:05:29.440+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:05:29.460+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.460+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:29.508+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.507+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:05:29.525+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.102 seconds +[2025-01-29T18:05:59.722+0000] {processor.py:186} INFO - Started process (PID=571) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:05:59.723+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:05:59.725+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.725+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:05:59.736+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:05:59.753+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.753+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:59.774+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.774+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:05:59.792+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.076 seconds +[2025-01-29T18:06:30.437+0000] {processor.py:186} INFO - Started process (PID=634) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:06:30.443+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:06:30.446+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.445+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:06:30.451+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:06:30.472+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.471+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:30.492+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.491+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:06:30.513+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.081 seconds +[2025-01-29T18:07:01.094+0000] {processor.py:186} INFO - Started process (PID=698) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:07:01.100+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:07:01.103+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.102+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:07:01.109+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:07:01.134+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.133+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:01.154+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.154+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:07:01.176+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.088 seconds +[2025-01-29T18:07:31.263+0000] {processor.py:186} INFO - Started process (PID=762) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:07:31.264+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:07:31.266+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.266+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:07:31.272+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:07:31.291+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.290+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:31.328+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.327+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:07:31.347+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.090 seconds +[2025-01-29T18:08:01.415+0000] {processor.py:186} INFO - Started process (PID=826) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:08:01.421+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:08:01.423+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.423+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:08:01.429+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:08:01.447+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.447+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:01.465+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.464+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:08:01.482+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.072 seconds +[2025-01-29T18:08:31.991+0000] {processor.py:186} INFO - Started process (PID=890) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:08:31.997+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:08:32.000+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.000+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:08:32.005+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:08:32.026+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.026+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:32.046+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.046+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:08:32.065+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.079 seconds +[2025-01-29T18:09:02.958+0000] {processor.py:186} INFO - Started process (PID=954) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:09:02.960+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py for tasks to queue +[2025-01-29T18:09:02.962+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:02.962+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:09:02.968+0000] {processor.py:925} INFO - DAG(s) 'latest_only_with_trigger' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py +[2025-01-29T18:09:02.986+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:02.985+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:03.003+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.002+0000] {dag.py:4180} INFO - Setting next_dagrun for latest_only_with_trigger to 2025-01-29 12:00:00+00:00, run_after=2025-01-29 16:00:00+00:00 +[2025-01-29T18:09:03.020+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_latest_only_with_trigger.py took 0.069 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_local_kubernetes_executor.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_local_kubernetes_executor.py.log new file mode 100644 index 0000000000..6acadbcbeb --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_local_kubernetes_executor.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:02.576+0000] {processor.py:186} INFO - Started process (PID=107) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:02:02.578+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:02:02.581+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.580+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:02:02.593+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:02:02.696+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.695+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_local_kubernetes_executor +[2025-01-29T18:02:02.708+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.708+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_local_kubernetes_executor +[2025-01-29T18:02:02.716+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.716+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_local_kubernetes_executor +[2025-01-29T18:02:02.724+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.724+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_local_kubernetes_executor +[2025-01-29T18:02:02.730+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.730+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_local_kubernetes_executor +[2025-01-29T18:02:02.737+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.737+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_local_kubernetes_executor +[2025-01-29T18:02:02.744+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.744+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_local_kubernetes_executor +[2025-01-29T18:02:02.745+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.744+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:02.759+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.758+0000] {dag.py:3262} INFO - Creating ORM DAG for example_local_kubernetes_executor +[2025-01-29T18:02:02.759+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.759+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:02:02.775+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.208 seconds +[2025-01-29T18:02:33.199+0000] {processor.py:186} INFO - Started process (PID=170) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:02:33.200+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:02:33.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.202+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:02:33.212+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:02:33.234+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.234+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:33.250+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.250+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:02:33.265+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.072 seconds +[2025-01-29T18:03:04.141+0000] {processor.py:186} INFO - Started process (PID=233) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:03:04.142+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:03:04.145+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.145+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:03:04.156+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:03:04.179+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.178+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:04.191+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.191+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:03:04.214+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.079 seconds +[2025-01-29T18:03:35.492+0000] {processor.py:186} INFO - Started process (PID=296) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:03:35.493+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:03:35.496+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.495+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:03:35.504+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:03:35.523+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.523+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.535+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.535+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:03:35.551+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.064 seconds +[2025-01-29T18:04:06.853+0000] {processor.py:186} INFO - Started process (PID=359) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:04:06.855+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:04:06.858+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.858+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:04:06.870+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:04:06.891+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.891+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:06.902+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.902+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:04:06.924+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.078 seconds +[2025-01-29T18:04:37.728+0000] {processor.py:186} INFO - Started process (PID=422) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:04:37.730+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:04:37.732+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.732+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:04:37.741+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:04:37.762+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.762+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:37.775+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.775+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:04:37.793+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.071 seconds +[2025-01-29T18:05:08.585+0000] {processor.py:186} INFO - Started process (PID=485) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:05:08.587+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:05:08.589+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.588+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:05:08.597+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:05:08.620+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.619+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.631+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.631+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:05:08.648+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.070 seconds +[2025-01-29T18:05:39.804+0000] {processor.py:186} INFO - Started process (PID=548) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:05:39.805+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:05:39.807+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.807+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:05:39.817+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:05:39.837+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.837+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:39.848+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.848+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:05:39.867+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.068 seconds +[2025-01-29T18:06:10.544+0000] {processor.py:186} INFO - Started process (PID=611) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:06:10.545+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:06:10.547+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.547+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:06:10.559+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:06:10.580+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.580+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.596+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.596+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:06:10.613+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.078 seconds +[2025-01-29T18:06:41.078+0000] {processor.py:186} INFO - Started process (PID=674) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:06:41.080+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:06:41.082+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.082+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:06:41.091+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:06:41.111+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.111+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:41.123+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.122+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:06:41.138+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.065 seconds +[2025-01-29T18:07:12.305+0000] {processor.py:186} INFO - Started process (PID=738) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:07:12.307+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:07:12.309+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.309+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:07:12.317+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:07:12.336+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.336+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.347+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.346+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:07:12.364+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.064 seconds +[2025-01-29T18:07:43.261+0000] {processor.py:186} INFO - Started process (PID=802) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:07:43.262+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:07:43.264+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.264+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:07:43.273+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:07:43.291+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.291+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.304+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.303+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:07:43.320+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.067 seconds +[2025-01-29T18:08:14.130+0000] {processor.py:186} INFO - Started process (PID=866) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:08:14.132+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:08:14.134+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.133+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:08:14.142+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:08:14.164+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.164+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.175+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.175+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:08:14.194+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.069 seconds +[2025-01-29T18:08:45.186+0000] {processor.py:186} INFO - Started process (PID=930) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:08:45.187+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:08:45.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.189+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:08:45.198+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:08:45.217+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.217+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.228+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.228+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:08:45.245+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.066 seconds +[2025-01-29T18:09:16.031+0000] {processor.py:186} INFO - Started process (PID=994) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:09:16.032+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py for tasks to queue +[2025-01-29T18:09:16.034+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.033+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:09:16.041+0000] {processor.py:925} INFO - DAG(s) 'example_local_kubernetes_executor' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py +[2025-01-29T18:09:16.060+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.060+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:16.072+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.072+0000] {dag.py:4180} INFO - Setting next_dagrun for example_local_kubernetes_executor to None, run_after=None +[2025-01-29T18:09:16.089+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_local_kubernetes_executor.py took 0.063 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_nested_branch_dag.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_nested_branch_dag.py.log new file mode 100644 index 0000000000..f8a25573eb --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_nested_branch_dag.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:57.853+0000] {processor.py:186} INFO - Started process (PID=88) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:01:57.854+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:01:57.857+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.856+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:01:57.873+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:01:57.979+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.978+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_nested_branch_dag +[2025-01-29T18:01:57.988+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.987+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_nested_branch_dag +[2025-01-29T18:01:57.995+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.995+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_nested_branch_dag +[2025-01-29T18:01:58.004+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.003+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_nested_branch_dag +[2025-01-29T18:01:58.011+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.010+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_nested_branch_dag +[2025-01-29T18:01:58.018+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.018+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_nested_branch_dag +[2025-01-29T18:01:58.025+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.025+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_nested_branch_dag +[2025-01-29T18:01:58.025+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.025+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:58.038+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.038+0000] {dag.py:3262} INFO - Creating ORM DAG for example_nested_branch_dag +[2025-01-29T18:01:58.049+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.049+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:58.066+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.220 seconds +[2025-01-29T18:02:28.609+0000] {processor.py:186} INFO - Started process (PID=151) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:02:28.611+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:02:28.613+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.612+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:02:28.623+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:02:28.643+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.643+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:28.664+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.664+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:28.682+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.079 seconds +[2025-01-29T18:02:59.770+0000] {processor.py:186} INFO - Started process (PID=214) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:02:59.771+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:02:59.773+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.773+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:02:59.787+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:02:59.813+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.812+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:59.843+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.842+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:59.868+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.103 seconds +[2025-01-29T18:03:30.231+0000] {processor.py:186} INFO - Started process (PID=277) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:03:30.232+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:03:30.234+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.234+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:03:30.246+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:03:30.266+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.266+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:30.299+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.299+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:30.321+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.096 seconds +[2025-01-29T18:04:00.451+0000] {processor.py:186} INFO - Started process (PID=339) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:04:00.452+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:04:00.453+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.453+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:04:00.463+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:04:00.482+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.482+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.503+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:00.522+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.076 seconds +[2025-01-29T18:04:30.684+0000] {processor.py:186} INFO - Started process (PID=402) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:04:30.685+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:04:30.687+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.687+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:04:30.697+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:04:30.716+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.716+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.737+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.737+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:30.755+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.079 seconds +[2025-01-29T18:05:01.559+0000] {processor.py:186} INFO - Started process (PID=465) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:05:01.561+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:05:01.562+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.562+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:05:01.573+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:05:01.595+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.595+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.616+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.616+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:01.637+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.084 seconds +[2025-01-29T18:05:32.456+0000] {processor.py:186} INFO - Started process (PID=528) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:05:32.458+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:05:32.460+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.459+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:05:32.469+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:05:32.489+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.489+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.509+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.509+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:32.525+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.073 seconds +[2025-01-29T18:06:02.746+0000] {processor.py:186} INFO - Started process (PID=591) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:06:02.747+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:06:02.749+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.749+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:06:02.760+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:06:02.781+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.781+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.805+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.804+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:02.826+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.085 seconds +[2025-01-29T18:06:33.503+0000] {processor.py:186} INFO - Started process (PID=654) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:06:33.505+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:06:33.506+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.506+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:06:33.516+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:06:33.536+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.536+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.555+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.555+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:33.573+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.075 seconds +[2025-01-29T18:07:04.217+0000] {processor.py:186} INFO - Started process (PID=718) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:07:04.218+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:07:04.220+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.220+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:07:04.229+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:07:04.249+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.248+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:04.267+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.267+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:04.285+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.073 seconds +[2025-01-29T18:07:34.441+0000] {processor.py:186} INFO - Started process (PID=782) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:07:34.442+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:07:34.444+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.444+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:07:34.455+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:07:34.475+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.475+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.496+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.496+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:34.514+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.078 seconds +[2025-01-29T18:08:05.447+0000] {processor.py:186} INFO - Started process (PID=846) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:08:05.448+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:08:05.449+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.449+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:08:05.458+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:08:05.476+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.476+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.493+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.493+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:05.507+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.064 seconds +[2025-01-29T18:08:35.940+0000] {processor.py:186} INFO - Started process (PID=910) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:08:35.941+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:08:35.943+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.943+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:08:35.953+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:08:35.970+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.970+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:35.989+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.988+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:36.006+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.071 seconds +[2025-01-29T18:09:06.104+0000] {processor.py:186} INFO - Started process (PID=974) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:09:06.105+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py for tasks to queue +[2025-01-29T18:09:06.107+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.107+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:09:06.117+0000] {processor.py:925} INFO - DAG(s) 'example_nested_branch_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py +[2025-01-29T18:09:06.136+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.136+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:06.155+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.155+0000] {dag.py:4180} INFO - Setting next_dagrun for example_nested_branch_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:06.173+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_nested_branch_dag.py took 0.075 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_outlet_event_extra.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_outlet_event_extra.py.log new file mode 100644 index 0000000000..5fd93a8a40 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_outlet_event_extra.py.log @@ -0,0 +1,159 @@ +[2025-01-29T18:02:00.448+0000] {processor.py:186} INFO - Started process (PID=96) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:02:00.449+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:02:00.452+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.452+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:02:01.083+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_context', 'dataset_with_extra_from_classic_operator', 'dataset_with_extra_by_yield' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:02:01.198+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.197+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_with_extra_by_context +[2025-01-29T18:02:01.214+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.214+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_with_extra_by_context +[2025-01-29T18:02:01.224+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.224+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_with_extra_by_context +[2025-01-29T18:02:01.236+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.236+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_with_extra_by_context +[2025-01-29T18:02:01.245+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.245+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_with_extra_by_context +[2025-01-29T18:02:01.252+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.251+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_with_extra_by_context +[2025-01-29T18:02:01.263+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.263+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_with_extra_by_context +[2025-01-29T18:02:01.340+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.340+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_with_extra_from_classic_operator +[2025-01-29T18:02:01.371+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.371+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_with_extra_from_classic_operator +[2025-01-29T18:02:01.406+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.405+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_with_extra_from_classic_operator +[2025-01-29T18:02:01.437+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.436+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_with_extra_from_classic_operator +[2025-01-29T18:02:01.448+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.448+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_with_extra_from_classic_operator +[2025-01-29T18:02:01.455+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.455+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_with_extra_from_classic_operator +[2025-01-29T18:02:01.474+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.474+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_with_extra_from_classic_operator +[2025-01-29T18:02:01.494+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.493+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:dataset_with_extra_by_yield +[2025-01-29T18:02:01.501+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.500+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:dataset_with_extra_by_yield +[2025-01-29T18:02:01.509+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.507+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:dataset_with_extra_by_yield +[2025-01-29T18:02:01.518+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.517+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:dataset_with_extra_by_yield +[2025-01-29T18:02:01.526+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.525+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:dataset_with_extra_by_yield +[2025-01-29T18:02:01.535+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.534+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:dataset_with_extra_by_yield +[2025-01-29T18:02:01.542+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.541+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:dataset_with_extra_by_yield +[2025-01-29T18:02:01.542+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.542+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:02:01.553+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.552+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_with_extra_by_context +[2025-01-29T18:02:01.553+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.553+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_with_extra_from_classic_operator +[2025-01-29T18:02:01.554+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.554+0000] {dag.py:3262} INFO - Creating ORM DAG for dataset_with_extra_by_yield +[2025-01-29T18:02:01.565+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.565+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:01.566+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.566+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:01.568+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.568+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:01.595+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 1.154 seconds +[2025-01-29T18:02:31.661+0000] {processor.py:186} INFO - Started process (PID=161) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:02:31.662+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:02:31.664+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.663+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:02:32.116+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_context', 'dataset_with_extra_from_classic_operator', 'dataset_with_extra_by_yield' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:02:32.136+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.136+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:02:32.153+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.153+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:32.157+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.157+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:32.159+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.159+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:32.183+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.528 seconds +[2025-01-29T18:03:03.008+0000] {processor.py:186} INFO - Started process (PID=224) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:03:03.010+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:03:03.013+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.012+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:03:03.575+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_yield', 'dataset_with_extra_from_classic_operator', 'dataset_with_extra_by_context' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:03:03.600+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.599+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:03:03.628+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.628+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:03.632+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.632+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:03.635+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.635+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:03.659+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.662 seconds +[2025-01-29T18:03:34.449+0000] {processor.py:186} INFO - Started process (PID=285) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:03:34.450+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:03:34.452+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.452+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:03:34.922+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_context', 'dataset_with_extra_from_classic_operator', 'dataset_with_extra_by_yield' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:03:34.956+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.955+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:03:34.975+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.975+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:34.979+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.979+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:34.981+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.981+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:35.001+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.559 seconds +[2025-01-29T18:04:05.794+0000] {processor.py:186} INFO - Started process (PID=352) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:04:05.795+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:04:05.797+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.797+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:04:06.399+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_context', 'dataset_with_extra_by_yield', 'dataset_with_extra_from_classic_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:04:06.429+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.429+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:04:06.451+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.451+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:06.455+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.455+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:06.459+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.459+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:06.492+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.705 seconds +[2025-01-29T18:04:36.883+0000] {processor.py:186} INFO - Started process (PID=415) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:04:36.884+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:04:36.886+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.886+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:04:37.405+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_yield', 'dataset_with_extra_from_classic_operator', 'dataset_with_extra_by_context' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:04:37.426+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.426+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:04:37.447+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.447+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:37.452+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.452+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:37.455+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.455+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:37.475+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.598 seconds +[2025-01-29T18:05:07.655+0000] {processor.py:186} INFO - Started process (PID=477) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:05:07.656+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:05:07.658+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.658+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:05:08.106+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_yield', 'dataset_with_extra_by_context', 'dataset_with_extra_from_classic_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:05:08.129+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.129+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:05:08.152+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.151+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:08.156+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.156+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:08.159+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.159+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:08.175+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.525 seconds +[2025-01-29T18:05:38.600+0000] {processor.py:186} INFO - Started process (PID=540) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:05:38.601+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:05:38.604+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.603+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:05:39.007+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_context', 'dataset_with_extra_from_classic_operator', 'dataset_with_extra_by_yield' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:05:39.027+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.027+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:05:39.044+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.044+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:39.047+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.047+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:39.049+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.049+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:39.066+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.471 seconds +[2025-01-29T18:06:09.518+0000] {processor.py:186} INFO - Started process (PID=603) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:06:09.519+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:06:09.521+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.521+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:06:10.062+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_context', 'dataset_with_extra_by_yield', 'dataset_with_extra_from_classic_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:06:10.085+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.085+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:06:10.102+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.102+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:10.105+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.105+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:10.107+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.107+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:10.129+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.617 seconds +[2025-01-29T18:06:40.402+0000] {processor.py:186} INFO - Started process (PID=669) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:06:40.404+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:06:40.406+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.406+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:06:40.846+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_yield', 'dataset_with_extra_by_context', 'dataset_with_extra_from_classic_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:06:40.873+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.873+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:06:40.896+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.896+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:40.902+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.902+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:40.909+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.909+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:40.931+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.534 seconds +[2025-01-29T18:07:11.566+0000] {processor.py:186} INFO - Started process (PID=734) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:07:11.567+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:07:11.569+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.569+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:07:12.049+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_context', 'dataset_with_extra_by_yield', 'dataset_with_extra_from_classic_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:07:12.070+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.069+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:07:12.089+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.089+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:12.093+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.092+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:12.096+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.096+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:12.115+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.554 seconds +[2025-01-29T18:07:42.407+0000] {processor.py:186} INFO - Started process (PID=798) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:07:42.408+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:07:42.410+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.410+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:07:42.997+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_context', 'dataset_with_extra_by_yield', 'dataset_with_extra_from_classic_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:07:43.028+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.027+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:07:43.065+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.065+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:43.072+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.071+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:43.077+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.077+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:43.112+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.711 seconds +[2025-01-29T18:08:13.294+0000] {processor.py:186} INFO - Started process (PID=862) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:08:13.295+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:08:13.297+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.297+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:08:13.835+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_yield', 'dataset_with_extra_by_context', 'dataset_with_extra_from_classic_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:08:13.874+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.873+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:08:13.907+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.906+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:13.912+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.911+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:13.914+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.914+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:13.933+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.645 seconds +[2025-01-29T18:08:44.299+0000] {processor.py:186} INFO - Started process (PID=924) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:08:44.300+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:08:44.302+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.301+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:08:44.797+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_from_classic_operator', 'dataset_with_extra_by_yield', 'dataset_with_extra_by_context' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:08:44.822+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.822+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:08:44.845+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.844+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:44.849+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.849+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:44.852+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.851+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:44.871+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.579 seconds +[2025-01-29T18:09:15.243+0000] {processor.py:186} INFO - Started process (PID=988) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:09:15.245+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py for tasks to queue +[2025-01-29T18:09:15.247+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.246+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:09:15.688+0000] {processor.py:925} INFO - DAG(s) 'dataset_with_extra_by_yield', 'dataset_with_extra_from_classic_operator', 'dataset_with_extra_by_context' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py +[2025-01-29T18:09:15.710+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.710+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:09:15.728+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.727+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_context to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:15.731+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.731+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_by_yield to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:15.733+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.733+0000] {dag.py:4180} INFO - Setting next_dagrun for dataset_with_extra_from_classic_operator to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:15.760+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_outlet_event_extra.py took 0.522 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_params_trigger_ui.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_params_trigger_ui.py.log new file mode 100644 index 0000000000..3f16f9629d --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_params_trigger_ui.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:58.708+0000] {processor.py:186} INFO - Started process (PID=93) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:01:58.709+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:01:58.712+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.712+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:01:58.730+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:01:58.895+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.894+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_params_trigger_ui +[2025-01-29T18:01:58.935+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.935+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_params_trigger_ui +[2025-01-29T18:01:58.946+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.945+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_params_trigger_ui +[2025-01-29T18:01:58.986+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.985+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_params_trigger_ui +[2025-01-29T18:01:59.013+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.013+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_params_trigger_ui +[2025-01-29T18:01:59.023+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.023+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_params_trigger_ui +[2025-01-29T18:01:59.051+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.050+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_params_trigger_ui +[2025-01-29T18:01:59.051+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.051+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:59.066+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.065+0000] {dag.py:3262} INFO - Creating ORM DAG for example_params_trigger_ui +[2025-01-29T18:01:59.066+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:59.066+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:01:59.090+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.390 seconds +[2025-01-29T18:02:29.810+0000] {processor.py:186} INFO - Started process (PID=155) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:02:29.817+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:02:29.820+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:29.819+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:02:29.834+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:02:29.877+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:29.877+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:29.894+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:29.893+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:02:29.923+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.120 seconds +[2025-01-29T18:03:00.156+0000] {processor.py:186} INFO - Started process (PID=218) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:03:00.157+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:03:00.172+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:00.171+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:03:00.187+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:03:00.234+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:00.233+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:00.251+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:00.251+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:03:00.285+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.137 seconds +[2025-01-29T18:03:30.661+0000] {processor.py:186} INFO - Started process (PID=281) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:03:30.662+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:03:30.664+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.664+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:03:30.674+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:03:30.724+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.724+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:30.736+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.735+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:03:30.755+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.101 seconds +[2025-01-29T18:04:00.799+0000] {processor.py:186} INFO - Started process (PID=344) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:04:00.800+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:04:00.802+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.802+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:04:00.812+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:04:00.846+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.846+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.858+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.858+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:04:00.876+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.082 seconds +[2025-01-29T18:04:30.927+0000] {processor.py:186} INFO - Started process (PID=406) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:04:30.929+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:04:30.931+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.930+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:04:30.939+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:04:30.975+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.974+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.986+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.986+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:04:31.003+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.081 seconds +[2025-01-29T18:05:01.761+0000] {processor.py:186} INFO - Started process (PID=469) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:05:01.763+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:05:01.765+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.765+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:05:01.775+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:05:01.816+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.815+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.828+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.828+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:05:01.847+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.091 seconds +[2025-01-29T18:05:32.655+0000] {processor.py:186} INFO - Started process (PID=532) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:05:32.656+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:05:32.658+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.658+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:05:32.668+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:05:32.706+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.706+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.719+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.719+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:05:32.736+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.086 seconds +[2025-01-29T18:06:03.054+0000] {processor.py:186} INFO - Started process (PID=595) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:06:03.055+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:06:03.057+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:03.057+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:06:03.066+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:06:03.099+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:03.099+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:03.110+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:03.110+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:06:03.128+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.081 seconds +[2025-01-29T18:06:33.690+0000] {processor.py:186} INFO - Started process (PID=658) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:06:33.692+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:06:33.694+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.693+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:06:33.702+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:06:33.743+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.743+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.757+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.757+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:06:33.783+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.099 seconds +[2025-01-29T18:07:04.401+0000] {processor.py:186} INFO - Started process (PID=722) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:07:04.402+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:07:04.404+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.404+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:07:04.414+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:07:04.454+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.454+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:04.466+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.465+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:07:04.483+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.088 seconds +[2025-01-29T18:07:34.645+0000] {processor.py:186} INFO - Started process (PID=786) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:07:34.646+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:07:34.649+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.648+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:07:34.661+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:07:34.709+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.709+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.723+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.722+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:07:34.743+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.105 seconds +[2025-01-29T18:08:05.712+0000] {processor.py:186} INFO - Started process (PID=850) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:08:05.714+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:08:05.715+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.715+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:08:05.724+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:08:05.760+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.760+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.777+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.776+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:08:05.799+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.093 seconds +[2025-01-29T18:08:36.118+0000] {processor.py:186} INFO - Started process (PID=914) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:08:36.120+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:08:36.122+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.121+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:08:36.131+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:08:36.167+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.167+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:36.180+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.179+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:08:36.195+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.082 seconds +[2025-01-29T18:09:06.286+0000] {processor.py:186} INFO - Started process (PID=978) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:09:06.287+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py for tasks to queue +[2025-01-29T18:09:06.290+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.290+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:09:06.299+0000] {processor.py:925} INFO - DAG(s) 'example_params_trigger_ui' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py +[2025-01-29T18:09:06.333+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.333+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:06.344+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.343+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_trigger_ui to None, run_after=None +[2025-01-29T18:09:06.359+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_trigger_ui.py took 0.078 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_params_ui_tutorial.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_params_ui_tutorial.py.log new file mode 100644 index 0000000000..d3c5ac9e5a --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_params_ui_tutorial.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:00.763+0000] {processor.py:186} INFO - Started process (PID=98) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:02:00.764+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:02:00.766+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.766+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:02:00.778+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:02:00.934+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.933+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_params_ui_tutorial +[2025-01-29T18:02:00.947+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.947+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_params_ui_tutorial +[2025-01-29T18:02:00.954+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.953+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_params_ui_tutorial +[2025-01-29T18:02:00.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.964+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_params_ui_tutorial +[2025-01-29T18:02:00.971+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.971+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_params_ui_tutorial +[2025-01-29T18:02:00.981+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.981+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_params_ui_tutorial +[2025-01-29T18:02:00.987+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.987+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_params_ui_tutorial +[2025-01-29T18:02:00.988+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.987+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:01.002+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.001+0000] {dag.py:3262} INFO - Creating ORM DAG for example_params_ui_tutorial +[2025-01-29T18:02:01.002+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.002+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:02:01.020+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.264 seconds +[2025-01-29T18:02:31.557+0000] {processor.py:186} INFO - Started process (PID=160) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:02:31.559+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:02:31.561+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.561+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:02:31.570+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:02:31.607+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.607+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:31.619+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.619+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:02:31.637+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.087 seconds +[2025-01-29T18:03:02.973+0000] {processor.py:186} INFO - Started process (PID=223) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:03:02.975+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:03:02.977+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.977+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:03:02.991+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:03:03.048+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.047+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:03.083+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.082+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:03:03.100+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.132 seconds +[2025-01-29T18:03:34.609+0000] {processor.py:186} INFO - Started process (PID=287) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:03:34.610+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:03:34.612+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.612+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:03:34.619+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:03:34.654+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.654+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:34.666+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.666+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:03:34.683+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.081 seconds +[2025-01-29T18:04:05.666+0000] {processor.py:186} INFO - Started process (PID=349) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:04:05.667+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:04:05.669+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.669+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:04:05.677+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:04:05.717+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.717+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:05.729+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.728+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:04:05.749+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.091 seconds +[2025-01-29T18:04:36.737+0000] {processor.py:186} INFO - Started process (PID=412) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:04:36.737+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:04:36.739+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.739+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:04:36.747+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:04:36.788+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.788+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:36.801+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.801+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:04:36.821+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.091 seconds +[2025-01-29T18:05:07.552+0000] {processor.py:186} INFO - Started process (PID=475) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:05:07.554+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:05:07.556+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.555+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:05:07.564+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:05:07.602+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.602+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:07.613+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.613+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:05:07.630+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.083 seconds +[2025-01-29T18:05:38.503+0000] {processor.py:186} INFO - Started process (PID=538) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:05:38.505+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:05:38.507+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.506+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:05:38.514+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:05:38.550+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.550+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:38.562+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.562+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:05:38.581+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.083 seconds +[2025-01-29T18:06:09.399+0000] {processor.py:186} INFO - Started process (PID=601) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:06:09.400+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:06:09.403+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.402+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:06:09.413+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:06:09.459+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.458+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:09.475+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.475+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:06:09.492+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.100 seconds +[2025-01-29T18:06:40.140+0000] {processor.py:186} INFO - Started process (PID=664) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:06:40.141+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:06:40.144+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.144+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:06:40.155+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:06:40.200+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.200+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:40.215+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.215+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:06:40.231+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.096 seconds +[2025-01-29T18:07:11.267+0000] {processor.py:186} INFO - Started process (PID=728) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:07:11.268+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:07:11.272+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.271+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:07:11.281+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:07:11.329+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.328+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:11.340+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.340+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:07:11.358+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.098 seconds +[2025-01-29T18:07:42.076+0000] {processor.py:186} INFO - Started process (PID=792) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:07:42.077+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:07:42.079+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.079+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:07:42.087+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:07:42.125+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.125+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:42.137+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.137+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:07:42.156+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.085 seconds +[2025-01-29T18:08:13.008+0000] {processor.py:186} INFO - Started process (PID=856) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:08:13.010+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:08:13.012+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.011+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:08:13.019+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:08:13.055+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.055+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:13.067+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.067+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:08:13.085+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.082 seconds +[2025-01-29T18:08:44.078+0000] {processor.py:186} INFO - Started process (PID=920) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:08:44.079+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:08:44.081+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.081+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:08:44.089+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:08:44.130+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.130+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:44.148+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.148+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:08:44.168+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.096 seconds +[2025-01-29T18:09:15.060+0000] {processor.py:186} INFO - Started process (PID=984) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:09:15.061+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py for tasks to queue +[2025-01-29T18:09:15.063+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.063+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:09:15.072+0000] {processor.py:925} INFO - DAG(s) 'example_params_ui_tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py +[2025-01-29T18:09:15.108+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.108+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.119+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.119+0000] {dag.py:4180} INFO - Setting next_dagrun for example_params_ui_tutorial to None, run_after=None +[2025-01-29T18:09:15.139+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_params_ui_tutorial.py took 0.083 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_passing_params_via_test_command.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_passing_params_via_test_command.py.log new file mode 100644 index 0000000000..b963743a26 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_passing_params_via_test_command.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:00.249+0000] {processor.py:186} INFO - Started process (PID=95) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:02:00.250+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:02:00.252+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.252+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:02:00.267+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:02:00.397+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.397+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_passing_params_via_test_command +[2025-01-29T18:02:00.408+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.407+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_passing_params_via_test_command +[2025-01-29T18:02:00.414+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.413+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_passing_params_via_test_command +[2025-01-29T18:02:00.421+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.421+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_passing_params_via_test_command +[2025-01-29T18:02:00.428+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.428+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_passing_params_via_test_command +[2025-01-29T18:02:00.434+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.434+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_passing_params_via_test_command +[2025-01-29T18:02:00.440+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.440+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_passing_params_via_test_command +[2025-01-29T18:02:00.441+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.441+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:00.453+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.453+0000] {dag.py:3262} INFO - Creating ORM DAG for example_passing_params_via_test_command +[2025-01-29T18:02:00.466+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:00.466+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:01:00+00:00, run_after=2025-01-29 18:02:00+00:00 +[2025-01-29T18:02:00.482+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.239 seconds +[2025-01-29T18:02:31.453+0000] {processor.py:186} INFO - Started process (PID=158) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:02:31.454+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:02:31.457+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.457+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:02:31.468+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:02:31.488+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.487+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:31.511+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:31.511+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:01:00+00:00, run_after=2025-01-29 18:02:00+00:00 +[2025-01-29T18:02:31.530+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.082 seconds +[2025-01-29T18:03:02.871+0000] {processor.py:186} INFO - Started process (PID=221) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:03:02.872+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:03:02.875+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.874+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:03:02.885+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:03:02.907+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.907+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:02.930+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:02.930+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:02:00+00:00, run_after=2025-01-29 18:03:00+00:00 +[2025-01-29T18:03:02.948+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.082 seconds +[2025-01-29T18:03:34.419+0000] {processor.py:186} INFO - Started process (PID=284) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:03:34.420+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:03:34.422+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.422+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:03:34.431+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:03:34.452+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.452+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:34.472+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.472+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:02:00+00:00, run_after=2025-01-29 18:03:00+00:00 +[2025-01-29T18:03:34.490+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.078 seconds +[2025-01-29T18:04:05.558+0000] {processor.py:186} INFO - Started process (PID=347) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:04:05.559+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:04:05.561+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.561+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:04:05.571+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:04:05.590+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.589+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:05.611+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.611+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:03:00+00:00, run_after=2025-01-29 18:04:00+00:00 +[2025-01-29T18:04:05.627+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.075 seconds +[2025-01-29T18:04:36.632+0000] {processor.py:186} INFO - Started process (PID=410) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:04:36.633+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:04:36.635+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.635+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:04:36.646+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:04:36.668+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.668+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:36.689+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.689+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:03:00+00:00, run_after=2025-01-29 18:04:00+00:00 +[2025-01-29T18:04:36.708+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.083 seconds +[2025-01-29T18:05:07.457+0000] {processor.py:186} INFO - Started process (PID=473) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:05:07.459+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:05:07.461+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.460+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:05:07.471+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:05:07.490+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.490+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:07.510+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.510+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:04:00+00:00, run_after=2025-01-29 18:05:00+00:00 +[2025-01-29T18:05:07.527+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.076 seconds +[2025-01-29T18:05:38.405+0000] {processor.py:186} INFO - Started process (PID=536) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:05:38.407+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:05:38.409+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.409+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:05:38.418+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:05:38.437+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.437+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:38.462+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.462+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:04:00+00:00, run_after=2025-01-29 18:05:00+00:00 +[2025-01-29T18:05:38.479+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.079 seconds +[2025-01-29T18:06:09.276+0000] {processor.py:186} INFO - Started process (PID=599) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:06:09.277+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:06:09.280+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.280+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:06:09.296+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:06:09.320+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.320+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:09.350+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.349+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:05:00+00:00, run_after=2025-01-29 18:06:00+00:00 +[2025-01-29T18:06:09.369+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.100 seconds +[2025-01-29T18:06:40.038+0000] {processor.py:186} INFO - Started process (PID=662) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:06:40.039+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:06:40.041+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.041+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:06:40.051+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:06:40.074+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.073+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:40.096+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.096+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:05:00+00:00, run_after=2025-01-29 18:06:00+00:00 +[2025-01-29T18:06:40.111+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.080 seconds +[2025-01-29T18:07:11.169+0000] {processor.py:186} INFO - Started process (PID=726) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:07:11.171+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:07:11.172+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.172+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:07:11.182+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:07:11.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.202+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:11.223+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.223+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:06:00+00:00, run_after=2025-01-29 18:07:00+00:00 +[2025-01-29T18:07:11.241+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.077 seconds +[2025-01-29T18:07:41.957+0000] {processor.py:186} INFO - Started process (PID=790) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:07:41.958+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:07:41.961+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.960+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:07:41.971+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:07:41.990+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:41.990+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:42.021+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.021+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:06:00+00:00, run_after=2025-01-29 18:07:00+00:00 +[2025-01-29T18:07:42.040+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.088 seconds +[2025-01-29T18:08:12.909+0000] {processor.py:186} INFO - Started process (PID=854) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:08:12.911+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:08:12.913+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.913+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:08:12.922+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:08:12.944+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.943+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:12.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:12.965+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:07:00+00:00, run_after=2025-01-29 18:08:00+00:00 +[2025-01-29T18:08:12.984+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.080 seconds +[2025-01-29T18:08:43.963+0000] {processor.py:186} INFO - Started process (PID=918) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:08:43.965+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:08:43.968+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:43.968+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:08:43.982+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:08:44.003+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.003+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:44.030+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.030+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:07:00+00:00, run_after=2025-01-29 18:08:00+00:00 +[2025-01-29T18:08:44.050+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.094 seconds +[2025-01-29T18:09:14.967+0000] {processor.py:186} INFO - Started process (PID=982) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:09:14.969+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py for tasks to queue +[2025-01-29T18:09:14.971+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.971+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:09:14.980+0000] {processor.py:925} INFO - DAG(s) 'example_passing_params_via_test_command' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py +[2025-01-29T18:09:14.999+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:14.999+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.019+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.019+0000] {dag.py:4180} INFO - Setting next_dagrun for example_passing_params_via_test_command to 2025-01-29 18:08:00+00:00, run_after=2025-01-29 18:09:00+00:00 +[2025-01-29T18:09:15.037+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_passing_params_via_test_command.py took 0.075 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_python_decorator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_python_decorator.py.log new file mode 100644 index 0000000000..14d2a7effb --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_python_decorator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:58.099+0000] {processor.py:186} INFO - Started process (PID=90) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:01:58.100+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:01:58.103+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.102+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:01:58.123+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:01:58.238+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.237+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_python_decorator +[2025-01-29T18:01:58.247+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.247+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_python_decorator +[2025-01-29T18:01:58.253+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.253+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_python_decorator +[2025-01-29T18:01:58.260+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.260+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_python_decorator +[2025-01-29T18:01:58.267+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.266+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_python_decorator +[2025-01-29T18:01:58.273+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.273+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_python_decorator +[2025-01-29T18:01:58.279+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.279+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_python_decorator +[2025-01-29T18:01:58.279+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.279+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:58.291+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.290+0000] {dag.py:3262} INFO - Creating ORM DAG for example_python_decorator +[2025-01-29T18:01:58.291+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.291+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:01:58.307+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.217 seconds +[2025-01-29T18:02:28.707+0000] {processor.py:186} INFO - Started process (PID=153) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:02:28.709+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:02:28.710+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.710+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:02:28.724+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:02:28.744+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.744+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:28.755+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.755+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:02:28.774+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.072 seconds +[2025-01-29T18:02:59.902+0000] {processor.py:186} INFO - Started process (PID=216) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:02:59.903+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:02:59.905+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.905+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:02:59.928+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:02:59.958+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.958+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:59.978+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.978+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:03:00.001+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.106 seconds +[2025-01-29T18:03:30.466+0000] {processor.py:186} INFO - Started process (PID=279) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:03:30.467+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:03:30.469+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.469+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:03:30.487+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:03:30.512+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.512+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:30.526+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.526+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:03:30.548+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.088 seconds +[2025-01-29T18:04:00.623+0000] {processor.py:186} INFO - Started process (PID=341) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:04:00.624+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:04:00.626+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.626+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:04:00.636+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:04:00.658+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.657+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.668+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.668+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:04:00.687+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.069 seconds +[2025-01-29T18:04:30.780+0000] {processor.py:186} INFO - Started process (PID=404) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:04:30.782+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:04:30.784+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.783+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:04:30.794+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:04:30.814+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.813+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.826+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.826+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:04:30.843+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.069 seconds +[2025-01-29T18:05:01.663+0000] {processor.py:186} INFO - Started process (PID=467) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:05:01.665+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:05:01.667+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.667+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:05:01.679+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:05:01.702+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.701+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.715+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.714+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:05:01.734+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.076 seconds +[2025-01-29T18:05:32.554+0000] {processor.py:186} INFO - Started process (PID=530) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:05:32.556+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:05:32.559+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.558+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:05:32.575+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:05:32.598+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.598+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.613+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.613+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:05:32.631+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.084 seconds +[2025-01-29T18:06:02.862+0000] {processor.py:186} INFO - Started process (PID=593) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:06:02.863+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:06:02.866+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.866+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:06:02.882+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:06:02.906+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.906+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.919+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.918+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:06:02.939+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.083 seconds +[2025-01-29T18:06:33.598+0000] {processor.py:186} INFO - Started process (PID=656) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:06:33.599+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:06:33.601+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.601+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:06:33.613+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:06:33.632+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.632+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.644+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.643+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:06:33.662+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.069 seconds +[2025-01-29T18:07:04.313+0000] {processor.py:186} INFO - Started process (PID=720) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:07:04.315+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:07:04.317+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.317+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:07:04.329+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:07:04.347+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.347+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:04.358+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.357+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:07:04.376+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.069 seconds +[2025-01-29T18:07:34.542+0000] {processor.py:186} INFO - Started process (PID=784) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:07:34.544+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:07:34.546+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.545+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:07:34.558+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:07:34.577+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.577+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.592+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.591+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:07:34.613+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.077 seconds +[2025-01-29T18:08:05.546+0000] {processor.py:186} INFO - Started process (PID=848) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:08:05.548+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:08:05.550+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.550+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:08:05.564+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:08:05.583+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.582+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.594+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.593+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:08:05.610+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.082 seconds +[2025-01-29T18:08:36.032+0000] {processor.py:186} INFO - Started process (PID=912) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:08:36.033+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:08:36.036+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.035+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:08:36.047+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:08:36.067+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.066+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:36.078+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.078+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:08:36.095+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.068 seconds +[2025-01-29T18:09:06.197+0000] {processor.py:186} INFO - Started process (PID=976) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:09:06.199+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py for tasks to queue +[2025-01-29T18:09:06.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.201+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:09:06.216+0000] {processor.py:925} INFO - DAG(s) 'example_python_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py +[2025-01-29T18:09:06.234+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.234+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:06.246+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.246+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_decorator to None, run_after=None +[2025-01-29T18:09:06.262+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_decorator.py took 0.070 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_python_operator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_python_operator.py.log new file mode 100644 index 0000000000..eb6d294986 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_python_operator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:55.550+0000] {processor.py:186} INFO - Started process (PID=76) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:01:55.550+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:01:55.553+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.552+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:01:55.567+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:01:55.762+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.761+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_python_operator +[2025-01-29T18:01:55.795+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.794+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_python_operator +[2025-01-29T18:01:55.803+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.803+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_python_operator +[2025-01-29T18:01:55.814+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.814+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_python_operator +[2025-01-29T18:01:55.823+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.822+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_python_operator +[2025-01-29T18:01:55.830+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.830+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_python_operator +[2025-01-29T18:01:55.838+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.837+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_python_operator +[2025-01-29T18:01:55.838+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.838+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:55.853+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.852+0000] {dag.py:3262} INFO - Creating ORM DAG for example_python_operator +[2025-01-29T18:01:55.853+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.853+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:01:55.871+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.327 seconds +[2025-01-29T18:02:26.641+0000] {processor.py:186} INFO - Started process (PID=138) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:02:26.654+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:02:26.657+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.656+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:02:26.668+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:02:26.689+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.689+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:26.700+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.700+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:02:26.717+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.083 seconds +[2025-01-29T18:02:57.495+0000] {processor.py:186} INFO - Started process (PID=201) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:02:57.508+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:02:57.510+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.510+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:02:57.525+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:02:57.547+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.547+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:57.562+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.561+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:02:57.583+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.094 seconds +[2025-01-29T18:03:28.505+0000] {processor.py:186} INFO - Started process (PID=264) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:03:28.507+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:03:28.509+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.508+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:03:28.519+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:03:28.541+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.541+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:28.551+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.551+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:03:28.569+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.069 seconds +[2025-01-29T18:03:58.885+0000] {processor.py:186} INFO - Started process (PID=327) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:03:58.893+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:03:58.895+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:58.895+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:03:58.905+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:03:58.926+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:58.926+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:58.937+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:58.936+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:03:58.956+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.077 seconds +[2025-01-29T18:04:29.109+0000] {processor.py:186} INFO - Started process (PID=390) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:04:29.120+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:04:29.122+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.122+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:04:29.132+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:04:29.151+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.151+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:29.162+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.162+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:04:29.183+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.081 seconds +[2025-01-29T18:05:00.025+0000] {processor.py:186} INFO - Started process (PID=453) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:05:00.027+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:05:00.029+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.028+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:05:00.040+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:05:00.062+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.062+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:00.073+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.073+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:05:00.091+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.073 seconds +[2025-01-29T18:05:30.911+0000] {processor.py:186} INFO - Started process (PID=516) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:05:30.912+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:05:30.915+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:30.914+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:05:30.930+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:05:30.955+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:30.954+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:30.969+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:30.968+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:05:30.989+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.084 seconds +[2025-01-29T18:06:01.134+0000] {processor.py:186} INFO - Started process (PID=579) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:06:01.136+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:06:01.139+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.139+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:06:01.151+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:06:01.177+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.177+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:01.191+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.191+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:06:01.212+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.084 seconds +[2025-01-29T18:06:31.870+0000] {processor.py:186} INFO - Started process (PID=642) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:06:31.882+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:06:31.884+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:31.884+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:06:31.893+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:06:31.914+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:31.914+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:31.927+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:31.927+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:06:31.945+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.080 seconds +[2025-01-29T18:07:02.623+0000] {processor.py:186} INFO - Started process (PID=706) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:07:02.625+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:07:02.628+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.628+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:07:02.640+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:07:02.662+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.661+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:02.675+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.674+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:07:02.693+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.079 seconds +[2025-01-29T18:07:32.751+0000] {processor.py:186} INFO - Started process (PID=770) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:07:32.753+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:07:32.755+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.755+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:07:32.766+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:07:32.788+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.788+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:32.800+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.799+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:07:32.819+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.072 seconds +[2025-01-29T18:08:02.881+0000] {processor.py:186} INFO - Started process (PID=834) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:08:02.883+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:08:02.885+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:02.885+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:08:02.895+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:08:02.916+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:02.915+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:02.926+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:02.926+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:08:02.944+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.068 seconds +[2025-01-29T18:08:33.451+0000] {processor.py:186} INFO - Started process (PID=898) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:08:33.452+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:08:33.455+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:33.455+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:08:33.470+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:08:33.495+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:33.495+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:33.510+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:33.510+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:08:33.528+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.083 seconds +[2025-01-29T18:09:04.411+0000] {processor.py:186} INFO - Started process (PID=962) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:09:04.423+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py for tasks to queue +[2025-01-29T18:09:04.425+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:04.425+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:09:04.435+0000] {processor.py:925} INFO - DAG(s) 'example_python_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py +[2025-01-29T18:09:04.454+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:04.453+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:04.464+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:04.464+0000] {dag.py:4180} INFO - Setting next_dagrun for example_python_operator to None, run_after=None +[2025-01-29T18:09:04.481+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_python_operator.py took 0.077 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sensor_decorator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sensor_decorator.py.log new file mode 100644 index 0000000000..b71791c1f2 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sensor_decorator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:03.498+0000] {processor.py:186} INFO - Started process (PID=114) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:02:03.499+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:02:03.501+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.500+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:02:03.509+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:02:03.623+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.622+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_sensor_decorator +[2025-01-29T18:02:03.633+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.632+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_sensor_decorator +[2025-01-29T18:02:03.639+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.639+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_sensor_decorator +[2025-01-29T18:02:03.646+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.646+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_sensor_decorator +[2025-01-29T18:02:03.653+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.653+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_sensor_decorator +[2025-01-29T18:02:03.660+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.659+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_sensor_decorator +[2025-01-29T18:02:03.666+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.666+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_sensor_decorator +[2025-01-29T18:02:03.667+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.667+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:03.682+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.682+0000] {dag.py:3262} INFO - Creating ORM DAG for example_sensor_decorator +[2025-01-29T18:02:03.683+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.683+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:02:03.699+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.207 seconds +[2025-01-29T18:02:34.559+0000] {processor.py:186} INFO - Started process (PID=177) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:02:34.560+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:02:34.574+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.574+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:02:34.582+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:02:34.600+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.600+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:34.613+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.613+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:02:34.631+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.077 seconds +[2025-01-29T18:03:05.537+0000] {processor.py:186} INFO - Started process (PID=240) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:03:05.539+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:03:05.540+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.540+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:03:05.547+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:03:05.564+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.564+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:05.574+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.574+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:03:05.592+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.060 seconds +[2025-01-29T18:03:35.841+0000] {processor.py:186} INFO - Started process (PID=303) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:03:35.843+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:03:35.844+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.844+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:03:35.851+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:03:35.869+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.869+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.880+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.880+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:03:35.898+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.062 seconds +[2025-01-29T18:04:07.189+0000] {processor.py:186} INFO - Started process (PID=366) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:04:07.190+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:04:07.192+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.192+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:04:07.199+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:04:07.217+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.217+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:07.229+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.229+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:04:07.246+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.062 seconds +[2025-01-29T18:04:38.104+0000] {processor.py:186} INFO - Started process (PID=429) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:04:38.106+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:04:38.108+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.107+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:04:38.114+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:04:38.130+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.130+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:38.142+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.141+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:04:38.158+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.060 seconds +[2025-01-29T18:05:08.911+0000] {processor.py:186} INFO - Started process (PID=492) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:05:08.913+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:05:08.916+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.915+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:05:08.922+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:05:08.940+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.940+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.953+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.953+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:05:08.970+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.065 seconds +[2025-01-29T18:05:40.152+0000] {processor.py:186} INFO - Started process (PID=555) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:05:40.153+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:05:40.155+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.155+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:05:40.162+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:05:40.180+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.179+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:40.191+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.191+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:05:40.210+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.062 seconds +[2025-01-29T18:06:10.892+0000] {processor.py:186} INFO - Started process (PID=618) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:06:10.893+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:06:10.895+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.895+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:06:10.903+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:06:10.923+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.923+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.933+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.933+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:06:10.951+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.065 seconds +[2025-01-29T18:06:41.508+0000] {processor.py:186} INFO - Started process (PID=681) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:06:41.509+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:06:41.511+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.511+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:06:41.517+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:06:41.552+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.552+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:41.566+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.565+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:06:41.581+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.077 seconds +[2025-01-29T18:07:12.688+0000] {processor.py:186} INFO - Started process (PID=745) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:07:12.689+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:07:12.691+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.691+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:07:12.700+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:07:12.720+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.719+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.735+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.735+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:07:12.752+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.070 seconds +[2025-01-29T18:07:43.702+0000] {processor.py:186} INFO - Started process (PID=809) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:07:43.703+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:07:43.704+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.704+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:07:43.714+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:07:43.736+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.736+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.752+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.752+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:07:43.776+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.079 seconds +[2025-01-29T18:08:14.510+0000] {processor.py:186} INFO - Started process (PID=873) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:08:14.511+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:08:14.513+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.513+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:08:14.522+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:08:14.543+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.543+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.557+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.557+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:08:14.574+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.071 seconds +[2025-01-29T18:08:45.475+0000] {processor.py:186} INFO - Started process (PID=937) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:08:45.476+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:08:45.478+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.478+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:08:45.485+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:08:45.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.503+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.517+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.517+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:08:45.535+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.065 seconds +[2025-01-29T18:09:16.373+0000] {processor.py:186} INFO - Started process (PID=1001) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:09:16.374+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py for tasks to queue +[2025-01-29T18:09:16.375+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.375+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:09:16.381+0000] {processor.py:925} INFO - DAG(s) 'example_sensor_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py +[2025-01-29T18:09:16.399+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.399+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:16.410+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.410+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensor_decorator to None, run_after=None +[2025-01-29T18:09:16.426+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensor_decorator.py took 0.058 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sensors.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sensors.py.log new file mode 100644 index 0000000000..c3efb0d2b9 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sensors.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:56.384+0000] {processor.py:186} INFO - Started process (PID=79) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:01:56.385+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:01:56.387+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.387+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:01:56.402+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:01:56.513+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.512+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_sensors +[2025-01-29T18:01:56.521+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.521+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_sensors +[2025-01-29T18:01:56.528+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.528+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_sensors +[2025-01-29T18:01:56.537+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.536+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_sensors +[2025-01-29T18:01:56.544+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.543+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_sensors +[2025-01-29T18:01:56.549+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.549+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_sensors +[2025-01-29T18:01:56.556+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.556+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_sensors +[2025-01-29T18:01:56.556+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.556+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:56.567+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.567+0000] {dag.py:3262} INFO - Creating ORM DAG for example_sensors +[2025-01-29T18:01:56.568+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.567+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:01:56.583+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.205 seconds +[2025-01-29T18:02:26.824+0000] {processor.py:186} INFO - Started process (PID=141) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:02:26.826+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:02:26.828+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.827+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:02:26.839+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:02:26.863+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.863+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:26.875+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.875+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:02:26.894+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.075 seconds +[2025-01-29T18:02:57.715+0000] {processor.py:186} INFO - Started process (PID=204) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:02:57.716+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:02:57.719+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.718+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:02:57.730+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:02:57.753+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.753+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:57.768+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.768+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:02:57.788+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.081 seconds +[2025-01-29T18:03:28.681+0000] {processor.py:186} INFO - Started process (PID=267) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:03:28.683+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:03:28.685+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.684+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:03:28.693+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:03:28.721+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.720+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:28.734+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.734+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:03:28.756+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.079 seconds +[2025-01-29T18:03:59.067+0000] {processor.py:186} INFO - Started process (PID=330) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:03:59.069+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:03:59.073+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:59.072+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:03:59.083+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:03:59.107+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:59.106+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:59.117+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:59.117+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:03:59.134+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.074 seconds +[2025-01-29T18:04:29.305+0000] {processor.py:186} INFO - Started process (PID=393) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:04:29.306+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:04:29.308+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.308+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:04:29.319+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:04:29.344+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.344+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:29.359+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.359+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:04:29.377+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.078 seconds +[2025-01-29T18:05:00.204+0000] {processor.py:186} INFO - Started process (PID=456) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:05:00.206+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:05:00.208+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.208+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:05:00.217+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:05:00.241+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.241+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:00.253+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.253+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:05:00.274+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.076 seconds +[2025-01-29T18:05:31.125+0000] {processor.py:186} INFO - Started process (PID=519) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:05:31.127+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:05:31.129+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:31.129+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:05:31.154+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:05:31.180+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:31.180+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:31.192+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:31.192+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:05:31.211+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.091 seconds +[2025-01-29T18:06:01.368+0000] {processor.py:186} INFO - Started process (PID=582) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:06:01.369+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:06:01.373+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.372+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:06:01.385+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:06:01.406+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.406+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:01.418+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.417+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:06:01.434+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.073 seconds +[2025-01-29T18:06:31.973+0000] {processor.py:186} INFO - Started process (PID=645) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:06:31.974+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:06:31.976+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:31.976+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:06:31.985+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:06:32.006+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:32.006+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:32.016+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:32.016+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:06:32.053+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.085 seconds +[2025-01-29T18:07:02.732+0000] {processor.py:186} INFO - Started process (PID=709) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:07:02.733+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:07:02.735+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.735+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:07:02.746+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:07:02.773+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.773+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:02.786+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.786+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:07:02.806+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.081 seconds +[2025-01-29T18:07:32.928+0000] {processor.py:186} INFO - Started process (PID=773) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:07:32.930+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:07:32.933+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.932+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:07:32.944+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:07:32.966+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.965+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:32.978+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:32.978+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:07:32.996+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.075 seconds +[2025-01-29T18:08:03.973+0000] {processor.py:186} INFO - Started process (PID=837) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:08:03.975+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:08:03.977+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:03.977+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:08:03.987+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:08:04.011+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:04.011+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:04.025+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:04.025+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:08:04.045+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.078 seconds +[2025-01-29T18:08:34.485+0000] {processor.py:186} INFO - Started process (PID=901) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:08:34.491+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:08:34.493+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:34.492+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:08:34.501+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:08:34.523+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:34.523+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:34.534+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:34.534+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:08:34.554+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.074 seconds +[2025-01-29T18:09:05.512+0000] {processor.py:186} INFO - Started process (PID=965) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:09:05.514+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py for tasks to queue +[2025-01-29T18:09:05.515+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.515+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:09:05.524+0000] {processor.py:925} INFO - DAG(s) 'example_sensors' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py +[2025-01-29T18:09:05.549+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.548+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:05.560+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.560+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sensors to None, run_after=None +[2025-01-29T18:09:05.579+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sensors.py took 0.072 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_setup_teardown.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_setup_teardown.py.log new file mode 100644 index 0000000000..223dd71b72 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_setup_teardown.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:56.614+0000] {processor.py:186} INFO - Started process (PID=80) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:01:56.615+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:01:56.618+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.618+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:01:56.631+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:01:56.736+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.735+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_setup_teardown +[2025-01-29T18:01:56.745+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.744+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_setup_teardown +[2025-01-29T18:01:56.750+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.750+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_setup_teardown +[2025-01-29T18:01:56.756+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.756+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_setup_teardown +[2025-01-29T18:01:56.763+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.763+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_setup_teardown +[2025-01-29T18:01:56.770+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.769+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_setup_teardown +[2025-01-29T18:01:56.775+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.775+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_setup_teardown +[2025-01-29T18:01:56.776+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.776+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:56.787+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.787+0000] {dag.py:3262} INFO - Creating ORM DAG for example_setup_teardown +[2025-01-29T18:01:56.788+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.787+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:01:56.805+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.198 seconds +[2025-01-29T18:02:26.919+0000] {processor.py:186} INFO - Started process (PID=142) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:02:26.920+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:02:26.922+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.922+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:02:26.931+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:02:26.952+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.952+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:26.964+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:26.964+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:02:26.985+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.072 seconds +[2025-01-29T18:02:57.725+0000] {processor.py:186} INFO - Started process (PID=205) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:02:57.726+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:02:57.729+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.728+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:02:57.737+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:02:57.755+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.755+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:57.768+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:57.768+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:02:57.788+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.070 seconds +[2025-01-29T18:03:28.687+0000] {processor.py:186} INFO - Started process (PID=268) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:03:28.689+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:03:28.691+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.690+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:03:28.698+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:03:28.721+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.720+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:28.734+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:28.734+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:03:28.755+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.073 seconds +[2025-01-29T18:03:59.074+0000] {processor.py:186} INFO - Started process (PID=331) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:03:59.077+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:03:59.079+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:59.078+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:03:59.085+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:03:59.103+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:59.103+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:59.114+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:59.114+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:03:59.131+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.065 seconds +[2025-01-29T18:04:29.312+0000] {processor.py:186} INFO - Started process (PID=394) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:04:29.313+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:04:29.315+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.315+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:04:29.323+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:04:29.343+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.343+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:29.356+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:29.356+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:04:29.376+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.070 seconds +[2025-01-29T18:05:00.206+0000] {processor.py:186} INFO - Started process (PID=457) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:05:00.207+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:05:00.209+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.209+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:05:00.216+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:05:00.237+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.237+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:00.249+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:00.249+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:05:00.268+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.067 seconds +[2025-01-29T18:05:31.138+0000] {processor.py:186} INFO - Started process (PID=520) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:05:31.147+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:05:31.151+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:31.150+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:05:31.161+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:05:31.180+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:31.180+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:31.192+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:31.192+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:05:31.210+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.083 seconds +[2025-01-29T18:06:01.377+0000] {processor.py:186} INFO - Started process (PID=583) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:06:01.378+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:06:01.380+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.380+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:06:01.389+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:06:01.406+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.406+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:01.418+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:01.417+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:06:01.435+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.066 seconds +[2025-01-29T18:06:32.077+0000] {processor.py:186} INFO - Started process (PID=646) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:06:32.078+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:06:32.080+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:32.080+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:06:32.087+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:06:32.104+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:32.104+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:32.118+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:32.118+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:06:32.143+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.072 seconds +[2025-01-29T18:07:02.824+0000] {processor.py:186} INFO - Started process (PID=710) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:07:02.826+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:07:02.828+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.828+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:07:02.834+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:07:02.854+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.854+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:02.866+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:02.865+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:07:02.885+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.066 seconds +[2025-01-29T18:07:33.023+0000] {processor.py:186} INFO - Started process (PID=774) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:07:33.024+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:07:33.026+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:33.026+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:07:33.035+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:07:33.058+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:33.058+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:33.068+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:33.068+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:07:33.085+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.067 seconds +[2025-01-29T18:08:03.992+0000] {processor.py:186} INFO - Started process (PID=838) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:08:03.993+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:08:03.996+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:03.996+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:08:04.004+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:08:04.025+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:04.025+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:04.040+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:04.040+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:08:04.061+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.074 seconds +[2025-01-29T18:08:34.576+0000] {processor.py:186} INFO - Started process (PID=902) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:08:34.578+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:08:34.580+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:34.579+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:08:34.586+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:08:34.604+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:34.604+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:34.614+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:34.614+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:08:34.631+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.060 seconds +[2025-01-29T18:09:05.604+0000] {processor.py:186} INFO - Started process (PID=966) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:09:05.606+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py for tasks to queue +[2025-01-29T18:09:05.608+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.608+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:09:05.614+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py +[2025-01-29T18:09:05.632+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.632+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:05.643+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.643+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown to None, run_after=None +[2025-01-29T18:09:05.660+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown.py took 0.060 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_setup_teardown_taskflow.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_setup_teardown_taskflow.py.log new file mode 100644 index 0000000000..9fe2f8b049 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_setup_teardown_taskflow.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:02.237+0000] {processor.py:186} INFO - Started process (PID=104) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:02:02.238+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:02:02.240+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.240+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:02:02.253+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:02:02.354+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.353+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_setup_teardown_taskflow +[2025-01-29T18:02:02.363+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.362+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_setup_teardown_taskflow +[2025-01-29T18:02:02.372+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.372+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_setup_teardown_taskflow +[2025-01-29T18:02:02.379+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.379+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_setup_teardown_taskflow +[2025-01-29T18:02:02.386+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.385+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_setup_teardown_taskflow +[2025-01-29T18:02:02.392+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.392+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_setup_teardown_taskflow +[2025-01-29T18:02:02.399+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.399+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_setup_teardown_taskflow +[2025-01-29T18:02:02.400+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.399+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:02.416+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.416+0000] {dag.py:3262} INFO - Creating ORM DAG for example_setup_teardown_taskflow +[2025-01-29T18:02:02.417+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.417+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:02:02.437+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.206 seconds +[2025-01-29T18:02:32.908+0000] {processor.py:186} INFO - Started process (PID=167) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:02:32.910+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:02:32.912+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.912+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:02:32.924+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:02:32.947+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.947+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:32.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.964+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:02:32.985+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.095 seconds +[2025-01-29T18:03:03.714+0000] {processor.py:186} INFO - Started process (PID=230) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:03:03.716+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:03:03.718+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.718+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:03:03.735+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:03:03.757+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.756+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:03.768+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.768+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:03:03.786+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.080 seconds +[2025-01-29T18:03:35.106+0000] {processor.py:186} INFO - Started process (PID=293) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:03:35.107+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:03:35.108+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.108+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:03:35.116+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:03:35.147+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.147+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.158+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.157+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:03:35.174+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.074 seconds +[2025-01-29T18:04:06.638+0000] {processor.py:186} INFO - Started process (PID=356) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:04:06.639+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:04:06.641+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.641+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:04:06.652+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:04:06.673+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.673+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:06.684+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.683+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:04:06.703+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.071 seconds +[2025-01-29T18:04:37.594+0000] {processor.py:186} INFO - Started process (PID=419) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:04:37.595+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:04:37.597+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.597+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:04:37.606+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:04:37.626+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.625+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:37.638+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.638+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:04:37.655+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.067 seconds +[2025-01-29T18:05:08.389+0000] {processor.py:186} INFO - Started process (PID=482) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:05:08.390+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:05:08.392+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.392+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:05:08.401+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:05:08.423+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.423+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.435+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.434+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:05:08.456+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.072 seconds +[2025-01-29T18:05:39.432+0000] {processor.py:186} INFO - Started process (PID=545) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:05:39.433+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:05:39.435+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.435+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:05:39.446+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:05:39.469+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.469+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:39.482+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.481+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:05:39.500+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.075 seconds +[2025-01-29T18:06:10.164+0000] {processor.py:186} INFO - Started process (PID=608) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:06:10.166+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:06:10.170+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.170+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:06:10.182+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:06:10.205+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.204+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.216+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.215+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:06:10.237+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.080 seconds +[2025-01-29T18:06:40.433+0000] {processor.py:186} INFO - Started process (PID=670) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:06:40.435+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:06:40.437+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.437+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:06:40.446+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:06:40.465+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.465+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:40.477+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.477+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:06:40.494+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.065 seconds +[2025-01-29T18:07:11.549+0000] {processor.py:186} INFO - Started process (PID=733) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:07:11.550+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:07:11.552+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.552+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:07:11.561+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:07:11.579+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.579+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:11.595+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.594+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:07:11.617+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.074 seconds +[2025-01-29T18:07:42.380+0000] {processor.py:186} INFO - Started process (PID=797) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:07:42.381+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:07:42.383+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.383+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:07:42.394+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:07:42.416+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.416+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:42.429+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.429+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:07:42.449+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.075 seconds +[2025-01-29T18:08:13.241+0000] {processor.py:186} INFO - Started process (PID=861) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:08:13.242+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:08:13.244+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.244+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:08:13.256+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:08:13.279+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.279+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:13.293+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.293+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:08:13.314+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.078 seconds +[2025-01-29T18:08:44.982+0000] {processor.py:186} INFO - Started process (PID=927) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:08:44.984+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:08:44.986+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.986+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:08:44.998+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:08:45.021+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.021+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.034+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.034+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:08:45.053+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.079 seconds +[2025-01-29T18:09:15.835+0000] {processor.py:186} INFO - Started process (PID=991) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:09:15.836+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py for tasks to queue +[2025-01-29T18:09:15.838+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.838+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:09:15.847+0000] {processor.py:925} INFO - DAG(s) 'example_setup_teardown_taskflow' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py +[2025-01-29T18:09:15.868+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.868+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.879+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.878+0000] {dag.py:4180} INFO - Setting next_dagrun for example_setup_teardown_taskflow to None, run_after=None +[2025-01-29T18:09:15.896+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_setup_teardown_taskflow.py took 0.066 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_short_circuit_decorator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_short_circuit_decorator.py.log new file mode 100644 index 0000000000..1eaa1b1ab8 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_short_circuit_decorator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:56.844+0000] {processor.py:186} INFO - Started process (PID=81) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:01:56.844+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:01:56.847+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.846+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:01:56.857+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:01:56.964+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.964+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_short_circuit_decorator +[2025-01-29T18:01:56.976+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.976+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_short_circuit_decorator +[2025-01-29T18:01:56.984+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:56.983+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_short_circuit_decorator +[2025-01-29T18:01:57.004+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.004+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_short_circuit_decorator +[2025-01-29T18:01:57.010+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.010+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_short_circuit_decorator +[2025-01-29T18:01:57.016+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.016+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_short_circuit_decorator +[2025-01-29T18:01:57.022+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.022+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_short_circuit_decorator +[2025-01-29T18:01:57.023+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.023+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:57.034+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.034+0000] {dag.py:3262} INFO - Creating ORM DAG for example_short_circuit_decorator +[2025-01-29T18:01:57.035+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.035+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:01:57.053+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.215 seconds +[2025-01-29T18:02:27.938+0000] {processor.py:186} INFO - Started process (PID=144) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:02:27.943+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:02:27.945+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:27.945+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:02:27.953+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:02:27.979+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:27.979+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:27.992+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:27.992+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:02:28.012+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.080 seconds +[2025-01-29T18:02:58.761+0000] {processor.py:186} INFO - Started process (PID=207) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:02:58.766+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:02:58.770+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:58.769+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:02:58.780+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:02:58.805+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:58.805+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:58.819+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:58.819+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:02:58.840+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.087 seconds +[2025-01-29T18:03:29.709+0000] {processor.py:186} INFO - Started process (PID=269) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:03:29.719+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:03:29.722+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.722+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:03:29.743+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:03:29.769+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.769+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:29.783+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.783+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:03:29.802+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.100 seconds +[2025-01-29T18:04:00.087+0000] {processor.py:186} INFO - Started process (PID=332) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:04:00.098+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:04:00.100+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.100+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:04:00.107+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:04:00.127+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.127+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.137+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.137+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:04:00.156+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.075 seconds +[2025-01-29T18:04:30.323+0000] {processor.py:186} INFO - Started process (PID=395) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:04:30.334+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:04:30.336+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.336+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:04:30.343+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:04:30.363+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.363+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.378+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.378+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:04:30.397+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.080 seconds +[2025-01-29T18:05:01.223+0000] {processor.py:186} INFO - Started process (PID=458) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:05:01.225+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:05:01.228+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.228+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:05:01.238+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:05:01.261+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.261+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.276+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.275+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:05:01.296+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.078 seconds +[2025-01-29T18:05:32.146+0000] {processor.py:186} INFO - Started process (PID=521) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:05:32.157+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:05:32.159+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.159+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:05:32.167+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:05:32.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.188+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.200+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.199+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:05:32.219+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.079 seconds +[2025-01-29T18:06:02.384+0000] {processor.py:186} INFO - Started process (PID=584) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:06:02.386+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:06:02.388+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.388+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:06:02.398+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:06:02.421+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.421+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.433+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.433+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:06:02.452+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.073 seconds +[2025-01-29T18:06:33.095+0000] {processor.py:186} INFO - Started process (PID=647) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:06:33.097+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:06:33.100+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.099+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:06:33.109+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:06:33.136+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.136+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.152+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.152+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:06:33.178+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.088 seconds +[2025-01-29T18:07:03.843+0000] {processor.py:186} INFO - Started process (PID=711) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:07:03.845+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:07:03.847+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:03.847+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:07:03.856+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:07:03.889+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:03.888+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:03.899+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:03.899+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:07:03.917+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.078 seconds +[2025-01-29T18:07:34.041+0000] {processor.py:186} INFO - Started process (PID=775) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:07:34.052+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:07:34.054+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.054+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:07:34.067+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:07:34.088+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.088+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.103+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.102+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:07:34.123+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.087 seconds +[2025-01-29T18:08:05.084+0000] {processor.py:186} INFO - Started process (PID=839) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:08:05.086+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:08:05.088+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.088+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:08:05.096+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:08:05.117+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.117+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.129+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.128+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:08:05.153+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.074 seconds +[2025-01-29T18:08:35.591+0000] {processor.py:186} INFO - Started process (PID=903) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:08:35.593+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:08:35.596+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.595+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:08:35.609+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:08:35.629+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.629+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:35.640+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.639+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:08:35.657+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.073 seconds +[2025-01-29T18:09:05.684+0000] {processor.py:186} INFO - Started process (PID=967) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:09:05.686+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py for tasks to queue +[2025-01-29T18:09:05.687+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.687+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:09:05.695+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py +[2025-01-29T18:09:05.714+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.713+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:05.724+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.724+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_decorator to None, run_after=None +[2025-01-29T18:09:05.739+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_decorator.py took 0.060 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_short_circuit_operator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_short_circuit_operator.py.log new file mode 100644 index 0000000000..ae46017543 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_short_circuit_operator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:01.632+0000] {processor.py:186} INFO - Started process (PID=100) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:02:01.633+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:02:01.635+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.635+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:02:01.647+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:02:01.763+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.763+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_short_circuit_operator +[2025-01-29T18:02:01.772+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.772+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_short_circuit_operator +[2025-01-29T18:02:01.779+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.778+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_short_circuit_operator +[2025-01-29T18:02:01.786+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.785+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_short_circuit_operator +[2025-01-29T18:02:01.792+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.791+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_short_circuit_operator +[2025-01-29T18:02:01.797+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.797+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_short_circuit_operator +[2025-01-29T18:02:01.803+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.803+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_short_circuit_operator +[2025-01-29T18:02:01.803+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.803+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:01.817+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.817+0000] {dag.py:3262} INFO - Creating ORM DAG for example_short_circuit_operator +[2025-01-29T18:02:01.818+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.818+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:02:01.836+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.212 seconds +[2025-01-29T18:02:32.221+0000] {processor.py:186} INFO - Started process (PID=163) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:02:32.223+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:02:32.226+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.225+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:02:32.237+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:02:32.281+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.280+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:32.323+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.323+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:02:32.369+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.154 seconds +[2025-01-29T18:03:03.129+0000] {processor.py:186} INFO - Started process (PID=225) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:03:03.131+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:03:03.133+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.133+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:03:03.141+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:03:03.165+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.164+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:03.179+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.178+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:03:03.198+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.076 seconds +[2025-01-29T18:03:34.708+0000] {processor.py:186} INFO - Started process (PID=288) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:03:34.709+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:03:34.710+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.710+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:03:34.718+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:03:34.740+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.740+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:34.751+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.751+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:03:34.769+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.068 seconds +[2025-01-29T18:04:05.697+0000] {processor.py:186} INFO - Started process (PID=350) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:04:05.699+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:04:05.701+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.701+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:04:05.709+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:04:05.731+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.731+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:05.747+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:05.746+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:04:05.766+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.077 seconds +[2025-01-29T18:04:36.786+0000] {processor.py:186} INFO - Started process (PID=413) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:04:36.787+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:04:36.790+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.789+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:04:36.799+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:04:36.821+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.821+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:36.834+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:36.834+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:04:36.857+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.078 seconds +[2025-01-29T18:05:07.585+0000] {processor.py:186} INFO - Started process (PID=476) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:05:07.586+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:05:07.589+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.588+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:05:07.596+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:05:07.617+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.616+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:07.627+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:07.627+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:05:07.644+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.064 seconds +[2025-01-29T18:05:38.524+0000] {processor.py:186} INFO - Started process (PID=539) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:05:38.526+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:05:38.528+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.527+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:05:38.535+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:05:38.553+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.553+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:38.563+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:38.563+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:05:38.579+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.060 seconds +[2025-01-29T18:06:09.454+0000] {processor.py:186} INFO - Started process (PID=602) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:06:09.455+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:06:09.458+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.458+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:06:09.468+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:06:09.490+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.490+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:09.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.503+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:06:09.520+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.073 seconds +[2025-01-29T18:06:40.173+0000] {processor.py:186} INFO - Started process (PID=665) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:06:40.174+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:06:40.177+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.177+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:06:40.188+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:06:40.215+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.214+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:40.228+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.228+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:06:40.246+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.080 seconds +[2025-01-29T18:07:11.325+0000] {processor.py:186} INFO - Started process (PID=729) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:07:11.327+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:07:11.329+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.329+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:07:11.337+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:07:11.362+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.362+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:11.375+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.374+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:07:11.392+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.071 seconds +[2025-01-29T18:07:42.166+0000] {processor.py:186} INFO - Started process (PID=793) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:07:42.167+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:07:42.170+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.169+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:07:42.188+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:07:42.209+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.208+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:42.220+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.220+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:07:42.239+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.078 seconds +[2025-01-29T18:08:13.036+0000] {processor.py:186} INFO - Started process (PID=857) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:08:13.037+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:08:13.039+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.039+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:08:13.046+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:08:13.067+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.066+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:13.078+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.077+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:08:13.098+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.067 seconds +[2025-01-29T18:08:44.127+0000] {processor.py:186} INFO - Started process (PID=921) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:08:44.128+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:08:44.131+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.130+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:08:44.141+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:08:44.165+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.164+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:44.180+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.180+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:08:44.201+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.080 seconds +[2025-01-29T18:09:15.094+0000] {processor.py:186} INFO - Started process (PID=985) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:09:15.096+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py for tasks to queue +[2025-01-29T18:09:15.098+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.097+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:09:15.105+0000] {processor.py:925} INFO - DAG(s) 'example_short_circuit_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py +[2025-01-29T18:09:15.127+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.127+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.139+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.139+0000] {dag.py:4180} INFO - Setting next_dagrun for example_short_circuit_operator to None, run_after=None +[2025-01-29T18:09:15.156+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_short_circuit_operator.py took 0.066 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_skip_dag.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_skip_dag.py.log new file mode 100644 index 0000000000..a108e4ec49 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_skip_dag.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:57.079+0000] {processor.py:186} INFO - Started process (PID=82) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:01:57.079+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:01:57.081+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.081+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:01:57.091+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:01:57.201+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.201+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_skip_dag +[2025-01-29T18:01:57.210+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.209+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_skip_dag +[2025-01-29T18:01:57.216+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.216+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_skip_dag +[2025-01-29T18:01:57.226+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.225+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_skip_dag +[2025-01-29T18:01:57.231+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.231+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_skip_dag +[2025-01-29T18:01:57.237+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.237+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_skip_dag +[2025-01-29T18:01:57.243+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.243+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_skip_dag +[2025-01-29T18:01:57.244+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.244+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:57.257+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.257+0000] {dag.py:3262} INFO - Creating ORM DAG for example_skip_dag +[2025-01-29T18:01:57.268+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.267+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:57.285+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.213 seconds +[2025-01-29T18:02:28.037+0000] {processor.py:186} INFO - Started process (PID=145) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:02:28.039+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:02:28.041+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.041+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:02:28.049+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:02:28.079+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.079+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:28.107+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.106+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:28.129+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.097 seconds +[2025-01-29T18:02:58.870+0000] {processor.py:186} INFO - Started process (PID=208) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:02:58.871+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:02:58.874+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:58.874+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:02:58.883+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:02:58.923+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:58.923+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:58.966+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:58.965+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:58.999+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.137 seconds +[2025-01-29T18:03:29.716+0000] {processor.py:186} INFO - Started process (PID=270) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:03:29.722+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:03:29.725+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.725+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:03:29.745+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:03:29.768+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.767+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:29.792+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.792+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:29.810+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.102 seconds +[2025-01-29T18:04:00.092+0000] {processor.py:186} INFO - Started process (PID=333) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:04:00.098+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:04:00.100+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.100+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:04:00.107+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:04:00.126+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.126+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.144+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.143+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:00.161+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.074 seconds +[2025-01-29T18:04:30.327+0000] {processor.py:186} INFO - Started process (PID=396) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:04:30.334+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:04:30.336+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.336+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:04:30.342+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:04:30.362+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.361+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.385+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.384+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:30.402+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.080 seconds +[2025-01-29T18:05:01.230+0000] {processor.py:186} INFO - Started process (PID=459) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:05:01.231+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:05:01.235+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.234+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:05:01.242+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:05:01.263+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.263+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.285+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.285+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:01.308+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.085 seconds +[2025-01-29T18:05:32.151+0000] {processor.py:186} INFO - Started process (PID=522) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:05:32.157+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:05:32.159+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.159+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:05:32.166+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:05:32.188+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.187+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.208+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.208+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:32.230+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.084 seconds +[2025-01-29T18:06:02.392+0000] {processor.py:186} INFO - Started process (PID=585) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:06:02.394+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:06:02.396+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.395+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:06:02.403+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:06:02.424+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.424+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.442+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.442+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:02.461+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.076 seconds +[2025-01-29T18:06:33.101+0000] {processor.py:186} INFO - Started process (PID=648) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:06:33.102+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:06:33.104+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.104+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:06:33.110+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:06:33.135+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.134+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.161+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.161+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:33.183+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.088 seconds +[2025-01-29T18:07:03.849+0000] {processor.py:186} INFO - Started process (PID=712) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:07:03.850+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:07:03.852+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:03.851+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:07:03.858+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:07:03.888+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:03.888+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:03.907+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:03.907+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:03.924+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.081 seconds +[2025-01-29T18:07:34.047+0000] {processor.py:186} INFO - Started process (PID=776) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:07:34.052+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:07:34.054+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.054+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:07:34.065+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:07:34.087+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.087+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.111+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.110+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:34.142+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.101 seconds +[2025-01-29T18:08:05.090+0000] {processor.py:186} INFO - Started process (PID=840) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:08:05.091+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:08:05.093+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.092+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:08:05.099+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:08:05.117+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.117+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.137+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.137+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:05.162+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.078 seconds +[2025-01-29T18:08:35.598+0000] {processor.py:186} INFO - Started process (PID=904) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:08:35.599+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:08:35.602+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.602+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:08:35.611+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:08:35.629+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.629+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:35.647+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.647+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:35.665+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.073 seconds +[2025-01-29T18:09:05.761+0000] {processor.py:186} INFO - Started process (PID=968) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:09:05.763+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py for tasks to queue +[2025-01-29T18:09:05.765+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.764+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:09:05.771+0000] {processor.py:925} INFO - DAG(s) 'example_skip_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py +[2025-01-29T18:09:05.789+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.788+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:05.806+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.806+0000] {dag.py:4180} INFO - Setting next_dagrun for example_skip_dag to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:05.821+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_skip_dag.py took 0.066 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sla_dag.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sla_dag.py.log new file mode 100644 index 0000000000..5e6fbd29ee --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_sla_dag.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:58.018+0000] {processor.py:186} INFO - Started process (PID=89) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:01:58.019+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:01:58.021+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.021+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:01:58.034+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:01:58.156+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.155+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_sla_dag +[2025-01-29T18:01:58.165+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.165+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_sla_dag +[2025-01-29T18:01:58.171+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.171+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_sla_dag +[2025-01-29T18:01:58.177+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.177+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_sla_dag +[2025-01-29T18:01:58.182+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.182+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_sla_dag +[2025-01-29T18:01:58.187+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.187+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_sla_dag +[2025-01-29T18:01:58.193+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.193+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_sla_dag +[2025-01-29T18:01:58.193+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.193+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:58.208+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.208+0000] {dag.py:3262} INFO - Creating ORM DAG for example_sla_dag +[2025-01-29T18:01:58.221+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:58.221+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 17:58:00+00:00, run_after=2025-01-29 18:00:00+00:00 +[2025-01-29T18:01:58.236+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.224 seconds +[2025-01-29T18:02:28.655+0000] {processor.py:186} INFO - Started process (PID=152) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:02:28.656+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:02:28.659+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.658+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:02:28.668+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:02:28.686+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.686+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:28.706+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.706+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:00:00+00:00, run_after=2025-01-29 18:02:00+00:00 +[2025-01-29T18:02:28.725+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.074 seconds +[2025-01-29T18:02:59.895+0000] {processor.py:186} INFO - Started process (PID=215) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:02:59.897+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:02:59.900+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.899+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:02:59.912+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:02:59.937+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.937+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:59.977+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.976+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:00:00+00:00, run_after=2025-01-29 18:02:00+00:00 +[2025-01-29T18:03:00.001+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.113 seconds +[2025-01-29T18:03:30.361+0000] {processor.py:186} INFO - Started process (PID=278) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:03:30.362+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:03:30.364+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.364+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:03:30.374+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:03:30.393+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.393+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:30.417+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.417+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:00:00+00:00, run_after=2025-01-29 18:02:00+00:00 +[2025-01-29T18:03:30.439+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.083 seconds +[2025-01-29T18:04:00.533+0000] {processor.py:186} INFO - Started process (PID=340) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:04:00.535+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:04:00.538+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.537+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:04:00.548+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:04:00.568+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.567+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.588+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.587+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:02:00+00:00, run_after=2025-01-29 18:04:00+00:00 +[2025-01-29T18:04:00.601+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.074 seconds +[2025-01-29T18:04:30.762+0000] {processor.py:186} INFO - Started process (PID=403) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:04:30.763+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:04:30.765+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.765+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:04:30.773+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:04:30.790+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.790+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.810+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.810+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:02:00+00:00, run_after=2025-01-29 18:04:00+00:00 +[2025-01-29T18:04:30.826+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.069 seconds +[2025-01-29T18:05:01.628+0000] {processor.py:186} INFO - Started process (PID=466) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:05:01.630+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:05:01.632+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.632+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:05:01.643+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:05:01.663+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.663+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.690+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.689+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:02:00+00:00, run_after=2025-01-29 18:04:00+00:00 +[2025-01-29T18:05:01.708+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.085 seconds +[2025-01-29T18:05:32.512+0000] {processor.py:186} INFO - Started process (PID=529) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:05:32.514+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:05:32.515+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.515+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:05:32.524+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:05:32.544+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.544+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.574+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.574+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:02:00+00:00, run_after=2025-01-29 18:04:00+00:00 +[2025-01-29T18:05:32.591+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.086 seconds +[2025-01-29T18:06:02.854+0000] {processor.py:186} INFO - Started process (PID=592) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:06:02.856+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:06:02.858+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.858+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:06:02.869+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:06:02.892+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.891+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.917+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.916+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:04:00+00:00, run_after=2025-01-29 18:06:00+00:00 +[2025-01-29T18:06:02.937+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.090 seconds +[2025-01-29T18:06:33.583+0000] {processor.py:186} INFO - Started process (PID=655) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:06:33.585+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:06:33.586+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.586+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:06:33.595+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:06:33.611+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.611+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.631+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.631+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:04:00+00:00, run_after=2025-01-29 18:06:00+00:00 +[2025-01-29T18:06:33.648+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.069 seconds +[2025-01-29T18:07:04.294+0000] {processor.py:186} INFO - Started process (PID=719) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:07:04.296+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:07:04.298+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.298+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:07:04.308+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:07:04.326+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.325+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:04.346+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.345+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:04:00+00:00, run_after=2025-01-29 18:06:00+00:00 +[2025-01-29T18:07:04.363+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.074 seconds +[2025-01-29T18:07:34.522+0000] {processor.py:186} INFO - Started process (PID=783) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:07:34.523+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:07:34.525+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.525+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:07:34.536+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:07:34.553+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.553+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.573+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.573+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:04:00+00:00, run_after=2025-01-29 18:06:00+00:00 +[2025-01-29T18:07:34.593+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.076 seconds +[2025-01-29T18:08:05.529+0000] {processor.py:186} INFO - Started process (PID=847) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:08:05.530+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:08:05.532+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.532+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:08:05.554+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:08:05.572+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.572+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.591+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.591+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:06:00+00:00, run_after=2025-01-29 18:08:00+00:00 +[2025-01-29T18:08:05.608+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.084 seconds +[2025-01-29T18:08:36.016+0000] {processor.py:186} INFO - Started process (PID=911) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:08:36.018+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:08:36.020+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.020+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:08:36.028+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:08:36.044+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.044+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:36.064+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:36.064+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:06:00+00:00, run_after=2025-01-29 18:08:00+00:00 +[2025-01-29T18:08:36.080+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.069 seconds +[2025-01-29T18:09:06.177+0000] {processor.py:186} INFO - Started process (PID=975) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:09:06.179+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py for tasks to queue +[2025-01-29T18:09:06.180+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.180+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:09:06.189+0000] {processor.py:925} INFO - DAG(s) 'example_sla_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py +[2025-01-29T18:09:06.208+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.208+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:06.229+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.229+0000] {dag.py:4180} INFO - Setting next_dagrun for example_sla_dag to 2025-01-29 18:06:00+00:00, run_after=2025-01-29 18:08:00+00:00 +[2025-01-29T18:09:06.246+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_sla_dag.py took 0.074 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_subdag_operator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_subdag_operator.py.log new file mode 100644 index 0000000000..6cbe3c2c79 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_subdag_operator.py.log @@ -0,0 +1,190 @@ +[2025-01-29T18:01:54.618+0000] {processor.py:186} INFO - Started process (PID=70) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:01:54.619+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:01:54.622+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.622+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:01:54.657+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:01:54.790+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.789+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_subdag_operator +[2025-01-29T18:01:54.799+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.799+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_subdag_operator +[2025-01-29T18:01:54.806+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.806+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_subdag_operator +[2025-01-29T18:01:54.814+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.813+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_subdag_operator +[2025-01-29T18:01:54.822+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.821+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_subdag_operator +[2025-01-29T18:01:54.829+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.829+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_subdag_operator +[2025-01-29T18:01:54.836+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.836+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_subdag_operator +[2025-01-29T18:01:54.836+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.836+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:01:54.850+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.849+0000] {dag.py:3262} INFO - Creating ORM DAG for example_subdag_operator.section-2 +[2025-01-29T18:01:54.850+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.850+0000] {dag.py:3262} INFO - Creating ORM DAG for example_subdag_operator.section-1 +[2025-01-29T18:01:54.851+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.851+0000] {dag.py:3262} INFO - Creating ORM DAG for example_subdag_operator +[2025-01-29T18:01:54.860+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.860+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:01:54.861+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.861+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:01:54.861+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.861+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:01:54.869+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.868+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:01:54.874+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.874+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:01:54.876+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.876+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:01:54.889+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.276 seconds +[2025-01-29T18:02:25.300+0000] {processor.py:186} INFO - Started process (PID=133) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:02:25.302+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:02:25.303+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.303+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:02:25.347+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:02:25.362+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.361+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:02:25.400+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.399+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:02:25.403+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.403+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:02:25.404+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.404+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:02:25.411+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.411+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:02:25.415+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.415+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:02:25.415+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.415+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:02:25.428+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.133 seconds +[2025-01-29T18:02:56.246+0000] {processor.py:186} INFO - Started process (PID=196) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:02:56.247+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:02:56.249+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.249+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:02:56.273+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:02:56.298+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.297+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:02:56.321+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.321+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:02:56.325+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.324+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:02:56.326+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.326+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:02:56.332+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.332+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:02:56.337+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.336+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:02:56.337+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.337+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:02:56.348+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.108 seconds +[2025-01-29T18:03:27.259+0000] {processor.py:186} INFO - Started process (PID=259) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:03:27.261+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:03:27.263+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.263+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:03:27.289+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:03:27.305+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.304+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:03:27.325+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.324+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:03:27.327+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.327+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:03:27.329+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.328+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:03:27.334+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.333+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:03:27.339+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.339+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:03:27.339+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.339+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:03:27.349+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.097 seconds +[2025-01-29T18:03:57.581+0000] {processor.py:186} INFO - Started process (PID=322) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:03:57.582+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:03:57.584+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.584+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:03:57.607+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:03:57.620+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.619+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:03:57.638+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.638+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:03:57.641+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.641+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:03:57.642+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.642+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:03:57.648+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.648+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:03:57.653+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.653+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:03:57.654+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.654+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:03:57.665+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.089 seconds +[2025-01-29T18:04:27.853+0000] {processor.py:186} INFO - Started process (PID=385) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:04:27.854+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:04:27.856+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.856+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:04:27.878+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:04:27.890+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.890+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:04:27.910+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.909+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:04:27.913+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.913+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:04:27.914+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.914+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:04:27.920+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.919+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:04:27.925+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.924+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:04:27.925+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.925+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:04:27.936+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.090 seconds +[2025-01-29T18:04:58.759+0000] {processor.py:186} INFO - Started process (PID=448) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:04:58.761+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:04:58.763+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.763+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:04:58.794+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:04:58.810+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.810+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:04:58.834+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.834+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:04:58.837+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.837+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:04:58.839+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.838+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:04:58.845+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.845+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:04:58.850+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.850+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:04:58.850+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.850+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:04:58.859+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.106 seconds +[2025-01-29T18:05:29.644+0000] {processor.py:186} INFO - Started process (PID=511) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:05:29.645+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:05:29.647+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.647+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:05:29.670+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:05:29.683+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.683+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:05:29.702+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.702+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:05:29.705+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.705+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:05:29.707+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.707+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:05:29.712+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.712+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:05:29.717+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.717+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:05:29.718+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.717+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:05:29.730+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.091 seconds +[2025-01-29T18:05:59.889+0000] {processor.py:186} INFO - Started process (PID=574) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:05:59.890+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:05:59.893+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.893+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:05:59.917+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:05:59.929+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.929+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:05:59.950+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.949+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:05:59.953+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.953+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:05:59.954+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.954+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:05:59.960+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.960+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:05:59.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.964+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:05:59.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.965+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:05:59.976+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.092 seconds +[2025-01-29T18:06:30.630+0000] {processor.py:186} INFO - Started process (PID=637) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:06:30.632+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:06:30.635+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.634+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:06:30.661+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:06:30.673+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.673+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:06:30.692+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.692+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:06:30.695+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.695+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:06:30.696+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.696+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:06:30.702+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.701+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:06:30.706+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.706+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:06:30.706+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.706+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:06:30.718+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.094 seconds +[2025-01-29T18:07:01.287+0000] {processor.py:186} INFO - Started process (PID=701) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:07:01.288+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:07:01.291+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.290+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:07:01.312+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:07:01.324+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.324+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:07:01.343+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.343+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:07:01.346+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.346+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:07:01.347+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.347+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:07:01.353+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.353+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:07:01.360+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.360+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:07:01.361+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.360+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:07:01.372+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.090 seconds +[2025-01-29T18:07:31.444+0000] {processor.py:186} INFO - Started process (PID=765) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:07:31.445+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:07:31.447+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.447+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:07:31.471+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:07:31.485+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.484+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:07:31.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.503+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:07:31.507+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.507+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:07:31.508+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.508+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:07:31.521+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.521+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:07:31.526+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.526+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:07:31.526+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.526+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:07:31.537+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.099 seconds +[2025-01-29T18:08:01.592+0000] {processor.py:186} INFO - Started process (PID=829) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:08:01.594+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:08:01.596+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.596+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:08:01.620+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:08:01.631+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.631+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:08:01.648+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.648+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:08:01.652+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.652+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:08:01.653+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.653+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:08:01.659+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.659+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:08:01.664+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.664+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:08:01.664+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.664+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:08:01.675+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.088 seconds +[2025-01-29T18:08:32.178+0000] {processor.py:186} INFO - Started process (PID=893) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:08:32.179+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:08:32.181+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.181+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:08:32.203+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:08:32.215+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.215+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:08:32.232+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.231+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:08:32.234+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.234+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:08:32.235+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.235+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:08:32.241+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.241+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:08:32.246+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.246+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:08:32.246+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.246+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:08:32.258+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.085 seconds +[2025-01-29T18:09:03.117+0000] {processor.py:186} INFO - Started process (PID=957) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:09:03.119+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py for tasks to queue +[2025-01-29T18:09:03.121+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.121+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:09:03.144+0000] {processor.py:925} INFO - DAG(s) 'example_subdag_operator.section-1', 'example_subdag_operator.section-2', 'example_subdag_operator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py +[2025-01-29T18:09:03.156+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.155+0000] {dag.py:3239} INFO - Sync 3 DAGs +[2025-01-29T18:09:03.174+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.174+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator to 2022-01-01 00:00:00+00:00, run_after=2022-01-01 00:00:00+00:00 +[2025-01-29T18:09:03.177+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.177+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:09:03.178+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.178+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:09:03.184+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.184+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:09:03.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.189+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-1 to None, run_after=None +[2025-01-29T18:09:03.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.189+0000] {dag.py:4180} INFO - Setting next_dagrun for example_subdag_operator.section-2 to None, run_after=None +[2025-01-29T18:09:03.201+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_subdag_operator.py took 0.089 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_task_group.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_task_group.py.log new file mode 100644 index 0000000000..b46f3f34bc --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_task_group.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:57.795+0000] {processor.py:186} INFO - Started process (PID=87) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:01:57.796+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:01:57.798+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.797+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:01:57.809+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:01:57.916+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.916+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_task_group +[2025-01-29T18:01:57.927+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.926+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_task_group +[2025-01-29T18:01:57.934+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.933+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_task_group +[2025-01-29T18:01:57.942+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.942+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_task_group +[2025-01-29T18:01:57.949+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.949+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_task_group +[2025-01-29T18:01:57.957+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.957+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_task_group +[2025-01-29T18:01:57.964+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.964+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_task_group +[2025-01-29T18:01:57.964+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.964+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:57.975+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.975+0000] {dag.py:3262} INFO - Creating ORM DAG for example_task_group +[2025-01-29T18:01:57.976+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.976+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:01:57.993+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.216 seconds +[2025-01-29T18:02:28.570+0000] {processor.py:186} INFO - Started process (PID=150) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:02:28.571+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:02:28.574+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.573+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:02:28.583+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:02:28.604+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.604+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:28.615+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.615+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:02:28.633+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.068 seconds +[2025-01-29T18:02:59.651+0000] {processor.py:186} INFO - Started process (PID=213) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:02:59.652+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:02:59.655+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.655+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:02:59.667+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:02:59.699+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.698+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:59.722+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.721+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:02:59.748+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.105 seconds +[2025-01-29T18:03:30.133+0000] {processor.py:186} INFO - Started process (PID=276) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:03:30.135+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:03:30.137+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.137+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:03:30.148+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:03:30.169+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.169+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:30.184+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.183+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:03:30.203+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.075 seconds +[2025-01-29T18:04:00.445+0000] {processor.py:186} INFO - Started process (PID=338) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:04:00.446+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:04:00.449+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.448+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:04:00.456+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:04:00.475+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.475+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.486+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.486+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:04:00.506+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.066 seconds +[2025-01-29T18:04:30.677+0000] {processor.py:186} INFO - Started process (PID=401) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:04:30.678+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:04:30.680+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.679+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:04:30.688+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:04:30.708+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.708+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.721+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.721+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:04:30.738+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.067 seconds +[2025-01-29T18:05:01.529+0000] {processor.py:186} INFO - Started process (PID=464) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:05:01.531+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:05:01.534+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.534+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:05:01.542+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:05:01.566+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.565+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.580+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.580+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:05:01.602+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.079 seconds +[2025-01-29T18:05:32.428+0000] {processor.py:186} INFO - Started process (PID=527) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:05:32.429+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:05:32.431+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.431+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:05:32.439+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:05:32.458+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.457+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.469+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.469+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:05:32.487+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.066 seconds +[2025-01-29T18:06:02.658+0000] {processor.py:186} INFO - Started process (PID=590) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:06:02.660+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:06:02.662+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.662+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:06:02.671+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:06:02.693+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.693+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.703+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.703+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:06:02.722+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.068 seconds +[2025-01-29T18:06:33.499+0000] {processor.py:186} INFO - Started process (PID=653) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:06:33.500+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:06:33.502+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.502+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:06:33.509+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:06:33.532+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.532+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.543+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.543+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:06:33.560+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.067 seconds +[2025-01-29T18:07:04.212+0000] {processor.py:186} INFO - Started process (PID=717) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:07:04.213+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:07:04.216+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.215+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:07:04.223+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:07:04.243+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.243+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:04.254+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.254+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:07:04.271+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.064 seconds +[2025-01-29T18:07:34.434+0000] {processor.py:186} INFO - Started process (PID=781) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:07:34.436+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:07:34.438+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.437+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:07:34.445+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:07:34.465+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.465+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.481+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.481+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:07:34.498+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.069 seconds +[2025-01-29T18:08:05.369+0000] {processor.py:186} INFO - Started process (PID=845) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:08:05.370+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:08:05.372+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.371+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:08:05.379+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:08:05.399+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.399+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.411+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.411+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:08:05.427+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.063 seconds +[2025-01-29T18:08:35.935+0000] {processor.py:186} INFO - Started process (PID=909) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:08:35.936+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:08:35.938+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.938+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:08:35.945+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:08:35.964+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.964+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:35.975+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.975+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:08:35.991+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.062 seconds +[2025-01-29T18:09:06.097+0000] {processor.py:186} INFO - Started process (PID=973) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:09:06.098+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py for tasks to queue +[2025-01-29T18:09:06.101+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.100+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:09:06.108+0000] {processor.py:925} INFO - DAG(s) 'example_task_group' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py +[2025-01-29T18:09:06.127+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.127+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:06.139+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.139+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group to None, run_after=None +[2025-01-29T18:09:06.154+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group.py took 0.063 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_task_group_decorator.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_task_group_decorator.py.log new file mode 100644 index 0000000000..1adc439e5e --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_task_group_decorator.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:02.805+0000] {processor.py:186} INFO - Started process (PID=109) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:02:02.806+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:02:02.808+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.808+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:02:02.830+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:02:02.952+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.951+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_task_group_decorator +[2025-01-29T18:02:02.962+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.961+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_task_group_decorator +[2025-01-29T18:02:02.968+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.967+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_task_group_decorator +[2025-01-29T18:02:02.974+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.974+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_task_group_decorator +[2025-01-29T18:02:02.980+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.980+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_task_group_decorator +[2025-01-29T18:02:02.985+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.985+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_task_group_decorator +[2025-01-29T18:02:02.992+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.992+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_task_group_decorator +[2025-01-29T18:02:02.993+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.992+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:03.010+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.010+0000] {dag.py:3262} INFO - Creating ORM DAG for example_task_group_decorator +[2025-01-29T18:02:03.011+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.010+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:02:03.027+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.230 seconds +[2025-01-29T18:02:33.288+0000] {processor.py:186} INFO - Started process (PID=172) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:02:33.289+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:02:33.291+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.290+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:02:33.304+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:02:33.324+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.324+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:33.336+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.336+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:02:33.352+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.069 seconds +[2025-01-29T18:03:04.262+0000] {processor.py:186} INFO - Started process (PID=235) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:03:04.264+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:03:04.267+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.266+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:03:04.286+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:03:04.310+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.310+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:04.323+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.322+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:03:04.340+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.085 seconds +[2025-01-29T18:03:35.594+0000] {processor.py:186} INFO - Started process (PID=298) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:03:35.596+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:03:35.598+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.597+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:03:35.610+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:03:35.631+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.631+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.643+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.643+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:03:35.660+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.071 seconds +[2025-01-29T18:04:06.952+0000] {processor.py:186} INFO - Started process (PID=361) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:04:06.954+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:04:06.956+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.956+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:04:06.970+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:04:06.996+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.996+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:07.007+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.007+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:04:07.027+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.081 seconds +[2025-01-29T18:04:37.845+0000] {processor.py:186} INFO - Started process (PID=424) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:04:37.846+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:04:37.858+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.853+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:04:37.874+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:04:37.898+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.898+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:37.911+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.911+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:04:37.928+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.090 seconds +[2025-01-29T18:05:08.677+0000] {processor.py:186} INFO - Started process (PID=487) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:05:08.679+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:05:08.684+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.683+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:05:08.702+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:05:08.727+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.727+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.740+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.740+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:05:08.758+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.090 seconds +[2025-01-29T18:05:39.888+0000] {processor.py:186} INFO - Started process (PID=550) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:05:39.889+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:05:39.891+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.891+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:05:39.902+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:05:39.924+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.923+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:39.934+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.933+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:05:39.953+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.069 seconds +[2025-01-29T18:06:10.642+0000] {processor.py:186} INFO - Started process (PID=613) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:06:10.643+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:06:10.645+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.645+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:06:10.660+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:06:10.686+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.686+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.700+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.699+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:06:10.717+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.082 seconds +[2025-01-29T18:06:41.243+0000] {processor.py:186} INFO - Started process (PID=676) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:06:41.245+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:06:41.246+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.246+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:06:41.259+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:06:41.281+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.281+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:41.292+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.292+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:06:41.308+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.069 seconds +[2025-01-29T18:07:12.392+0000] {processor.py:186} INFO - Started process (PID=740) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:07:12.393+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:07:12.395+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.395+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:07:12.409+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:07:12.431+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.431+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.442+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.442+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:07:12.459+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.072 seconds +[2025-01-29T18:07:43.427+0000] {processor.py:186} INFO - Started process (PID=804) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:07:43.428+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:07:43.430+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.429+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:07:43.441+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:07:43.464+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.464+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.476+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.475+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:07:43.494+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.072 seconds +[2025-01-29T18:08:14.245+0000] {processor.py:186} INFO - Started process (PID=868) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:08:14.246+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:08:14.248+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.248+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:08:14.262+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:08:14.283+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.283+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.297+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.296+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:08:14.311+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.071 seconds +[2025-01-29T18:08:45.269+0000] {processor.py:186} INFO - Started process (PID=932) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:08:45.270+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:08:45.272+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.272+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:08:45.285+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:08:45.308+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.307+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.319+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.319+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:08:45.336+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.073 seconds +[2025-01-29T18:09:16.115+0000] {processor.py:186} INFO - Started process (PID=996) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:09:16.117+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py for tasks to queue +[2025-01-29T18:09:16.118+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.118+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:09:16.131+0000] {processor.py:925} INFO - DAG(s) 'example_task_group_decorator' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py +[2025-01-29T18:09:16.153+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.153+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:16.163+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.163+0000] {dag.py:4180} INFO - Setting next_dagrun for example_task_group_decorator to None, run_after=None +[2025-01-29T18:09:16.185+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_task_group_decorator.py took 0.075 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_time_delta_sensor_async.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_time_delta_sensor_async.py.log new file mode 100644 index 0000000000..4477797546 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_time_delta_sensor_async.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:54.920+0000] {processor.py:186} INFO - Started process (PID=72) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:01:54.921+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:01:54.923+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.923+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:01:54.932+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:01:55.050+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.049+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_time_delta_sensor_async +[2025-01-29T18:01:55.062+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.062+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_time_delta_sensor_async +[2025-01-29T18:01:55.069+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.069+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_time_delta_sensor_async +[2025-01-29T18:01:55.077+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.077+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_time_delta_sensor_async +[2025-01-29T18:01:55.084+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.084+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_time_delta_sensor_async +[2025-01-29T18:01:55.090+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.090+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_time_delta_sensor_async +[2025-01-29T18:01:55.097+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.097+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_time_delta_sensor_async +[2025-01-29T18:01:55.098+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.097+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:55.110+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.109+0000] {dag.py:3262} INFO - Creating ORM DAG for example_time_delta_sensor_async +[2025-01-29T18:01:55.110+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.110+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:01:55.125+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.213 seconds +[2025-01-29T18:02:25.456+0000] {processor.py:186} INFO - Started process (PID=135) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:02:25.457+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:02:25.459+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.459+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:02:25.465+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:02:25.484+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.484+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:25.494+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.494+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:02:25.511+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.062 seconds +[2025-01-29T18:02:56.372+0000] {processor.py:186} INFO - Started process (PID=198) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:02:56.373+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:02:56.376+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.375+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:02:56.382+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:02:56.399+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.398+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:56.412+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.412+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:02:56.429+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.063 seconds +[2025-01-29T18:03:27.378+0000] {processor.py:186} INFO - Started process (PID=261) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:03:27.379+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:03:27.382+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.381+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:03:27.389+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:03:27.406+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.406+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:27.420+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.419+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:03:27.439+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.067 seconds +[2025-01-29T18:03:57.693+0000] {processor.py:186} INFO - Started process (PID=324) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:03:57.695+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:03:57.697+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.697+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:03:57.704+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:03:57.724+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.724+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:57.735+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.735+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:03:57.752+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.063 seconds +[2025-01-29T18:04:27.961+0000] {processor.py:186} INFO - Started process (PID=387) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:04:27.963+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:04:27.965+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.965+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:04:27.972+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:04:27.991+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.991+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:28.004+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:28.003+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:04:28.022+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.067 seconds +[2025-01-29T18:04:58.884+0000] {processor.py:186} INFO - Started process (PID=450) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:04:58.885+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:04:58.887+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.887+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:04:58.893+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:04:58.910+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.910+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:58.923+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.923+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:04:58.939+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.061 seconds +[2025-01-29T18:05:29.752+0000] {processor.py:186} INFO - Started process (PID=513) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:05:29.754+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:05:29.756+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.756+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:05:29.763+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:05:29.781+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.781+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:29.797+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.796+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:05:29.816+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.069 seconds +[2025-01-29T18:06:00.000+0000] {processor.py:186} INFO - Started process (PID=576) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:06:00.002+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:06:00.004+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:00.004+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:06:00.012+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:06:00.030+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:00.030+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:00.041+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:00.041+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:06:00.060+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.065 seconds +[2025-01-29T18:06:30.744+0000] {processor.py:186} INFO - Started process (PID=639) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:06:30.747+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:06:30.749+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.749+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:06:30.756+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:06:30.775+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.774+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:30.786+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.786+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:06:30.806+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.069 seconds +[2025-01-29T18:07:01.398+0000] {processor.py:186} INFO - Started process (PID=703) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:07:01.399+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:07:01.401+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.401+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:07:01.408+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:07:01.426+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.426+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:01.437+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.437+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:07:01.454+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.061 seconds +[2025-01-29T18:07:31.566+0000] {processor.py:186} INFO - Started process (PID=767) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:07:31.567+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:07:31.569+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.569+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:07:31.575+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:07:31.592+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.592+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:31.603+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.603+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:07:31.620+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.062 seconds +[2025-01-29T18:08:01.700+0000] {processor.py:186} INFO - Started process (PID=831) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:08:01.702+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:08:01.704+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.704+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:08:01.711+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:08:01.727+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.727+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:01.740+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.739+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:08:01.758+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.063 seconds +[2025-01-29T18:08:32.282+0000] {processor.py:186} INFO - Started process (PID=895) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:08:32.283+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:08:32.284+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.284+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:08:32.290+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:08:32.308+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.307+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:32.318+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.317+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:08:32.334+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.057 seconds +[2025-01-29T18:09:03.225+0000] {processor.py:186} INFO - Started process (PID=959) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:09:03.226+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py for tasks to queue +[2025-01-29T18:09:03.228+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.228+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:09:03.234+0000] {processor.py:925} INFO - DAG(s) 'example_time_delta_sensor_async' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py +[2025-01-29T18:09:03.252+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.251+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:03.262+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.262+0000] {dag.py:4180} INFO - Setting next_dagrun for example_time_delta_sensor_async to None, run_after=None +[2025-01-29T18:09:03.283+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_time_delta_sensor_async.py took 0.064 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_trigger_controller_dag.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_trigger_controller_dag.py.log new file mode 100644 index 0000000000..38d9bd20bb --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_trigger_controller_dag.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:03.277+0000] {processor.py:186} INFO - Started process (PID=113) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:02:03.278+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:02:03.280+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.280+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:02:03.290+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:02:03.399+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.398+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_trigger_controller_dag +[2025-01-29T18:02:03.410+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.410+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_trigger_controller_dag +[2025-01-29T18:02:03.417+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.416+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_trigger_controller_dag +[2025-01-29T18:02:03.425+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.425+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_trigger_controller_dag +[2025-01-29T18:02:03.431+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.431+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_trigger_controller_dag +[2025-01-29T18:02:03.437+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.437+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_trigger_controller_dag +[2025-01-29T18:02:03.444+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.444+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_trigger_controller_dag +[2025-01-29T18:02:03.444+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.444+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:03.458+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.457+0000] {dag.py:3262} INFO - Creating ORM DAG for example_trigger_controller_dag +[2025-01-29T18:02:03.467+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.467+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:02:03.484+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.215 seconds +[2025-01-29T18:02:34.447+0000] {processor.py:186} INFO - Started process (PID=176) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:02:34.449+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:02:34.452+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.452+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:02:34.460+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:02:34.478+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.478+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:34.513+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.512+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:02:34.534+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.095 seconds +[2025-01-29T18:03:05.449+0000] {processor.py:186} INFO - Started process (PID=239) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:03:05.451+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:03:05.453+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.453+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:03:05.460+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:03:05.480+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.480+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:05.497+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.497+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:03:05.515+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.072 seconds +[2025-01-29T18:03:35.775+0000] {processor.py:186} INFO - Started process (PID=302) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:03:35.776+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:03:35.778+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.778+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:03:35.784+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:03:35.802+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.802+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.820+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.819+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:03:35.836+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.067 seconds +[2025-01-29T18:04:07.143+0000] {processor.py:186} INFO - Started process (PID=365) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:04:07.144+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:04:07.146+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.146+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:04:07.152+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:04:07.170+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.170+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:07.188+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.188+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:04:07.205+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.068 seconds +[2025-01-29T18:04:38.037+0000] {processor.py:186} INFO - Started process (PID=428) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:04:38.038+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:04:38.040+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.040+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:04:38.046+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:04:38.063+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.063+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:38.082+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.081+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:04:38.101+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.069 seconds +[2025-01-29T18:05:08.875+0000] {processor.py:186} INFO - Started process (PID=491) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:05:08.876+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:05:08.878+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.878+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:05:08.886+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:05:08.905+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.905+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.925+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.925+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:05:08.946+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.077 seconds +[2025-01-29T18:05:40.149+0000] {processor.py:186} INFO - Started process (PID=554) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:05:40.150+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:05:40.152+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.151+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:05:40.157+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:05:40.176+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.176+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:40.194+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.194+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:05:40.212+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.069 seconds +[2025-01-29T18:06:10.824+0000] {processor.py:186} INFO - Started process (PID=617) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:06:10.825+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:06:10.827+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.827+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:06:10.833+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:06:10.853+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.852+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.875+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.874+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:06:10.892+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.073 seconds +[2025-01-29T18:06:41.423+0000] {processor.py:186} INFO - Started process (PID=680) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:06:41.425+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:06:41.427+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.426+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:06:41.432+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:06:41.450+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.450+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:41.470+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.470+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:06:41.487+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.069 seconds +[2025-01-29T18:07:12.657+0000] {processor.py:186} INFO - Started process (PID=744) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:07:12.658+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:07:12.661+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.660+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:07:12.668+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:07:12.687+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.687+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.708+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.708+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:07:12.729+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.077 seconds +[2025-01-29T18:07:43.598+0000] {processor.py:186} INFO - Started process (PID=808) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:07:43.599+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:07:43.601+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.601+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:07:43.607+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:07:43.624+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.624+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.646+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.646+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:07:43.669+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.076 seconds +[2025-01-29T18:08:14.421+0000] {processor.py:186} INFO - Started process (PID=872) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:08:14.422+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:08:14.424+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.424+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:08:14.433+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:08:14.452+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.452+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.475+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.474+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:08:14.495+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.081 seconds +[2025-01-29T18:08:45.444+0000] {processor.py:186} INFO - Started process (PID=936) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:08:45.445+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:08:45.447+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.447+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:08:45.453+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:08:45.474+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.473+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.494+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.493+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:08:45.509+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.071 seconds +[2025-01-29T18:09:16.370+0000] {processor.py:186} INFO - Started process (PID=1000) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:09:16.372+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py for tasks to queue +[2025-01-29T18:09:16.374+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.374+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:09:16.381+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_controller_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py +[2025-01-29T18:09:16.399+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.399+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:16.417+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.417+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_controller_dag to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:09:16.434+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_controller_dag.py took 0.071 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_trigger_target_dag.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_trigger_target_dag.py.log new file mode 100644 index 0000000000..41f8b5e379 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_trigger_target_dag.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:57.562+0000] {processor.py:186} INFO - Started process (PID=85) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:01:57.563+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:01:57.565+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.565+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:01:57.576+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:01:57.685+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.684+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_trigger_target_dag +[2025-01-29T18:01:57.695+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.694+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_trigger_target_dag +[2025-01-29T18:01:57.701+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.701+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_trigger_target_dag +[2025-01-29T18:01:57.708+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.708+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_trigger_target_dag +[2025-01-29T18:01:57.714+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.714+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_trigger_target_dag +[2025-01-29T18:01:57.721+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.721+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_trigger_target_dag +[2025-01-29T18:01:57.728+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.728+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_trigger_target_dag +[2025-01-29T18:01:57.728+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.728+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:57.741+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.741+0000] {dag.py:3262} INFO - Creating ORM DAG for example_trigger_target_dag +[2025-01-29T18:01:57.741+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.741+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:01:57.757+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.201 seconds +[2025-01-29T18:02:28.378+0000] {processor.py:186} INFO - Started process (PID=148) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:02:28.379+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:02:28.381+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.381+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:02:28.389+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:02:28.406+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.406+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:28.420+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.420+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:02:28.448+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.076 seconds +[2025-01-29T18:02:59.377+0000] {processor.py:186} INFO - Started process (PID=211) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:02:59.380+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:02:59.383+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.383+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:02:59.396+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:02:59.429+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.429+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:59.457+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.457+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:02:59.486+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.119 seconds +[2025-01-29T18:03:29.928+0000] {processor.py:186} INFO - Started process (PID=273) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:03:29.929+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:03:29.932+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.932+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:03:29.941+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:03:29.960+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.960+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:29.973+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:29.972+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:03:29.993+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.071 seconds +[2025-01-29T18:04:00.282+0000] {processor.py:186} INFO - Started process (PID=336) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:04:00.284+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:04:00.286+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.286+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:04:00.293+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:04:00.311+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.310+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.321+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.321+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:04:00.337+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.060 seconds +[2025-01-29T18:04:30.521+0000] {processor.py:186} INFO - Started process (PID=399) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:04:30.522+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:04:30.524+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.524+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:04:30.531+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:04:30.548+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.548+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.559+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.559+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:04:30.577+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.061 seconds +[2025-01-29T18:05:01.443+0000] {processor.py:186} INFO - Started process (PID=462) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:05:01.445+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:05:01.447+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.447+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:05:01.454+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:05:01.475+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.475+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.487+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.486+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:05:01.504+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.069 seconds +[2025-01-29T18:05:32.348+0000] {processor.py:186} INFO - Started process (PID=525) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:05:32.349+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:05:32.351+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.351+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:05:32.358+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:05:32.374+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.374+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.386+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.386+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:05:32.403+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.062 seconds +[2025-01-29T18:06:02.571+0000] {processor.py:186} INFO - Started process (PID=588) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:06:02.572+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:06:02.574+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.574+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:06:02.580+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:06:02.601+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.601+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.612+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.611+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:06:02.629+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.064 seconds +[2025-01-29T18:06:33.331+0000] {processor.py:186} INFO - Started process (PID=651) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:06:33.332+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:06:33.335+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.334+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:06:33.342+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:06:33.359+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.359+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.370+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.370+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:06:33.390+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.064 seconds +[2025-01-29T18:07:04.053+0000] {processor.py:186} INFO - Started process (PID=715) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:07:04.054+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:07:04.056+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.056+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:07:04.063+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:07:04.081+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.081+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:04.091+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.091+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:07:04.108+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.061 seconds +[2025-01-29T18:07:34.273+0000] {processor.py:186} INFO - Started process (PID=779) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:07:34.274+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:07:34.277+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.277+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:07:34.285+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:07:34.304+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.303+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.316+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.316+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:07:34.334+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.067 seconds +[2025-01-29T18:08:05.288+0000] {processor.py:186} INFO - Started process (PID=843) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:08:05.289+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:08:05.291+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.291+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:08:05.299+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:08:05.315+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.315+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.325+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.325+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:08:05.341+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.058 seconds +[2025-01-29T18:08:35.782+0000] {processor.py:186} INFO - Started process (PID=907) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:08:35.783+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:08:35.785+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.785+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:08:35.791+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:08:35.809+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.808+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:35.819+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.819+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:08:35.837+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.061 seconds +[2025-01-29T18:09:05.938+0000] {processor.py:186} INFO - Started process (PID=971) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:09:05.940+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py for tasks to queue +[2025-01-29T18:09:05.942+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.941+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:09:05.949+0000] {processor.py:925} INFO - DAG(s) 'example_trigger_target_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py +[2025-01-29T18:09:05.968+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.968+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:05.981+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:05.981+0000] {dag.py:4180} INFO - Setting next_dagrun for example_trigger_target_dag to None, run_after=None +[2025-01-29T18:09:05.999+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_trigger_target_dag.py took 0.066 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_workday_timetable.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_workday_timetable.py.log new file mode 100644 index 0000000000..835de92fa4 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_workday_timetable.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:01.946+0000] {processor.py:186} INFO - Started process (PID=102) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:02:01.947+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:02:01.950+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:01.949+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:02:01.957+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:02:02.054+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.054+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_workday_timetable +[2025-01-29T18:02:02.063+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.062+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_workday_timetable +[2025-01-29T18:02:02.070+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.070+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_workday_timetable +[2025-01-29T18:02:02.077+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.076+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_workday_timetable +[2025-01-29T18:02:02.083+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.083+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_workday_timetable +[2025-01-29T18:02:02.089+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.088+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_workday_timetable +[2025-01-29T18:02:02.099+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.098+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_workday_timetable +[2025-01-29T18:02:02.099+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.099+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:02.116+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.116+0000] {dag.py:3262} INFO - Creating ORM DAG for example_workday_timetable +[2025-01-29T18:02:02.181+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.181+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:02:02.199+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.260 seconds +[2025-01-29T18:02:32.615+0000] {processor.py:186} INFO - Started process (PID=165) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:02:32.616+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:02:32.619+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.618+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:02:32.626+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:02:32.647+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.647+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:32.715+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:32.715+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:02:32.750+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.145 seconds +[2025-01-29T18:03:03.313+0000] {processor.py:186} INFO - Started process (PID=227) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:03:03.314+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:03:03.316+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.316+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:03:03.321+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:03:03.340+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.340+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:03.402+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:03.402+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:03:03.427+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.122 seconds +[2025-01-29T18:03:34.889+0000] {processor.py:186} INFO - Started process (PID=290) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:03:34.890+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:03:34.893+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.892+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:03:34.898+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:03:34.917+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.917+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:34.976+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:34.976+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:03:34.993+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.109 seconds +[2025-01-29T18:04:06.522+0000] {processor.py:186} INFO - Started process (PID=354) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:04:06.524+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:04:06.526+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.526+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:04:06.532+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:04:06.549+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.549+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:06.602+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:06.602+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:04:06.618+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.102 seconds +[2025-01-29T18:04:37.475+0000] {processor.py:186} INFO - Started process (PID=417) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:04:37.476+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:04:37.478+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.478+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:04:37.483+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:04:37.503+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.503+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:37.553+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.553+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:04:37.568+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.100 seconds +[2025-01-29T18:05:08.278+0000] {processor.py:186} INFO - Started process (PID=480) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:05:08.281+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:05:08.284+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.283+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:05:08.289+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:05:08.307+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.306+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.366+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.366+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:05:08.386+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.113 seconds +[2025-01-29T18:05:39.186+0000] {processor.py:186} INFO - Started process (PID=543) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:05:39.187+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:05:39.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.189+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:05:39.195+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:05:39.218+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.217+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:39.278+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.278+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:05:39.298+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.118 seconds +[2025-01-29T18:06:09.646+0000] {processor.py:186} INFO - Started process (PID=605) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:06:09.648+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:06:09.650+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.650+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:06:09.655+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:06:09.674+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.673+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:09.724+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:09.724+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:06:09.741+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.100 seconds +[2025-01-29T18:06:40.273+0000] {processor.py:186} INFO - Started process (PID=667) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:06:40.275+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:06:40.278+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.277+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:06:40.283+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:06:40.304+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.304+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:40.358+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:40.358+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:06:40.378+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.110 seconds +[2025-01-29T18:07:11.417+0000] {processor.py:186} INFO - Started process (PID=731) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:07:11.419+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:07:11.421+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.420+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:07:11.426+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:07:11.445+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.445+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:11.502+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:11.502+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:07:11.518+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.106 seconds +[2025-01-29T18:07:42.264+0000] {processor.py:186} INFO - Started process (PID=795) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:07:42.266+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:07:42.268+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.267+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:07:42.273+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:07:42.292+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.291+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:42.355+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:42.354+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:07:42.373+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.116 seconds +[2025-01-29T18:08:13.122+0000] {processor.py:186} INFO - Started process (PID=859) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:08:13.124+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:08:13.126+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.125+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:08:13.131+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:08:13.147+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.147+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:13.195+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:13.195+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:08:13.212+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.094 seconds +[2025-01-29T18:08:44.230+0000] {processor.py:186} INFO - Started process (PID=923) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:08:44.231+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:08:44.233+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.233+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:08:44.238+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:08:44.262+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.262+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:44.322+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:44.321+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:08:44.345+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.121 seconds +[2025-01-29T18:09:15.182+0000] {processor.py:186} INFO - Started process (PID=987) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:09:15.183+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py for tasks to queue +[2025-01-29T18:09:15.185+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.185+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:09:15.189+0000] {processor.py:925} INFO - DAG(s) 'example_workday_timetable' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py +[2025-01-29T18:09:15.207+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.206+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:15.254+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:15.253+0000] {dag.py:4180} INFO - Setting next_dagrun for example_workday_timetable to 2021-01-04 00:00:00+00:00, run_after=2021-01-05 00:00:00+00:00 +[2025-01-29T18:09:15.270+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_workday_timetable.py took 0.093 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_xcom.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_xcom.py.log new file mode 100644 index 0000000000..68fee892ff --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_xcom.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:55.057+0000] {processor.py:186} INFO - Started process (PID=73) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:01:55.058+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:01:55.061+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.060+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:01:55.071+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:01:55.175+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.174+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_xcom +[2025-01-29T18:01:55.185+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.185+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_xcom +[2025-01-29T18:01:55.192+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.192+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_xcom +[2025-01-29T18:01:55.201+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.201+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_xcom +[2025-01-29T18:01:55.208+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.207+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_xcom +[2025-01-29T18:01:55.214+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.214+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_xcom +[2025-01-29T18:01:55.220+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.219+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_xcom +[2025-01-29T18:01:55.220+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.220+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:55.231+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.231+0000] {dag.py:3262} INFO - Creating ORM DAG for example_xcom +[2025-01-29T18:01:55.240+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.239+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:01:55.255+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.205 seconds +[2025-01-29T18:02:25.532+0000] {processor.py:186} INFO - Started process (PID=136) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:02:25.534+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:02:25.536+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.535+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:02:25.542+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:02:25.561+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.560+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:25.579+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.579+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:02:25.600+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.072 seconds +[2025-01-29T18:02:56.396+0000] {processor.py:186} INFO - Started process (PID=199) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:02:56.397+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:02:56.400+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.399+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:02:56.407+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:02:56.427+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.426+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:56.447+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.447+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:02:56.464+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.072 seconds +[2025-01-29T18:03:27.396+0000] {processor.py:186} INFO - Started process (PID=262) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:03:27.397+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:03:27.399+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.399+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:03:27.408+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:03:27.427+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.427+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:27.449+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.449+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:03:27.471+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.080 seconds +[2025-01-29T18:03:57.773+0000] {processor.py:186} INFO - Started process (PID=325) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:03:57.774+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:03:57.777+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.777+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:03:57.787+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:03:57.807+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.807+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:57.826+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.826+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:03:57.843+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.075 seconds +[2025-01-29T18:04:28.000+0000] {processor.py:186} INFO - Started process (PID=388) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:04:28.002+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:04:28.004+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:28.004+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:04:28.012+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:04:28.033+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:28.033+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:28.055+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:28.055+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:04:28.076+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.082 seconds +[2025-01-29T18:04:58.904+0000] {processor.py:186} INFO - Started process (PID=451) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:04:58.905+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:04:58.907+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.907+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:04:58.915+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:04:58.935+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.934+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:58.971+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.971+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:04:58.992+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.094 seconds +[2025-01-29T18:05:29.790+0000] {processor.py:186} INFO - Started process (PID=514) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:05:29.792+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:05:29.794+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.794+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:05:29.802+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:05:29.834+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.834+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:29.859+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.859+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:05:29.876+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.093 seconds +[2025-01-29T18:06:00.031+0000] {processor.py:186} INFO - Started process (PID=577) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:06:00.034+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:06:00.036+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:00.036+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:06:00.043+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:06:00.063+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:00.062+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:00.081+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:00.080+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:06:00.097+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.071 seconds +[2025-01-29T18:06:30.772+0000] {processor.py:186} INFO - Started process (PID=640) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:06:30.773+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:06:30.775+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.775+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:06:30.783+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:06:30.804+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.803+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:30.822+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.822+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:06:30.839+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.072 seconds +[2025-01-29T18:07:01.478+0000] {processor.py:186} INFO - Started process (PID=704) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:07:01.480+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:07:01.482+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.482+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:07:01.490+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:07:01.530+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.530+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:01.549+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.549+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:07:01.570+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.099 seconds +[2025-01-29T18:07:31.644+0000] {processor.py:186} INFO - Started process (PID=768) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:07:31.645+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:07:31.647+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.647+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:07:31.654+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:07:31.672+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.672+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:31.689+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.689+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:07:31.703+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.064 seconds +[2025-01-29T18:08:01.781+0000] {processor.py:186} INFO - Started process (PID=832) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:08:01.783+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:08:01.785+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.784+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:08:01.792+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:08:01.810+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.809+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:01.826+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.825+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:08:01.840+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.063 seconds +[2025-01-29T18:08:32.357+0000] {processor.py:186} INFO - Started process (PID=896) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:08:32.358+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:08:32.360+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.360+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:08:32.367+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:08:32.385+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.385+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:32.403+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.403+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:08:32.420+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.068 seconds +[2025-01-29T18:09:03.305+0000] {processor.py:186} INFO - Started process (PID=960) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:09:03.306+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py for tasks to queue +[2025-01-29T18:09:03.308+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.307+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:09:03.314+0000] {processor.py:925} INFO - DAG(s) 'example_xcom' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py +[2025-01-29T18:09:03.333+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.332+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:03.350+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.350+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom to 2021-01-01 00:00:00+00:00, run_after=2021-01-01 00:00:00+00:00 +[2025-01-29T18:09:03.367+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcom.py took 0.067 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_xcomargs.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_xcomargs.py.log new file mode 100644 index 0000000000..23e65361de --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/example_xcomargs.py.log @@ -0,0 +1,136 @@ +[2025-01-29T18:02:02.972+0000] {processor.py:186} INFO - Started process (PID=110) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:02:02.972+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:02:02.974+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:02.974+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:02:02.985+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args_with_operators', 'example_xcom_args' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:02:03.095+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.094+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_xcom_args_with_operators +[2025-01-29T18:02:03.103+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.103+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_xcom_args_with_operators +[2025-01-29T18:02:03.111+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.111+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_xcom_args_with_operators +[2025-01-29T18:02:03.118+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.118+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_xcom_args_with_operators +[2025-01-29T18:02:03.124+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.123+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_xcom_args_with_operators +[2025-01-29T18:02:03.129+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.129+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_xcom_args_with_operators +[2025-01-29T18:02:03.135+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.135+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_xcom_args_with_operators +[2025-01-29T18:02:03.149+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.148+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:example_xcom_args +[2025-01-29T18:02:03.155+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.155+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:example_xcom_args +[2025-01-29T18:02:03.161+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.161+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:example_xcom_args +[2025-01-29T18:02:03.170+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.169+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:example_xcom_args +[2025-01-29T18:02:03.176+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.176+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:example_xcom_args +[2025-01-29T18:02:03.182+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.181+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:example_xcom_args +[2025-01-29T18:02:03.187+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.187+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:example_xcom_args +[2025-01-29T18:02:03.187+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.187+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:02:03.201+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.201+0000] {dag.py:3262} INFO - Creating ORM DAG for example_xcom_args_with_operators +[2025-01-29T18:02:03.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.202+0000] {dag.py:3262} INFO - Creating ORM DAG for example_xcom_args +[2025-01-29T18:02:03.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.202+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:02:03.203+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.203+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:02:03.222+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.256 seconds +[2025-01-29T18:02:33.320+0000] {processor.py:186} INFO - Started process (PID=173) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:02:33.321+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:02:33.323+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.322+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:02:33.332+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args_with_operators', 'example_xcom_args' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:02:33.351+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.351+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:02:33.364+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.363+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:02:33.367+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.367+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:02:33.392+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.078 seconds +[2025-01-29T18:03:04.334+0000] {processor.py:186} INFO - Started process (PID=236) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:03:04.335+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:03:04.337+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.337+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:03:04.347+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args_with_operators', 'example_xcom_args' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:03:04.369+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.368+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:03:04.382+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.381+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:03:04.386+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.386+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:03:04.405+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.077 seconds +[2025-01-29T18:03:35.656+0000] {processor.py:186} INFO - Started process (PID=299) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:03:35.657+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:03:35.659+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.659+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:03:35.668+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args_with_operators', 'example_xcom_args' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:03:35.688+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.688+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:03:35.699+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.699+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:03:35.702+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.702+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:03:35.717+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.066 seconds +[2025-01-29T18:04:07.003+0000] {processor.py:186} INFO - Started process (PID=362) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:04:07.004+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:04:07.006+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.006+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:04:07.015+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args', 'example_xcom_args_with_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:04:07.040+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.040+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:04:07.051+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.051+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:04:07.054+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.054+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:04:07.070+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.071 seconds +[2025-01-29T18:04:37.918+0000] {processor.py:186} INFO - Started process (PID=425) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:04:37.919+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:04:37.921+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.921+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:04:37.931+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args_with_operators', 'example_xcom_args' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:04:37.954+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.954+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:04:37.966+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.966+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:04:37.970+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.970+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:04:37.985+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.072 seconds +[2025-01-29T18:05:08.701+0000] {processor.py:186} INFO - Started process (PID=488) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:05:08.702+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:05:08.705+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.704+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:05:08.716+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args', 'example_xcom_args_with_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:05:08.736+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.736+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:05:08.750+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.749+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:05:08.753+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.753+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:05:08.769+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.073 seconds +[2025-01-29T18:05:39.976+0000] {processor.py:186} INFO - Started process (PID=551) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:05:39.977+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:05:39.979+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.978+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:05:39.989+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args_with_operators', 'example_xcom_args' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:05:40.012+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.012+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:05:40.023+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.023+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:05:40.026+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.026+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:05:40.042+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.071 seconds +[2025-01-29T18:06:10.700+0000] {processor.py:186} INFO - Started process (PID=614) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:06:10.701+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:06:10.703+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.703+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:06:10.715+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args_with_operators', 'example_xcom_args' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:06:10.738+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.738+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:06:10.750+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.750+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:06:10.753+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.753+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:06:10.767+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.073 seconds +[2025-01-29T18:06:41.329+0000] {processor.py:186} INFO - Started process (PID=677) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:06:41.330+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:06:41.332+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.331+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:06:41.342+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args', 'example_xcom_args_with_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:06:41.367+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.366+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:06:41.379+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.378+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:06:41.382+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.381+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:06:41.396+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.072 seconds +[2025-01-29T18:07:12.473+0000] {processor.py:186} INFO - Started process (PID=741) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:07:12.475+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:07:12.478+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.478+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:07:12.501+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args', 'example_xcom_args_with_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:07:12.519+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.519+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:07:12.534+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.533+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:07:12.537+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.537+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:07:12.555+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.087 seconds +[2025-01-29T18:07:43.431+0000] {processor.py:186} INFO - Started process (PID=805) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:07:43.432+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:07:43.434+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.434+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:07:43.441+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args_with_operators', 'example_xcom_args' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:07:43.462+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.462+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:07:43.475+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.475+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:07:43.478+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.478+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:07:43.494+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.069 seconds +[2025-01-29T18:08:14.310+0000] {processor.py:186} INFO - Started process (PID=869) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:08:14.312+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:08:14.314+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.314+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:08:14.326+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args', 'example_xcom_args_with_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:08:14.347+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.347+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:08:14.360+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.360+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:08:14.363+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.363+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:08:14.377+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.072 seconds +[2025-01-29T18:08:45.289+0000] {processor.py:186} INFO - Started process (PID=933) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:08:45.290+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:08:45.293+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.292+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:08:45.301+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args', 'example_xcom_args_with_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:08:45.321+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.321+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:08:45.333+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.333+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:08:45.336+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.336+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:08:45.352+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.069 seconds +[2025-01-29T18:09:16.199+0000] {processor.py:186} INFO - Started process (PID=997) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:09:16.201+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py for tasks to queue +[2025-01-29T18:09:16.202+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.202+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:09:16.211+0000] {processor.py:925} INFO - DAG(s) 'example_xcom_args', 'example_xcom_args_with_operators' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py +[2025-01-29T18:09:16.232+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.232+0000] {dag.py:3239} INFO - Sync 2 DAGs +[2025-01-29T18:09:16.243+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.243+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args to None, run_after=None +[2025-01-29T18:09:16.246+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.246+0000] {dag.py:4180} INFO - Setting next_dagrun for example_xcom_args_with_operators to None, run_after=None +[2025-01-29T18:09:16.261+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/example_xcomargs.py took 0.066 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/decreasing_priority_weight_strategy.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/decreasing_priority_weight_strategy.py.log new file mode 100644 index 0000000000..f5f21029b6 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/decreasing_priority_weight_strategy.py.log @@ -0,0 +1,75 @@ +[2025-01-29T18:02:03.853+0000] {processor.py:186} INFO - Started process (PID=120) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:02:03.853+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:02:03.855+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.855+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:02:03.858+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:02:03.869+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.021 seconds +[2025-01-29T18:02:34.779+0000] {processor.py:186} INFO - Started process (PID=183) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:02:34.780+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:02:34.782+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.782+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:02:34.784+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:02:34.795+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.021 seconds +[2025-01-29T18:03:05.748+0000] {processor.py:186} INFO - Started process (PID=246) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:03:05.750+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:03:05.752+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.752+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:03:05.754+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:03:05.769+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.026 seconds +[2025-01-29T18:03:36.010+0000] {processor.py:186} INFO - Started process (PID=309) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:03:36.011+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:03:36.014+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:36.013+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:03:36.016+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:03:36.029+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.025 seconds +[2025-01-29T18:04:07.369+0000] {processor.py:186} INFO - Started process (PID=372) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:04:07.370+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:04:07.372+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.372+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:04:07.375+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:04:07.387+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.023 seconds +[2025-01-29T18:04:38.301+0000] {processor.py:186} INFO - Started process (PID=435) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:04:38.302+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:04:38.305+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.304+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:04:38.307+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:04:38.322+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.027 seconds +[2025-01-29T18:05:09.132+0000] {processor.py:186} INFO - Started process (PID=498) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:05:09.135+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:05:09.138+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:09.138+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:05:09.141+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:05:09.155+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.029 seconds +[2025-01-29T18:05:40.409+0000] {processor.py:186} INFO - Started process (PID=561) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:05:40.410+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:05:40.412+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.412+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:05:40.415+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:05:40.430+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.025 seconds +[2025-01-29T18:06:11.133+0000] {processor.py:186} INFO - Started process (PID=624) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:06:11.135+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:06:11.137+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:11.137+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:06:11.139+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:06:11.155+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.027 seconds +[2025-01-29T18:06:41.767+0000] {processor.py:186} INFO - Started process (PID=687) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:06:41.768+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:06:41.771+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.770+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:06:41.772+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:06:41.785+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.023 seconds +[2025-01-29T18:07:12.882+0000] {processor.py:186} INFO - Started process (PID=751) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:07:12.883+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:07:12.886+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.886+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:07:12.888+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:07:12.898+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.022 seconds +[2025-01-29T18:07:43.971+0000] {processor.py:186} INFO - Started process (PID=815) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:07:43.973+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:07:43.975+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.974+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:07:43.978+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:07:43.993+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.027 seconds +[2025-01-29T18:08:14.690+0000] {processor.py:186} INFO - Started process (PID=879) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:08:14.691+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:08:14.693+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.692+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:08:14.695+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:08:14.705+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.021 seconds +[2025-01-29T18:08:45.673+0000] {processor.py:186} INFO - Started process (PID=943) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:08:45.675+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:08:45.677+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.677+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:08:45.679+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:08:45.690+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.022 seconds +[2025-01-29T18:09:16.618+0000] {processor.py:186} INFO - Started process (PID=1007) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:09:16.619+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py for tasks to queue +[2025-01-29T18:09:16.622+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.621+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:09:16.624+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py +[2025-01-29T18:09:16.638+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py took 0.024 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/event_listener.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/event_listener.py.log new file mode 100644 index 0000000000..61c05f931a --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/event_listener.py.log @@ -0,0 +1,75 @@ +[2025-01-29T18:02:03.812+0000] {processor.py:186} INFO - Started process (PID=118) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:02:03.813+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:02:03.815+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.815+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:02:03.817+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:02:03.830+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.024 seconds +[2025-01-29T18:02:34.739+0000] {processor.py:186} INFO - Started process (PID=181) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:02:34.740+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:02:34.742+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.742+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:02:34.744+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:02:34.756+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.022 seconds +[2025-01-29T18:03:05.700+0000] {processor.py:186} INFO - Started process (PID=244) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:03:05.701+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:03:05.703+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.703+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:03:05.705+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:03:05.718+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.023 seconds +[2025-01-29T18:03:35.965+0000] {processor.py:186} INFO - Started process (PID=307) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:03:35.966+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:03:35.968+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.968+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:03:35.971+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:03:35.984+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.025 seconds +[2025-01-29T18:04:07.324+0000] {processor.py:186} INFO - Started process (PID=370) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:04:07.325+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:04:07.328+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.327+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:04:07.330+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:04:07.342+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.023 seconds +[2025-01-29T18:04:38.256+0000] {processor.py:186} INFO - Started process (PID=433) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:04:38.257+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:04:38.259+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.259+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:04:38.262+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:04:38.276+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.026 seconds +[2025-01-29T18:05:09.086+0000] {processor.py:186} INFO - Started process (PID=496) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:05:09.087+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:05:09.089+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:09.089+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:05:09.092+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:05:09.106+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.028 seconds +[2025-01-29T18:05:40.364+0000] {processor.py:186} INFO - Started process (PID=559) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:05:40.365+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:05:40.367+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.367+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:05:40.370+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:05:40.383+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.024 seconds +[2025-01-29T18:06:11.081+0000] {processor.py:186} INFO - Started process (PID=622) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:06:11.082+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:06:11.084+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:11.084+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:06:11.087+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:06:11.105+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.031 seconds +[2025-01-29T18:06:41.691+0000] {processor.py:186} INFO - Started process (PID=685) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:06:41.692+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:06:41.694+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.694+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:06:41.696+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:06:41.708+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.021 seconds +[2025-01-29T18:07:12.842+0000] {processor.py:186} INFO - Started process (PID=749) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:07:12.843+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:07:12.845+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.844+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:07:12.847+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:07:12.858+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.022 seconds +[2025-01-29T18:07:43.917+0000] {processor.py:186} INFO - Started process (PID=813) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:07:43.919+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:07:43.921+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.920+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:07:43.925+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:07:43.938+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.027 seconds +[2025-01-29T18:08:14.649+0000] {processor.py:186} INFO - Started process (PID=877) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:08:14.650+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:08:14.652+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.652+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:08:14.654+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:08:14.666+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.022 seconds +[2025-01-29T18:08:45.630+0000] {processor.py:186} INFO - Started process (PID=941) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:08:45.632+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:08:45.634+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.633+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:08:45.635+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:08:45.650+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.025 seconds +[2025-01-29T18:09:16.573+0000] {processor.py:186} INFO - Started process (PID=1005) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:09:16.574+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py for tasks to queue +[2025-01-29T18:09:16.576+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.575+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:09:16.577+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py +[2025-01-29T18:09:16.591+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/event_listener.py took 0.023 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/listener_plugin.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/listener_plugin.py.log new file mode 100644 index 0000000000..a568660720 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/listener_plugin.py.log @@ -0,0 +1,75 @@ +[2025-01-29T18:02:03.773+0000] {processor.py:186} INFO - Started process (PID=117) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:02:03.773+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:02:03.776+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.775+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:02:03.778+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:02:03.790+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.023 seconds +[2025-01-29T18:02:34.699+0000] {processor.py:186} INFO - Started process (PID=180) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:02:34.700+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:02:34.702+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.702+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:02:34.705+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:02:34.716+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.022 seconds +[2025-01-29T18:03:05.660+0000] {processor.py:186} INFO - Started process (PID=243) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:03:05.662+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:03:05.664+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.663+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:03:05.665+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:03:05.679+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.024 seconds +[2025-01-29T18:03:35.952+0000] {processor.py:186} INFO - Started process (PID=306) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:03:35.953+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:03:35.955+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.955+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:03:35.957+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:03:35.969+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.022 seconds +[2025-01-29T18:04:07.310+0000] {processor.py:186} INFO - Started process (PID=369) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:04:07.311+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:04:07.313+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.313+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:04:07.315+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:04:07.328+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.022 seconds +[2025-01-29T18:04:38.214+0000] {processor.py:186} INFO - Started process (PID=432) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:04:38.215+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:04:38.217+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.217+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:04:38.219+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:04:38.232+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.024 seconds +[2025-01-29T18:05:09.050+0000] {processor.py:186} INFO - Started process (PID=495) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:05:09.052+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:05:09.054+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:09.054+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:05:09.056+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:05:09.070+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.026 seconds +[2025-01-29T18:05:40.325+0000] {processor.py:186} INFO - Started process (PID=558) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:05:40.327+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:05:40.328+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.328+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:05:40.331+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:05:40.344+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.023 seconds +[2025-01-29T18:06:11.027+0000] {processor.py:186} INFO - Started process (PID=621) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:06:11.029+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:06:11.031+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:11.031+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:06:11.034+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:06:11.052+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.033 seconds +[2025-01-29T18:06:41.651+0000] {processor.py:186} INFO - Started process (PID=684) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:06:41.652+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:06:41.654+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.654+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:06:41.656+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:06:41.670+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.024 seconds +[2025-01-29T18:07:12.815+0000] {processor.py:186} INFO - Started process (PID=748) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:07:12.816+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:07:12.818+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.818+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:07:12.820+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:07:12.831+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.022 seconds +[2025-01-29T18:07:43.873+0000] {processor.py:186} INFO - Started process (PID=812) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:07:43.874+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:07:43.877+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.877+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:07:43.880+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:07:43.893+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.026 seconds +[2025-01-29T18:08:14.630+0000] {processor.py:186} INFO - Started process (PID=876) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:08:14.631+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:08:14.633+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.633+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:08:14.635+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:08:14.646+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.021 seconds +[2025-01-29T18:08:45.601+0000] {processor.py:186} INFO - Started process (PID=940) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:08:45.603+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:08:45.604+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.604+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:08:45.606+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:08:45.619+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.023 seconds +[2025-01-29T18:09:16.536+0000] {processor.py:186} INFO - Started process (PID=1004) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:09:16.537+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py for tasks to queue +[2025-01-29T18:09:16.540+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.539+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:09:16.542+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py +[2025-01-29T18:09:16.556+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/listener_plugin.py took 0.025 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/workday.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/workday.py.log new file mode 100644 index 0000000000..e09cd24b36 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/plugins/workday.py.log @@ -0,0 +1,75 @@ +[2025-01-29T18:02:03.819+0000] {processor.py:186} INFO - Started process (PID=119) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:02:03.820+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:02:03.823+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.823+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:02:03.826+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:02:03.839+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.026 seconds +[2025-01-29T18:02:34.752+0000] {processor.py:186} INFO - Started process (PID=182) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:02:34.753+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:02:34.755+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.755+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:02:34.758+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:02:34.768+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.022 seconds +[2025-01-29T18:03:05.743+0000] {processor.py:186} INFO - Started process (PID=245) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:03:05.744+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:03:05.746+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.746+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:03:05.748+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:03:05.765+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.027 seconds +[2025-01-29T18:03:35.994+0000] {processor.py:186} INFO - Started process (PID=308) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:03:35.995+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:03:35.997+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.997+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:03:35.999+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:03:36.012+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.023 seconds +[2025-01-29T18:04:07.354+0000] {processor.py:186} INFO - Started process (PID=371) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:04:07.355+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:04:07.357+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.357+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:04:07.359+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:04:07.372+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.023 seconds +[2025-01-29T18:04:38.262+0000] {processor.py:186} INFO - Started process (PID=434) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:04:38.263+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:04:38.266+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.265+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:04:38.268+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:04:38.282+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.025 seconds +[2025-01-29T18:05:09.098+0000] {processor.py:186} INFO - Started process (PID=497) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:05:09.100+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:05:09.102+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:09.101+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:05:09.104+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:05:09.119+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.027 seconds +[2025-01-29T18:05:40.405+0000] {processor.py:186} INFO - Started process (PID=560) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:05:40.406+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:05:40.408+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.408+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:05:40.410+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:05:40.425+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.025 seconds +[2025-01-29T18:06:11.089+0000] {processor.py:186} INFO - Started process (PID=623) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:06:11.090+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:06:11.094+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:11.094+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:06:11.098+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:06:11.115+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.033 seconds +[2025-01-29T18:06:41.727+0000] {processor.py:186} INFO - Started process (PID=686) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:06:41.728+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:06:41.730+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.729+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:06:41.732+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:06:41.745+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.023 seconds +[2025-01-29T18:07:12.856+0000] {processor.py:186} INFO - Started process (PID=750) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:07:12.857+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:07:12.859+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.859+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:07:12.862+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:07:12.875+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.025 seconds +[2025-01-29T18:07:43.965+0000] {processor.py:186} INFO - Started process (PID=814) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:07:43.966+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:07:43.969+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.968+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:07:43.971+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:07:43.987+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.028 seconds +[2025-01-29T18:08:14.670+0000] {processor.py:186} INFO - Started process (PID=878) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:08:14.672+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:08:14.674+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.674+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:08:14.677+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:08:14.689+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.024 seconds +[2025-01-29T18:08:45.647+0000] {processor.py:186} INFO - Started process (PID=942) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:08:45.648+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:08:45.650+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.650+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:08:45.652+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:08:45.665+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.026 seconds +[2025-01-29T18:09:16.612+0000] {processor.py:186} INFO - Started process (PID=1006) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:09:16.614+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py for tasks to queue +[2025-01-29T18:09:16.616+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.615+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:09:16.618+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py +[2025-01-29T18:09:16.632+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/plugins/workday.py took 0.024 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/subdags/subdag.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/subdags/subdag.py.log new file mode 100644 index 0000000000..4c0e65e88c --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/subdags/subdag.py.log @@ -0,0 +1,75 @@ +[2025-01-29T18:02:03.726+0000] {processor.py:186} INFO - Started process (PID=116) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:02:03.727+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:02:03.729+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.729+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:02:03.731+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:02:03.744+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.025 seconds +[2025-01-29T18:02:34.659+0000] {processor.py:186} INFO - Started process (PID=179) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:02:34.660+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:02:34.662+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:34.662+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:02:34.664+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:02:34.676+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.022 seconds +[2025-01-29T18:03:05.621+0000] {processor.py:186} INFO - Started process (PID=242) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:03:05.622+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:03:05.624+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:05.623+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:03:05.625+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:03:05.639+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.023 seconds +[2025-01-29T18:03:35.921+0000] {processor.py:186} INFO - Started process (PID=305) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:03:35.922+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:03:35.924+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.924+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:03:35.926+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:03:35.940+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.024 seconds +[2025-01-29T18:04:07.270+0000] {processor.py:186} INFO - Started process (PID=368) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:04:07.271+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:04:07.273+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.273+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:04:07.275+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:04:07.289+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.024 seconds +[2025-01-29T18:04:38.182+0000] {processor.py:186} INFO - Started process (PID=431) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:04:38.183+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:04:38.185+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:38.185+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:04:38.187+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:04:38.199+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.023 seconds +[2025-01-29T18:05:09.003+0000] {processor.py:186} INFO - Started process (PID=494) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:05:09.005+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:05:09.007+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:09.007+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:05:09.010+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:05:09.024+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.028 seconds +[2025-01-29T18:05:40.322+0000] {processor.py:186} INFO - Started process (PID=557) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:05:40.323+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:05:40.325+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.325+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:05:40.327+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:05:40.341+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.025 seconds +[2025-01-29T18:06:10.980+0000] {processor.py:186} INFO - Started process (PID=620) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:06:10.981+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:06:10.983+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.983+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:06:10.987+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:06:11.002+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.028 seconds +[2025-01-29T18:06:41.608+0000] {processor.py:186} INFO - Started process (PID=683) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:06:41.609+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:06:41.611+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.611+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:06:41.613+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:06:41.627+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.024 seconds +[2025-01-29T18:07:12.777+0000] {processor.py:186} INFO - Started process (PID=747) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:07:12.778+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:07:12.780+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.779+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:07:12.782+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:07:12.792+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.021 seconds +[2025-01-29T18:07:43.827+0000] {processor.py:186} INFO - Started process (PID=811) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:07:43.828+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:07:43.830+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.830+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:07:43.833+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:07:43.848+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.028 seconds +[2025-01-29T18:08:14.609+0000] {processor.py:186} INFO - Started process (PID=875) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:08:14.610+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:08:14.613+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.612+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:08:14.615+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:08:14.625+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.022 seconds +[2025-01-29T18:08:45.562+0000] {processor.py:186} INFO - Started process (PID=939) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:08:45.563+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:08:45.565+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.565+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:08:45.567+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:08:45.580+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.023 seconds +[2025-01-29T18:09:16.532+0000] {processor.py:186} INFO - Started process (PID=1003) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:09:16.533+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py for tasks to queue +[2025-01-29T18:09:16.535+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.535+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:09:16.537+0000] {processor.py:927} WARNING - No viable dags retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py +[2025-01-29T18:09:16.551+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/subdags/subdag.py took 0.024 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial.py.log new file mode 100644 index 0000000000..c7cc65e500 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:57.579+0000] {processor.py:186} INFO - Started process (PID=86) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:01:57.590+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:01:57.594+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.594+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:01:57.604+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:01:57.727+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.727+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:tutorial +[2025-01-29T18:01:57.739+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.738+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:tutorial +[2025-01-29T18:01:57.745+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.745+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:tutorial +[2025-01-29T18:01:57.753+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.753+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:tutorial +[2025-01-29T18:01:57.760+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.759+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:tutorial +[2025-01-29T18:01:57.767+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.767+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:tutorial +[2025-01-29T18:01:57.775+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.774+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:tutorial +[2025-01-29T18:01:57.775+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.775+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:57.799+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.799+0000] {dag.py:3262} INFO - Creating ORM DAG for tutorial +[2025-01-29T18:01:57.810+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:57.810+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:57.827+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.252 seconds +[2025-01-29T18:02:28.471+0000] {processor.py:186} INFO - Started process (PID=149) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:02:28.474+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:02:28.476+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.476+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:02:28.487+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:02:28.508+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.507+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:28.528+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:28.528+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:28.546+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.081 seconds +[2025-01-29T18:02:59.519+0000] {processor.py:186} INFO - Started process (PID=212) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:02:59.521+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:02:59.525+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.524+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:02:59.535+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:02:59.561+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.561+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:59.589+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:59.589+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:59.616+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.105 seconds +[2025-01-29T18:03:30.017+0000] {processor.py:186} INFO - Started process (PID=274) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:03:30.019+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:03:30.021+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.021+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:03:30.030+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:03:30.051+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.050+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:30.072+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:30.072+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:30.096+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.084 seconds +[2025-01-29T18:04:00.361+0000] {processor.py:186} INFO - Started process (PID=337) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:04:00.363+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:04:00.365+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.365+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:04:00.372+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:04:00.389+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.389+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:00.405+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:00.405+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:00.421+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.068 seconds +[2025-01-29T18:04:30.596+0000] {processor.py:186} INFO - Started process (PID=400) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:04:30.597+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:04:30.599+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.599+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:04:30.605+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:04:30.622+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.622+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:30.638+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:30.638+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:30.654+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.062 seconds +[2025-01-29T18:05:01.459+0000] {processor.py:186} INFO - Started process (PID=463) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:05:01.460+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:05:01.462+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.462+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:05:01.474+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:05:01.493+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.492+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:01.514+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:01.513+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:01.532+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.078 seconds +[2025-01-29T18:05:32.370+0000] {processor.py:186} INFO - Started process (PID=526) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:05:32.371+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:05:32.373+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.373+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:05:32.380+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:05:32.396+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.396+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:32.416+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:32.416+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:32.432+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.069 seconds +[2025-01-29T18:06:02.652+0000] {processor.py:186} INFO - Started process (PID=589) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:06:02.653+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:06:02.655+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.655+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:06:02.662+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:06:02.683+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.683+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:02.703+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:02.703+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:02.722+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.075 seconds +[2025-01-29T18:06:33.414+0000] {processor.py:186} INFO - Started process (PID=652) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:06:33.416+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:06:33.419+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.419+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:06:33.426+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:06:33.443+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.443+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:33.461+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:33.461+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:33.475+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.070 seconds +[2025-01-29T18:07:04.127+0000] {processor.py:186} INFO - Started process (PID=716) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:07:04.128+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:07:04.130+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.130+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:07:04.137+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:07:04.155+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.155+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:04.172+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:04.172+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:04.190+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.068 seconds +[2025-01-29T18:07:34.349+0000] {processor.py:186} INFO - Started process (PID=780) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:07:34.350+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:07:34.352+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.352+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:07:34.359+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:07:34.378+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.377+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:34.396+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:34.396+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:34.413+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.069 seconds +[2025-01-29T18:08:05.363+0000] {processor.py:186} INFO - Started process (PID=844) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:08:05.364+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:08:05.366+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.366+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:08:05.373+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:08:05.392+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.392+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:05.411+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:05.411+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:05.428+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.070 seconds +[2025-01-29T18:08:35.853+0000] {processor.py:186} INFO - Started process (PID=908) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:08:35.855+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:08:35.856+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.856+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:08:35.862+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:08:35.879+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.879+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:35.896+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:35.896+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:35.913+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.064 seconds +[2025-01-29T18:09:06.013+0000] {processor.py:186} INFO - Started process (PID=972) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:09:06.015+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py for tasks to queue +[2025-01-29T18:09:06.017+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.016+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:09:06.024+0000] {processor.py:925} INFO - DAG(s) 'tutorial' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py +[2025-01-29T18:09:06.043+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.042+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:06.059+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:06.059+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:06.075+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial.py took 0.066 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_dag.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_dag.py.log new file mode 100644 index 0000000000..b403566eb4 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_dag.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:54.027+0000] {processor.py:186} INFO - Started process (PID=66) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:01:54.028+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:01:54.031+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.031+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:01:54.041+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:01:54.177+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.176+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:tutorial_dag +[2025-01-29T18:01:54.189+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.189+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:tutorial_dag +[2025-01-29T18:01:54.201+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.200+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:tutorial_dag +[2025-01-29T18:01:54.213+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.213+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:tutorial_dag +[2025-01-29T18:01:54.220+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.220+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:tutorial_dag +[2025-01-29T18:01:54.227+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.227+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:tutorial_dag +[2025-01-29T18:01:54.235+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.234+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:tutorial_dag +[2025-01-29T18:01:54.235+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.235+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:54.251+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.251+0000] {dag.py:3262} INFO - Creating ORM DAG for tutorial_dag +[2025-01-29T18:01:54.252+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.252+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:01:54.272+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.251 seconds +[2025-01-29T18:02:25.121+0000] {processor.py:186} INFO - Started process (PID=129) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:02:25.130+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:02:25.132+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.131+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:02:25.138+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:02:25.157+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.156+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:25.167+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.167+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:02:25.185+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.069 seconds +[2025-01-29T18:02:56.071+0000] {processor.py:186} INFO - Started process (PID=192) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:02:56.073+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:02:56.076+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.076+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:02:56.083+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:02:56.102+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.102+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:56.115+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.115+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:02:56.133+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.066 seconds +[2025-01-29T18:03:27.042+0000] {processor.py:186} INFO - Started process (PID=255) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:03:27.044+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:03:27.047+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.046+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:03:27.054+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:03:27.076+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.076+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:27.091+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.091+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:03:27.115+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.078 seconds +[2025-01-29T18:03:57.383+0000] {processor.py:186} INFO - Started process (PID=318) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:03:57.385+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:03:57.387+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.387+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:03:57.396+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:03:57.426+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.426+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:57.443+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.443+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:03:57.472+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.095 seconds +[2025-01-29T18:04:27.669+0000] {processor.py:186} INFO - Started process (PID=381) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:04:27.671+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:04:27.673+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.673+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:04:27.682+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:04:27.700+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.700+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:27.712+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.711+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:04:27.733+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.071 seconds +[2025-01-29T18:04:58.583+0000] {processor.py:186} INFO - Started process (PID=444) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:04:58.584+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:04:58.587+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.587+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:04:58.593+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:04:58.612+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.612+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:58.624+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.624+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:04:58.642+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.064 seconds +[2025-01-29T18:05:29.420+0000] {processor.py:186} INFO - Started process (PID=507) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:05:29.422+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:05:29.424+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.424+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:05:29.431+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:05:29.449+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.449+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:29.464+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.464+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:05:29.504+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.091 seconds +[2025-01-29T18:05:59.716+0000] {processor.py:186} INFO - Started process (PID=570) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:05:59.718+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:05:59.721+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.721+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:05:59.728+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:05:59.749+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.749+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:59.762+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.761+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:05:59.780+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.071 seconds +[2025-01-29T18:06:30.432+0000] {processor.py:186} INFO - Started process (PID=633) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:06:30.443+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:06:30.446+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.445+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:06:30.451+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:06:30.472+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.471+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:30.482+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.482+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:06:30.503+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.077 seconds +[2025-01-29T18:07:01.089+0000] {processor.py:186} INFO - Started process (PID=697) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:07:01.100+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:07:01.102+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.102+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:07:01.108+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:07:01.134+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.133+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:01.146+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.146+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:07:01.167+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.084 seconds +[2025-01-29T18:07:31.258+0000] {processor.py:186} INFO - Started process (PID=761) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:07:31.259+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:07:31.262+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.261+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:07:31.268+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:07:31.286+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.286+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:31.297+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.297+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:07:31.332+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.080 seconds +[2025-01-29T18:08:01.410+0000] {processor.py:186} INFO - Started process (PID=825) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:08:01.421+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:08:01.423+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.423+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:08:01.429+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:08:01.447+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.447+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:01.458+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.457+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:08:01.475+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.071 seconds +[2025-01-29T18:08:31.986+0000] {processor.py:186} INFO - Started process (PID=889) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:08:31.997+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:08:32.000+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.000+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:08:32.005+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:08:32.026+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.026+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:32.037+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.037+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:08:32.056+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.076 seconds +[2025-01-29T18:09:02.951+0000] {processor.py:186} INFO - Started process (PID=953) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:09:02.953+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py for tasks to queue +[2025-01-29T18:09:02.957+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:02.956+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:09:02.963+0000] {processor.py:925} INFO - DAG(s) 'tutorial_dag' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py +[2025-01-29T18:09:02.982+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:02.982+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:02.993+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:02.992+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_dag to None, run_after=None +[2025-01-29T18:09:03.010+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_dag.py took 0.064 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_objectstorage.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_objectstorage.py.log new file mode 100644 index 0000000000..bf8f4787b8 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_objectstorage.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:53.528+0000] {processor.py:186} INFO - Started process (PID=58) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:01:53.529+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:01:53.532+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.532+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:01:53.560+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:01:53.902+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.901+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:tutorial_objectstorage +[2025-01-29T18:01:53.914+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.913+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:tutorial_objectstorage +[2025-01-29T18:01:53.922+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.922+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:tutorial_objectstorage +[2025-01-29T18:01:53.931+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.931+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:tutorial_objectstorage +[2025-01-29T18:01:53.939+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.939+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:tutorial_objectstorage +[2025-01-29T18:01:53.947+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.946+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:tutorial_objectstorage +[2025-01-29T18:01:53.954+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.954+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:tutorial_objectstorage +[2025-01-29T18:01:53.954+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.954+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:53.973+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.973+0000] {dag.py:3262} INFO - Creating ORM DAG for tutorial_objectstorage +[2025-01-29T18:01:53.974+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:53.974+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:01:53.995+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.475 seconds +[2025-01-29T18:02:24.024+0000] {processor.py:186} INFO - Started process (PID=127) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:02:24.027+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:02:24.029+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:24.029+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:02:24.038+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:02:24.056+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:24.055+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:24.068+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:24.068+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:02:24.087+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.069 seconds +[2025-01-29T18:02:54.959+0000] {processor.py:186} INFO - Started process (PID=190) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:02:54.961+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:02:54.963+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:54.963+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:02:54.973+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:02:54.995+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:54.995+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:55.010+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:55.010+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:02:55.035+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.082 seconds +[2025-01-29T18:03:25.925+0000] {processor.py:186} INFO - Started process (PID=253) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:03:25.936+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:03:25.938+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:25.938+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:03:25.947+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:03:25.969+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:25.968+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:25.982+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:25.982+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:03:26.004+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.086 seconds +[2025-01-29T18:03:56.255+0000] {processor.py:186} INFO - Started process (PID=316) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:03:56.267+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:03:56.269+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:56.269+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:03:56.277+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:03:56.299+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:56.299+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:56.327+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:56.326+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:03:56.351+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.101 seconds +[2025-01-29T18:04:26.561+0000] {processor.py:186} INFO - Started process (PID=379) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:04:26.572+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:04:26.575+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:26.574+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:04:26.585+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:04:26.605+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:26.604+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:26.617+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:26.617+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:04:26.638+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.082 seconds +[2025-01-29T18:04:57.493+0000] {processor.py:186} INFO - Started process (PID=442) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:04:57.494+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:04:57.497+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:57.497+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:04:57.506+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:04:57.524+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:57.524+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:57.535+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:57.535+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:04:57.553+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.065 seconds +[2025-01-29T18:05:28.321+0000] {processor.py:186} INFO - Started process (PID=505) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:05:28.332+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:05:28.335+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:28.334+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:05:28.342+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:05:28.362+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:28.361+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:28.373+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:28.373+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:05:28.390+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.074 seconds +[2025-01-29T18:05:58.570+0000] {processor.py:186} INFO - Started process (PID=568) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:05:58.571+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:05:58.578+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:58.576+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:05:58.589+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:05:58.627+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:58.627+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:58.655+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:58.655+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:05:58.677+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.114 seconds +[2025-01-29T18:06:29.314+0000] {processor.py:186} INFO - Started process (PID=631) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:06:29.316+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:06:29.319+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:29.319+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:06:29.329+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:06:29.351+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:29.351+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:29.380+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:29.380+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:06:29.401+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.094 seconds +[2025-01-29T18:06:59.981+0000] {processor.py:186} INFO - Started process (PID=695) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:06:59.992+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:06:59.994+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:59.994+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:07:00.001+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:07:00.021+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:00.021+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:00.033+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:00.033+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:07:00.051+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.075 seconds +[2025-01-29T18:07:30.077+0000] {processor.py:186} INFO - Started process (PID=759) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:07:30.089+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:07:30.091+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:30.090+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:07:30.097+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:07:30.115+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:30.115+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:30.126+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:30.126+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:07:30.143+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.071 seconds +[2025-01-29T18:08:00.219+0000] {processor.py:186} INFO - Started process (PID=823) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:08:00.231+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:08:00.233+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:00.233+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:08:00.240+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:08:00.260+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:00.259+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:00.269+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:00.269+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:08:00.287+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.073 seconds +[2025-01-29T18:08:30.881+0000] {processor.py:186} INFO - Started process (PID=887) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:08:30.893+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:08:30.896+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:30.895+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:08:30.903+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:08:30.921+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:30.921+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:30.932+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:30.931+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:08:30.949+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.073 seconds +[2025-01-29T18:09:01.847+0000] {processor.py:186} INFO - Started process (PID=951) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:09:01.858+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py for tasks to queue +[2025-01-29T18:09:01.860+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:01.860+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:09:01.867+0000] {processor.py:925} INFO - DAG(s) 'tutorial_objectstorage' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py +[2025-01-29T18:09:01.886+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:01.886+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:01.897+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:01.897+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_objectstorage to None, run_after=None +[2025-01-29T18:09:01.920+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_objectstorage.py took 0.078 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_api.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_api.py.log new file mode 100644 index 0000000000..c582057dbf --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_api.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:02:03.056+0000] {processor.py:186} INFO - Started process (PID=111) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:02:03.057+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:02:03.059+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.059+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:02:03.071+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:02:03.171+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.170+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:tutorial_taskflow_api +[2025-01-29T18:02:03.180+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.180+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:tutorial_taskflow_api +[2025-01-29T18:02:03.186+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.185+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:tutorial_taskflow_api +[2025-01-29T18:02:03.192+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.192+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:tutorial_taskflow_api +[2025-01-29T18:02:03.198+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.197+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:tutorial_taskflow_api +[2025-01-29T18:02:03.204+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.204+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:tutorial_taskflow_api +[2025-01-29T18:02:03.212+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.211+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:tutorial_taskflow_api +[2025-01-29T18:02:03.212+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.212+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:03.228+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.228+0000] {dag.py:3262} INFO - Creating ORM DAG for tutorial_taskflow_api +[2025-01-29T18:02:03.229+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:03.229+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:02:03.244+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.195 seconds +[2025-01-29T18:02:33.374+0000] {processor.py:186} INFO - Started process (PID=174) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:02:33.375+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:02:33.377+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.377+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:02:33.402+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:02:33.427+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.426+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:33.441+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:33.441+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:02:33.466+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.097 seconds +[2025-01-29T18:03:04.367+0000] {processor.py:186} INFO - Started process (PID=237) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:03:04.368+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:03:04.370+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.370+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:03:04.379+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:03:04.401+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.400+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:04.416+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:04.416+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:03:04.435+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.073 seconds +[2025-01-29T18:03:35.683+0000] {processor.py:186} INFO - Started process (PID=300) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:03:35.684+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:03:35.686+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.686+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:03:35.692+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:03:35.711+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.711+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:35.724+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:35.723+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:03:35.750+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.065 seconds +[2025-01-29T18:04:07.053+0000] {processor.py:186} INFO - Started process (PID=363) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:04:07.055+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:04:07.057+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.057+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:04:07.065+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:04:07.085+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.084+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:07.097+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:07.097+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:04:07.117+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.069 seconds +[2025-01-29T18:04:37.954+0000] {processor.py:186} INFO - Started process (PID=426) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:04:37.955+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:04:37.957+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.957+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:04:37.964+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:04:37.985+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.984+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:37.997+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:37.997+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:04:38.014+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.065 seconds +[2025-01-29T18:05:08.784+0000] {processor.py:186} INFO - Started process (PID=489) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:05:08.785+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:05:08.787+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.787+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:05:08.793+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:05:08.812+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.812+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:08.827+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:08.827+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:05:08.846+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.068 seconds +[2025-01-29T18:05:39.981+0000] {processor.py:186} INFO - Started process (PID=552) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:05:39.983+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:05:39.985+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:39.985+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:05:39.994+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:05:40.012+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.012+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:40.023+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:40.022+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:05:40.040+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.064 seconds +[2025-01-29T18:06:10.742+0000] {processor.py:186} INFO - Started process (PID=615) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:06:10.743+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:06:10.745+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.745+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:06:10.752+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:06:10.769+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.769+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:10.781+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:10.780+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:06:10.800+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.063 seconds +[2025-01-29T18:06:41.336+0000] {processor.py:186} INFO - Started process (PID=678) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:06:41.337+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:06:41.339+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.339+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:06:41.347+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:06:41.367+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.367+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:41.378+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:41.378+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:06:41.396+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.067 seconds +[2025-01-29T18:07:12.575+0000] {processor.py:186} INFO - Started process (PID=742) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:07:12.577+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:07:12.579+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.578+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:07:12.586+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:07:12.604+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.603+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:12.618+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:12.618+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:07:12.633+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.063 seconds +[2025-01-29T18:07:43.515+0000] {processor.py:186} INFO - Started process (PID=806) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:07:43.516+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:07:43.518+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.518+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:07:43.525+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:07:43.541+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.541+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:43.553+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:43.552+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:07:43.569+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.059 seconds +[2025-01-29T18:08:14.335+0000] {processor.py:186} INFO - Started process (PID=870) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:08:14.336+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:08:14.338+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.338+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:08:14.345+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:08:14.362+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.362+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:14.374+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:14.374+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:08:14.392+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.063 seconds +[2025-01-29T18:08:45.362+0000] {processor.py:186} INFO - Started process (PID=934) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:08:45.363+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:08:45.365+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.365+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:08:45.373+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:08:45.390+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.390+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:45.402+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:45.402+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:08:45.420+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.065 seconds +[2025-01-29T18:09:16.211+0000] {processor.py:186} INFO - Started process (PID=998) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:09:16.212+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py for tasks to queue +[2025-01-29T18:09:16.215+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.215+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:09:16.222+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py +[2025-01-29T18:09:16.239+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.239+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:16.250+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:16.250+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api to None, run_after=None +[2025-01-29T18:09:16.268+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api.py took 0.062 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_api_virtualenv.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_api_virtualenv.py.log new file mode 100644 index 0000000000..8247834fdf --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_api_virtualenv.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:54.306+0000] {processor.py:186} INFO - Started process (PID=68) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:01:54.307+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:01:54.310+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.310+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:01:54.337+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:01:54.479+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.478+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:tutorial_taskflow_api_virtualenv +[2025-01-29T18:01:54.502+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.501+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:tutorial_taskflow_api_virtualenv +[2025-01-29T18:01:54.510+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.510+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:tutorial_taskflow_api_virtualenv +[2025-01-29T18:01:54.521+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.520+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:tutorial_taskflow_api_virtualenv +[2025-01-29T18:01:54.529+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.528+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:tutorial_taskflow_api_virtualenv +[2025-01-29T18:01:54.537+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.537+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:tutorial_taskflow_api_virtualenv +[2025-01-29T18:01:54.547+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.546+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:tutorial_taskflow_api_virtualenv +[2025-01-29T18:01:54.548+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.547+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:54.567+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.566+0000] {dag.py:3262} INFO - Creating ORM DAG for tutorial_taskflow_api_virtualenv +[2025-01-29T18:01:54.568+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:54.568+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:01:54.588+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.290 seconds +[2025-01-29T18:02:25.205+0000] {processor.py:186} INFO - Started process (PID=131) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:02:25.207+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:02:25.209+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.209+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:02:25.220+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:02:25.239+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.238+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:25.249+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.248+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:02:25.265+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.065 seconds +[2025-01-29T18:02:56.157+0000] {processor.py:186} INFO - Started process (PID=194) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:02:56.159+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:02:56.161+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.160+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:02:56.171+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:02:56.191+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.191+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:56.205+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.204+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:02:56.222+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.072 seconds +[2025-01-29T18:03:27.158+0000] {processor.py:186} INFO - Started process (PID=257) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:03:27.159+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:03:27.161+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.161+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:03:27.175+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:03:27.196+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.195+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:27.212+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.212+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:03:27.232+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.082 seconds +[2025-01-29T18:03:57.495+0000] {processor.py:186} INFO - Started process (PID=320) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:03:57.496+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:03:57.498+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.498+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:03:57.507+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:03:57.524+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.524+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:57.535+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.535+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:03:57.551+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.060 seconds +[2025-01-29T18:04:27.759+0000] {processor.py:186} INFO - Started process (PID=383) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:04:27.761+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:04:27.763+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.762+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:04:27.776+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:04:27.794+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.794+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:27.807+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:27.807+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:04:27.824+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.070 seconds +[2025-01-29T18:04:58.670+0000] {processor.py:186} INFO - Started process (PID=446) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:04:58.671+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:04:58.674+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.673+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:04:58.682+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:04:58.702+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.702+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:58.714+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.714+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:04:58.734+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.071 seconds +[2025-01-29T18:05:29.529+0000] {processor.py:186} INFO - Started process (PID=509) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:05:29.530+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:05:29.532+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.532+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:05:29.543+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:05:29.564+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.564+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:29.589+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.588+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:05:29.620+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.097 seconds +[2025-01-29T18:05:59.806+0000] {processor.py:186} INFO - Started process (PID=572) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:05:59.807+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:05:59.809+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.809+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:05:59.819+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:05:59.837+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.837+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:59.848+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:59.847+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:05:59.865+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.065 seconds +[2025-01-29T18:06:30.530+0000] {processor.py:186} INFO - Started process (PID=635) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:06:30.532+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:06:30.535+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.535+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:06:30.561+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:06:30.578+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.578+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:30.589+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.589+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:06:30.606+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.083 seconds +[2025-01-29T18:07:01.196+0000] {processor.py:186} INFO - Started process (PID=699) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:07:01.198+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:07:01.201+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.201+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:07:01.213+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:07:01.232+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.232+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:01.242+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.242+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:07:01.259+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.069 seconds +[2025-01-29T18:07:31.357+0000] {processor.py:186} INFO - Started process (PID=763) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:07:31.359+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:07:31.362+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.362+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:07:31.372+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:07:31.389+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.389+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:31.400+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.400+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:07:31.417+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.065 seconds +[2025-01-29T18:08:01.497+0000] {processor.py:186} INFO - Started process (PID=827) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:08:01.498+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:08:01.501+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.501+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:08:01.511+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:08:01.530+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.530+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:01.544+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.543+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:08:01.566+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.074 seconds +[2025-01-29T18:08:32.078+0000] {processor.py:186} INFO - Started process (PID=891) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:08:32.080+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:08:32.083+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.083+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:08:32.093+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:08:32.126+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.126+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:32.137+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.136+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:08:32.152+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.079 seconds +[2025-01-29T18:09:03.032+0000] {processor.py:186} INFO - Started process (PID=955) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:09:03.034+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py for tasks to queue +[2025-01-29T18:09:03.036+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.036+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:09:03.045+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_api_virtualenv' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py +[2025-01-29T18:09:03.063+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.063+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:03.073+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.073+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_api_virtualenv to None, run_after=None +[2025-01-29T18:09:03.090+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_api_virtualenv.py took 0.063 seconds diff --git a/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_templates.py.log b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_templates.py.log new file mode 100644 index 0000000000..e8c3fd97c7 --- /dev/null +++ b/airflow-project/logs/scheduler/2025-01-29/native_dags/example_dags/tutorial_taskflow_templates.py.log @@ -0,0 +1,113 @@ +[2025-01-29T18:01:55.284+0000] {processor.py:186} INFO - Started process (PID=75) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:01:55.284+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:01:55.287+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.287+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:01:55.304+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:01:55.433+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.432+0000] {override.py:1911} INFO - Created Permission View: can edit on DAG:tutorial_taskflow_templates +[2025-01-29T18:01:55.445+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.445+0000] {override.py:1911} INFO - Created Permission View: can read on DAG:tutorial_taskflow_templates +[2025-01-29T18:01:55.452+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.452+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG:tutorial_taskflow_templates +[2025-01-29T18:01:55.459+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.459+0000] {override.py:1911} INFO - Created Permission View: can read on DAG Run:tutorial_taskflow_templates +[2025-01-29T18:01:55.466+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.465+0000] {override.py:1911} INFO - Created Permission View: menu access on DAG Run:tutorial_taskflow_templates +[2025-01-29T18:01:55.474+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.473+0000] {override.py:1911} INFO - Created Permission View: can delete on DAG Run:tutorial_taskflow_templates +[2025-01-29T18:01:55.481+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.480+0000] {override.py:1911} INFO - Created Permission View: can create on DAG Run:tutorial_taskflow_templates +[2025-01-29T18:01:55.481+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.481+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:01:55.495+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.494+0000] {dag.py:3262} INFO - Creating ORM DAG for tutorial_taskflow_templates +[2025-01-29T18:01:55.505+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:01:55.505+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:01:55.522+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.244 seconds +[2025-01-29T18:02:25.630+0000] {processor.py:186} INFO - Started process (PID=137) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:02:25.632+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:02:25.634+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.634+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:02:25.650+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:02:25.670+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.670+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:25.693+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:25.693+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:25.715+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.092 seconds +[2025-01-29T18:02:56.453+0000] {processor.py:186} INFO - Started process (PID=200) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:02:56.454+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:02:56.457+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.456+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:02:56.467+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:02:56.488+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.488+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:02:56.507+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:02:56.506+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:02:56.522+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.074 seconds +[2025-01-29T18:03:27.465+0000] {processor.py:186} INFO - Started process (PID=263) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:03:27.466+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:03:27.469+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.469+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:03:27.484+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:03:27.507+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.507+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:27.530+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:27.530+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:27.553+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.093 seconds +[2025-01-29T18:03:57.866+0000] {processor.py:186} INFO - Started process (PID=326) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:03:57.867+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:03:57.869+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.869+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:03:57.879+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:03:57.899+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.898+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:03:57.918+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:03:57.918+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:03:57.935+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.073 seconds +[2025-01-29T18:04:28.048+0000] {processor.py:186} INFO - Started process (PID=389) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:04:28.049+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:04:28.052+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:28.052+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:04:28.063+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:04:28.083+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:28.083+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:28.104+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:28.104+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:28.120+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.078 seconds +[2025-01-29T18:04:58.975+0000] {processor.py:186} INFO - Started process (PID=452) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:04:58.976+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:04:58.978+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:58.978+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:04:58.990+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:04:59.010+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:59.009+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:04:59.030+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:04:59.029+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:04:59.045+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.075 seconds +[2025-01-29T18:05:29.851+0000] {processor.py:186} INFO - Started process (PID=515) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:05:29.852+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:05:29.855+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.855+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:05:29.866+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:05:29.885+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.885+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:05:29.907+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:05:29.906+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:05:29.923+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.078 seconds +[2025-01-29T18:06:00.085+0000] {processor.py:186} INFO - Started process (PID=578) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:06:00.086+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:06:00.088+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:00.088+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:06:00.099+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:06:00.118+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:00.118+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:00.135+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:00.135+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:00.152+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.073 seconds +[2025-01-29T18:06:30.829+0000] {processor.py:186} INFO - Started process (PID=641) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:06:30.830+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:06:30.833+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.832+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:06:30.845+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:06:30.862+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.862+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:06:30.880+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:06:30.879+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:06:30.897+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.072 seconds +[2025-01-29T18:07:01.595+0000] {processor.py:186} INFO - Started process (PID=705) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:07:01.597+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:07:01.600+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.599+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:07:01.615+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:07:01.643+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.643+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:01.665+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:01.665+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:01.683+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.093 seconds +[2025-01-29T18:07:31.725+0000] {processor.py:186} INFO - Started process (PID=769) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:07:31.726+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:07:31.727+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.727+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:07:31.737+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:07:31.756+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.755+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:07:31.773+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:07:31.772+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:07:31.788+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.068 seconds +[2025-01-29T18:08:01.862+0000] {processor.py:186} INFO - Started process (PID=833) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:08:01.864+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:08:01.866+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.865+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:08:01.875+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:08:01.893+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.893+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:01.911+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:01.911+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:01.932+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.074 seconds +[2025-01-29T18:08:32.371+0000] {processor.py:186} INFO - Started process (PID=897) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:08:32.373+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:08:32.375+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.375+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:08:32.386+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:08:32.404+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.404+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:08:32.423+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:08:32.423+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:08:32.439+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.073 seconds +[2025-01-29T18:09:03.390+0000] {processor.py:186} INFO - Started process (PID=961) to work on /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:09:03.391+0000] {processor.py:914} INFO - Processing file /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py for tasks to queue +[2025-01-29T18:09:03.393+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.392+0000] {dagbag.py:588} INFO - Filling up the DagBag from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:09:03.402+0000] {processor.py:925} INFO - DAG(s) 'tutorial_taskflow_templates' retrieved from /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py +[2025-01-29T18:09:03.424+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.423+0000] {dag.py:3239} INFO - Sync 1 DAGs +[2025-01-29T18:09:03.442+0000] {logging_mixin.py:190} INFO - [2025-01-29T18:09:03.442+0000] {dag.py:4180} INFO - Setting next_dagrun for tutorial_taskflow_templates to 2025-01-28 00:00:00+00:00, run_after=2025-01-29 00:00:00+00:00 +[2025-01-29T18:09:03.458+0000] {processor.py:208} INFO - Processing /home/airflow/.local/lib/python3.12/site-packages/airflow/example_dags/tutorial_taskflow_templates.py took 0.073 seconds diff --git a/airflow-project/logs/scheduler/latest b/airflow-project/logs/scheduler/latest new file mode 120000 index 0000000000..afc7ccd67d --- /dev/null +++ b/airflow-project/logs/scheduler/latest @@ -0,0 +1 @@ +2025-01-29 \ No newline at end of file From 74abaf079f392f68deed84030eddd093857692a7 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 15:16:30 -0300 Subject: [PATCH 20/23] add: pycache files to git ignore --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ca3fe34895..28896b57de 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,8 @@ venvs/ get-pip.py # environment variables -.env \ No newline at end of file +.env + +__pycache__/ +*.pyc +*.pyo \ No newline at end of file From b67cab5c3dbc07bfe7f1df5ae93840fb195d9667 Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 15:38:09 -0300 Subject: [PATCH 21/23] add: airflow logs and scheduler files to git ignore --- .gitignore | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 28896b57de..bbfee49051 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,12 @@ get-pip.py __pycache__/ *.pyc -*.pyo \ No newline at end of file +*.pyo + +# Airflow logs +logs/ +airflow.log + +# Airflow scheduler and pid files +scheduler/ +*.pid \ No newline at end of file From 58687160c24ce5c987a04ea5ea8878c25afb78ba Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 17:22:27 -0300 Subject: [PATCH 22/23] add: README.md do projeto --- README.md | 95 ++++++++++++++++++++----------------------------------- 1 file changed, 34 insertions(+), 61 deletions(-) diff --git a/README.md b/README.md index cc9b6504bc..f1e853306a 100644 --- a/README.md +++ b/README.md @@ -1,84 +1,57 @@ # Indicium Tech Code Challenge -Code challenge for Software Developer with focus in data projects. +## Objetivo +O objetivo do projeto é elaborar um ETL usando as ferramentas postgresql, meltano e airflow, conforme a arquitetura mostrada abaixo: -## Context - -At Indicium we have many projects where we develop the whole data pipeline for our client, from extracting data from many data sources to loading this data at its final destination, with this final destination varying from a data warehouse for a Business Intelligency tool to an api for integrating with third party systems. - -As a software developer with focus in data projects your mission is to plan, develop, deploy, and maintain a data pipeline. - - -## The Challenge - -We are going to provide 2 data sources, a PostgreSQL database and a CSV file. +![image](docs/diagrama_embulk_meltano.jpg) -The CSV file represents details of orders from an ecommerce system. +Na primeira etapa, os dados são extraídos de duas fontes diferentes, um arquivo csv chamado +'order_details' contendo detalhes sobre pedidos de um sistema de e-commerce, e um banco de dados Postgresql, contendo todas as demais tabelas sobre informações desse mesmo e-commerce armazenados no banco Northwind. Esses dados são armazenados no disco local no formato csv, já que se está lidando com uma pequena quantidade de dados e formato simples, o que facilita trabalhar com esse formato na segunda etapa. -The database provided is a sample database provided by microsoft for education purposes called northwind, the only difference is that the **order_detail** table does not exists in this database you are beeing provided with. This order_details table is represented by the CSV file we provide. +Na segunda etapa, esses dados no formato csv armazenados localmente devem ser extraídos novamente e carregados agora em um banco Postresql final, no qual será rodada uma query gerando uma tabela com todos os pedidos e seus detalhes, também no formato csv, por estar trabalhando com uma pequena quantidade de dados e ser um formato que facilita a visualização de tabelas. -Schema of the original Northwind Database: +A imagem abaixo mostra o schema original do banco Northwind: ![image](https://user-images.githubusercontent.com/49417424/105997621-9666b980-608a-11eb-86fd-db6b44ece02a.png) -Your challenge is to build a pipeline that extracts the data everyday from both sources and write the data first to local disk, and second to a PostgreSQL database. For this challenge, the CSV file and the database will be static, but in any real world project, both data sources would be changing constantly. - -Its important that all writing steps (writing data from inputs to local filesystem and writing data from local filesystem to PostgreSQL database) are isolated from each other, you shoud be able to run any step without executing the others. -For the first step, where you write data to local disk, you should write one file for each table. This pipeline will run everyday, so there should be a separation in the file paths you will create for each source(CSV or Postgres), table and execution day combination, e.g.: +## Pré-requisitos -``` -/data/postgres/{table}/2024-01-01/file.format -/data/postgres/{table}/2024-01-02/file.format -/data/csv/2024-01-02/file.format -``` +Para conseguir executar o projeto é necessário ter os seguintes pré-requisitos: +- Ter o docker já instalado para criar os container (https://docs.docker.com/get-started/get-docker/) +- Criar um virtual environment para instalar o meltano e seus pacotes -You are free to chose the naming and the format of the file you are going to save. -At step 2, you should load the data from the local filesystem, which you have created, to the final database. +# Estrutura do projeto -The final goal is to be able to run a query that shows the orders and its details. The Orders are placed in a table called **orders** at the postgres Northwind database. The details are placed at the csv file provided, and each line has an **order_id** field pointing the **orders** table. +O projeto é composto das estruturas de pastas a seguir: -## Solution Diagram - -As Indicium uses some standard tools, the challenge was designed to be done using some of these tools. - -The following tools should be used to solve this challenge. - -Scheduler: -- [Airflow](https://airflow.apache.org/docs/apache-airflow/stable/installation/index.html) - -Data Loader: -- [Embulk](https://www.embulk.org) (Java Based) -**OR** -- [Meltano](https://docs.meltano.com/?_gl=1*1nu14zf*_gcl_au*MTg2OTE2NDQ4Mi4xNzA2MDM5OTAz) (Python Based) - -Database: -- [PostgreSQL](https://www.postgresql.org/docs/15/index.html) - -The solution should be based on the diagrams below: -![image](docs/diagrama_embulk_meltano.jpg) +- airflow-project: diretório do airflow, contendo as pastas dags, onde está a DAG 'meltano- dag' para executar o ETL com meltano, config, plugins e logs, além do arquivo docker-compose.yml, no qual consta a imagem do airflow e suas configurações +- data: +- dbdata: metadados do banco Postgresql de origem +- docs: onde é armazenado a imagem da arquitetura do projeto +- meltano-project: diretório do meltano, contendo os plugins dos extractors e loaders, os dados extraídos pelo ETL na pasta 'output', e o arquivo 'meltano.yml' com as configurações dos extractors e dos loaders. +- output-dbdata: metadados do banco Postgresql de destino +- git ignore: arquivo +- docker-compose.yml: arquivo contendo a imagem e configuração do banco Postgresql de origem e de destino +- README.md: documentação sobre o projeto -### Requirements +## Instalação dos bancos de dados Postgresql origem e destino +Nesse projeto, usa-se dois bancos de dados Postgresql, um para a origem dos dados, que contém o banco northwind, e um para o destino dos dados, que vai armazenar. +Dentro da pasta 'code-challenge' executar o seguinte comando: +"docker-compose up -d" -- You **must** use the tools described above to complete the challenge. -- All tasks should be idempotent, you should be able to run the pipeline everyday and, in this case where the data is static, the output shold be the same. -- Step 2 depends on both tasks of step 1, so you should not be able to run step 2 for a day if the tasks from step 1 did not succeed. -- You should extract all the tables from the source database, it does not matter that you will not use most of them for the final step. -- You should be able to tell where the pipeline failed clearly, so you know from which step you should rerun the pipeline. -- You have to provide clear instructions on how to run the whole pipeline. The easier the better. -- You must provide evidence that the process has been completed successfully, i.e. you must provide a csv or json with the result of the query described above. -- You should assume that it will run for different days, everyday. -- Your pipeline should be prepared to run for past days, meaning you should be able to pass an argument to the pipeline with a day from the past, and it should reprocess the data for that day. Since the data for this challenge is static, the only difference for each day of execution will be the output paths. -### Things that Matters +## Instalando o airflow usando o docker-compose +Dentro da pasta 'airflow-project' executar os seguintes comandos: +"docker-compose up airflow-init" +"docker compose up -d" -- Clean and organized code. -- Good decisions at which step (which database, which file format..) and good arguments to back those decisions up. -- The aim of the challenge is not only to assess technical knowledge in the area, but also the ability to search for information and use it to solve problems with tools that are not necessarily known to the candidate. -- Point and click tools are not allowed. +# Execução do pipeline -Thank you for participating! \ No newline at end of file +Para executar o pipeline, ativar o ambiente virtual criado para o meltano e executar dentro da pasta 'meltano-project' os comandos abaixo: +"meltano etl tap-csv target-postgres" +"meltano etl tap-posgres target-postgres" \ No newline at end of file From bae89b515c963944923224a1d64a29f6b5234ecc Mon Sep 17 00:00:00 2001 From: priscaruso Date: Wed, 29 Jan 2025 17:23:53 -0300 Subject: [PATCH 23/23] fix: git ignore logs --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bbfee49051..0ca622c95d 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,7 @@ __pycache__/ *.pyo # Airflow logs -logs/ +logs/* airflow.log # Airflow scheduler and pid files