From ae7e0a658e2460c72bd9184bbd2cef375fbf3741 Mon Sep 17 00:00:00 2001 From: alanchn31 Date: Mon, 21 Dec 2020 16:03:32 +0800 Subject: [PATCH] Dockerize with airflow and livy preinstalledi Added necessary Docker files, configuration to set up environment on Docker with Livy, Airflow, Spark --- .gitignore | 7 +- Makefile | 3 + airflow/config/airflow.cfg | 342 ++ airflow/dags/dummy_dag.py | 6 + .../dag_processor_manager.log | 3836 +++++++++++++++++ .../scheduler/2020-12-20/dummy_dag.py.log | 857 ++++ docker-compose.yml | 273 ++ docker/airflow/.env | 4 + docker/airflow/Dockerfile | 92 + docker/airflow/conf/hadoop/core-site.xml | 32 + docker/airflow/conf/hadoop/hadoop-env.sh | 3 + docker/airflow/conf/hadoop/hdfs-site.xml | 24 + docker/airflow/conf/hadoop/mapred-site.xml | 31 + docker/airflow/conf/hadoop/workers | 2 + docker/airflow/conf/hadoop/yarn-site.xml | 80 + docker/airflow/conf/spark/spark-defaults.conf | 26 + docker/airflow/entrypoint.sh | 94 + docker/hive/init.sql | 1 + docker/master/Dockerfile | 21 + docker/master/entrypoint.sh | 23 + docker/master/master.sh | 16 + requirements.txt | Bin 752 -> 718 bytes 22 files changed, 5771 insertions(+), 2 deletions(-) create mode 100644 airflow/config/airflow.cfg create mode 100644 airflow/dags/dummy_dag.py create mode 100644 airflow/logs/dag_processor_manager/dag_processor_manager.log create mode 100644 airflow/logs/scheduler/2020-12-20/dummy_dag.py.log create mode 100644 docker-compose.yml create mode 100644 docker/airflow/.env create mode 100644 docker/airflow/Dockerfile create mode 100644 docker/airflow/conf/hadoop/core-site.xml create mode 100644 docker/airflow/conf/hadoop/hadoop-env.sh create mode 100644 docker/airflow/conf/hadoop/hdfs-site.xml create mode 100644 docker/airflow/conf/hadoop/mapred-site.xml create mode 100644 docker/airflow/conf/hadoop/workers create mode 100644 docker/airflow/conf/hadoop/yarn-site.xml create mode 100644 docker/airflow/conf/spark/spark-defaults.conf create mode 100644 docker/airflow/entrypoint.sh create mode 100644 docker/hive/init.sql create mode 100644 docker/master/Dockerfile create mode 100644 docker/master/entrypoint.sh create mode 100644 docker/master/master.sh diff --git a/.gitignore b/.gitignore index 99f086f..d19deee 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,8 @@ __pycache__/ .pytest_cache/ .coverage app/data/processed -models/ -venv/ \ No newline at end of file +models/ +venv/ +init.sql/ +livy_batches/ +zeppelin_notebooks/ \ No newline at end of file diff --git a/Makefile b/Makefile index 8b52a4d..c7d0c79 100644 --- a/Makefile +++ b/Makefile @@ -2,4 +2,7 @@ setup: virtualenv venv source venv/bin/activate # In windows, use venv\Scripts\activate pip install -r requirements.txt + +setup_local_docker: + docker-compose -f docker-compose.yml up \ No newline at end of file diff --git a/airflow/config/airflow.cfg b/airflow/config/airflow.cfg new file mode 100644 index 0000000..37e97af --- /dev/null +++ b/airflow/config/airflow.cfg @@ -0,0 +1,342 @@ +[core] +# The home folder for airflow, default is ~/airflow +airflow_home = /usr/local/airflow + +# The folder where your airflow pipelines live, most likely a +# subfolder in a code repository +# This path must be absolute +dags_folder = /usr/local/airflow/dags + +# The folder where airflow should store its log files +# This path must be absolute +base_log_folder = /usr/local/airflow/logs + +# Airflow can store logs remotely in AWS S3 or Google Cloud Storage. Users +# must supply a remote location URL (starting with either 's3://...' or +# 'gs://...') and an Airflow connection id that provides access to the storage +# location. +remote_base_log_folder = +remote_log_conn_id = +# Use server-side encryption for logs stored in S3 +encrypt_s3_logs = False +# DEPRECATED option for remote log storage, use remote_base_log_folder instead! +s3_log_folder = + +# The executor class that airflow should use. Choices include +# SequentialExecutor, LocalExecutor, CeleryExecutor +executor = CeleryExecutor + +# The SqlAlchemy connection string to the metadata database. +# SqlAlchemy supports many different database engine, more information +# their website +sql_alchemy_conn = postgresql+psycopg2://airflow:airflow@postgres/airflow + +# The SqlAlchemy pool size is the maximum number of database connections +# in the pool. +sql_alchemy_pool_size = 5 + +# The SqlAlchemy pool recycle is the number of seconds a connection +# can be idle in the pool before it is invalidated. This config does +# not apply to sqlite. +sql_alchemy_pool_recycle = 3600 + +# The amount of parallelism as a setting to the executor. This defines +# the max number of task instances that should run simultaneously +# on this airflow installation +parallelism = 32 + +# The number of task instances allowed to run concurrently by the scheduler +dag_concurrency = 16 + +# Are DAGs paused by default at creation +dags_are_paused_at_creation = True + +# When not using pools, tasks are run in the "default pool", +# whose size is guided by this config element +non_pooled_task_slot_count = 128 + +# The maximum number of active DAG runs per DAG +max_active_runs_per_dag = 16 + +# Whether to load the examples that ship with Airflow. It's good to +# get started, but you probably want to set this to False in a production +# environment +load_examples = False + +# Where your Airflow plugins are stored +plugins_folder = /usr/local/airflow/plugins + +# Secret key to save connection passwords in the db +fernet_key = $FERNET_KEY + +# Whether to disable pickling dags +donot_pickle = False + +# How long before timing out a python file import while filling the DagBag +dagbag_import_timeout = 100 + +# The class to use for running task instances in a subprocess +task_runner = BashTaskRunner + +# If set, tasks without a `run_as_user` argument will be run with this user +# Can be used to de-elevate a sudo user running Airflow when executing tasks +default_impersonation = + +# What security module to use (for example kerberos): +security = + +# Turn unit test mode on (overwrites many configuration options with test +# values at runtime) +unit_test_mode = False + +[cli] +# In what way should the cli access the API. The LocalClient will use the +# database directly, while the json_client will use the api running on the +# webserver +api_client = airflow.api.client.local_client +endpoint_url = http://localhost:8080 + +[api] +# How to authenticate users of the API +auth_backend = airflow.api.auth.backend.default + +[operators] +# The default owner assigned to each new operator, unless +# provided explicitly or passed via `default_args` +default_owner = Airflow +default_cpus = 1 +default_ram = 512 +default_disk = 512 +default_gpus = 0 + +[webserver] +# The base url of your website as airflow cannot guess what domain or +# cname you are using. This is used in automated emails that +# airflow sends to point links to the right web server +base_url = http://localhost:8080 + +# The ip specified when starting the web server +web_server_host = 0.0.0.0 + +# The port on which to run the web server +web_server_port = 8080 + +# Paths to the SSL certificate and key for the web server. When both are +# provided SSL will be enabled. This does not change the web server port. +web_server_ssl_cert = +web_server_ssl_key = + +# Number of seconds the gunicorn webserver waits before timing out on a worker +web_server_worker_timeout = 1000 + +# Number of workers to refresh at a time. When set to 0, worker refresh is +# disabled. When nonzero, airflow periodically refreshes webserver workers by +# bringing up new ones and killing old ones. +worker_refresh_batch_size = 1 + +# Number of seconds to wait before refreshing a batch of workers. +worker_refresh_interval = 30 + +# Secret key used to run your flask app +secret_key = temporary_key + +# Number of workers to run the Gunicorn web server +workers = 2 + +# The worker class gunicorn should use. Choices include +# sync (default), eventlet, gevent +worker_class = sync + +# Log files for the gunicorn webserver. '-' means log to stderr. +access_logfile = - +error_logfile = - + +# Expose the configuration file in the web server +expose_config = True + +# Set to true to turn on authentication: +# http://pythonhosted.org/airflow/security.html#web-authentication +authenticate = False + +# Filter the list of dags by owner name (requires authentication to be enabled) +filter_by_owner = False + +# Filtering mode. Choices include user (default) and ldapgroup. +# Ldap group filtering requires using the ldap backend +# +# Note that the ldap server needs the "memberOf" overlay to be set up +# in order to user the ldapgroup mode. +owner_mode = user + +# Default DAG orientation. Valid values are: +# LR (Left->Right), TB (Top->Bottom), RL (Right->Left), BT (Bottom->Top) +dag_orientation = LR + +# Puts the webserver in demonstration mode; blurs the names of Operators for +# privacy. +demo_mode = False + +# The amount of time (in secs) webserver will wait for initial handshake +# while fetching logs from other worker machine +log_fetch_timeout_sec = 5 + +# By default, the webserver shows paused DAGs. Flip this to hide paused +# DAGs by default +hide_paused_dags_by_default = False + +[email] +email_backend = airflow.utils.email.send_email_smtp + +[smtp] +# If you want airflow to send emails on retries, failure, and you want to use +# the airflow.utils.email.send_email_smtp function, you have to configure an +# smtp server here +smtp_host = localhost +smtp_starttls = True +smtp_ssl = False +# Uncomment and set the user/pass settings if you want to use SMTP AUTH +# smtp_user = airflow +# smtp_password = airflow +smtp_port = 25 +smtp_mail_from = airflow@airflow.com + +[celery] +# This section only applies if you are using the CeleryExecutor in +# [core] section above + +# The app name that will be used by celery +celery_app_name = airflow.executors.celery_executor + +# The concurrency that will be used when starting workers with the +# "airflow worker" command. This defines the number of task instances that +# a worker will take, so size up your workers based on the resources on +# your worker box and the nature of your tasks +celeryd_concurrency = 16 + +# When you start an airflow worker, airflow starts a tiny web server +# subprocess to serve the workers local log files to the airflow main +# web server, who then builds pages and sends them to users. This defines +# the port on which the logs are served. It needs to be unused, and open +# visible from the main web server to connect into the workers. +worker_log_server_port = 8793 + +# The Celery broker URL. Celery supports RabbitMQ, Redis and experimentally +# a sqlalchemy database. Refer to the Celery documentation for more +# information. +broker_url = redis://redis:6379/1 + +# Another key Celery setting +celery_result_backend = db+postgresql://airflow:airflow@postgres/airflow + +# Celery Flower is a sweet UI for Celery. Airflow has a shortcut to start +# it `airflow flower`. This defines the IP that Celery Flower runs on +flower_host = 0.0.0.0 + +# This defines the port that Celery Flower runs on +flower_port = 5555 + +# Default queue that tasks get assigned to and that worker listen on. +default_queue = default + +[scheduler] +# Task instances listen for external kill signal (when you clear tasks +# from the CLI or the UI), this defines the frequency at which they should +# listen (in seconds). +job_heartbeat_sec = 5 + +# The scheduler constantly tries to trigger new tasks (look at the +# scheduler section in the docs for more information). This defines +# how often the scheduler should run (in seconds). +scheduler_heartbeat_sec = 5 + +# after how much time should the scheduler terminate in seconds +# -1 indicates to run continuously (see also num_runs) +run_duration = -1 + +# after how much time a new DAGs should be picked up from the filesystem +min_file_process_interval = 0 + +dag_dir_list_interval = 300 + +# How often should stats be printed to the logs +print_stats_interval = 30 + +child_process_log_directory = /usr/local/airflow/logs/scheduler + +# Local task jobs periodically heartbeat to the DB. If the job has +# not heartbeat in this many seconds, the scheduler will mark the +# associated task instance as failed and will re-schedule the task. +scheduler_zombie_task_threshold = 300 + +# Turn off scheduler catchup by setting this to False. +# Default behavior is unchanged and +# Command Line Backfills still work, but the scheduler +# will not do scheduler catchup if this is False, +# however it can be set on a per DAG basis in the +# DAG definition (catchup) +catchup_by_default = True + +# Statsd (https://github.com/etsy/statsd) integration settings +statsd_on = False +statsd_host = localhost +statsd_port = 8125 +statsd_prefix = airflow + +# The scheduler can run multiple threads in parallel to schedule dags. +# This defines how many threads will run. However airflow will never +# use more threads than the amount of cpu cores available. +max_threads = 2 + +authenticate = False + +[mesos] +# Mesos master address which MesosExecutor will connect to. +master = localhost:5050 + +# The framework name which Airflow scheduler will register itself as on mesos +framework_name = Airflow + +# Number of cpu cores required for running one task instance using +# 'airflow run --local -p ' +# command on a mesos slave +task_cpu = 1 + +# Memory in MB required for running one task instance using +# 'airflow run --local -p ' +# command on a mesos slave +task_memory = 256 + +# Enable framework checkpointing for mesos +# See http://mesos.apache.org/documentation/latest/slave-recovery/ +checkpoint = False + +# Failover timeout in milliseconds. +# When checkpointing is enabled and this option is set, Mesos waits +# until the configured timeout for +# the MesosExecutor framework to re-register after a failover. Mesos +# shuts down running tasks if the +# MesosExecutor framework fails to re-register within this timeframe. +# failover_timeout = 604800 + +# Enable framework authentication for mesos +# See http://mesos.apache.org/documentation/latest/configuration/ +authenticate = False + +# Mesos credentials, if authentication is enabled +# default_principal = admin +# default_secret = admin + +[kerberos] +ccache = /tmp/airflow_krb5_ccache +# gets augmented with fqdn +principal = airflow +reinit_frequency = 3600 +kinit_path = kinit +keytab = airflow.keytab + +[github_enterprise] +api_rev = v3 + +[admin] +# UI to hide sensitive variable fields when set to True +hide_sensitive_variable_fields = True \ No newline at end of file diff --git a/airflow/dags/dummy_dag.py b/airflow/dags/dummy_dag.py new file mode 100644 index 0000000..238bdd3 --- /dev/null +++ b/airflow/dags/dummy_dag.py @@ -0,0 +1,6 @@ +#dummy_dag.py +from airflow import DAG +from airflow.operators.dummy_operator import DummyOperator +from datetime import datetime +with DAG('example_dag', start_date=datetime(2016, 1, 1)) as dag: + op = DummyOperator(task_id='op') \ No newline at end of file diff --git a/airflow/logs/dag_processor_manager/dag_processor_manager.log b/airflow/logs/dag_processor_manager/dag_processor_manager.log new file mode 100644 index 0000000..47ceb58 --- /dev/null +++ b/airflow/logs/dag_processor_manager/dag_processor_manager.log @@ -0,0 +1,3836 @@ +[2020-12-19 14:32:30,150] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-19 14:32:30,433] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-19 14:32:30,434] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-19 14:32:33,702] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:32:33,754] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:27:33.754302+00:00 +[2020-12-19 14:33:28,202] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:33:29,431] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:28:29.417019+00:00 +[2020-12-19 14:33:54,140] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:33:54,189] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:28:54.189070+00:00 +[2020-12-19 14:34:05,487] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:34:07,348] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:29:07.348621+00:00 +[2020-12-19 14:34:19,123] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:34:19,193] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:29:19.160584+00:00 +[2020-12-19 14:34:31,169] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:34:31,391] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:29:31.369216+00:00 +[2020-12-19 14:34:56,969] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:34:59,016] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:29:59.015473+00:00 +[2020-12-19 14:35:31,257] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:35:32,553] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:30:32.506742+00:00 +[2020-12-19 14:36:15,264] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:36:17,752] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:31:17.656688+00:00 +[2020-12-19 14:36:41,004] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:36:41,408] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:31:41.385480+00:00 +[2020-12-19 14:36:54,177] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:36:54,320] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:31:54.254922+00:00 +[2020-12-19 14:37:06,377] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:37:06,852] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:32:06.852720+00:00 +[2020-12-19 14:37:18,005] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:37:18,074] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:32:18.074373+00:00 +[2020-12-19 14:37:29,988] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 14:37:31,339] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 14:37:50,419] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:37:51,492] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:32:51.491457+00:00 +[2020-12-19 14:38:15,091] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:38:15,342] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:33:15.342628+00:00 +[2020-12-19 14:43:56,278] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-19 14:43:56,384] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-19 14:43:56,403] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-19 14:43:56,493] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:43:56,503] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:38:56.503661+00:00 +[2020-12-19 14:44:07,402] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:44:07,404] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:39:07.404731+00:00 +[2020-12-19 14:44:17,677] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:44:17,692] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:39:17.692128+00:00 +[2020-12-19 14:44:28,002] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:44:28,061] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:39:28.061656+00:00 +[2020-12-19 14:44:40,193] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:44:40,215] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:39:40.215645+00:00 +[2020-12-19 14:44:50,696] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:44:50,724] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:39:50.724492+00:00 +[2020-12-19 14:45:01,573] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:45:01,595] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:40:01.584799+00:00 +[2020-12-19 14:45:12,809] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:45:12,828] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:40:12.828729+00:00 +[2020-12-19 14:45:23,962] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:45:24,088] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:40:24.088412+00:00 +[2020-12-19 14:45:35,452] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:45:35,465] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:40:35.465553+00:00 +[2020-12-19 14:45:48,073] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:45:48,154] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:40:48.154646+00:00 +[2020-12-19 14:46:00,697] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:46:00,890] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:41:00.890315+00:00 +[2020-12-19 14:46:12,402] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:46:12,666] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:41:12.563166+00:00 +[2020-12-19 14:46:25,151] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:46:25,191] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:41:25.191079+00:00 +[2020-12-19 14:46:38,751] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:46:39,449] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:41:39.414535+00:00 +[2020-12-19 14:46:52,925] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:46:53,271] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:41:53.268741+00:00 +[2020-12-19 14:47:09,134] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:47:09,231] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:42:09.231504+00:00 +[2020-12-19 14:47:21,486] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:47:21,563] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:42:21.563622+00:00 +[2020-12-19 14:47:33,137] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:47:33,474] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:42:33.474200+00:00 +[2020-12-19 14:47:44,931] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:47:46,491] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:42:46.362203+00:00 +[2020-12-19 14:48:11,143] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:48:12,212] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:43:12.166654+00:00 +[2020-12-19 14:48:52,461] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:48:54,487] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:43:54.483052+00:00 +[2020-12-19 14:49:16,819] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 14:49:18,289] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 14:49:25,465] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:49:25,679] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:44:25.609371+00:00 +[2020-12-19 14:49:41,399] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:49:41,975] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:44:41.975391+00:00 +[2020-12-19 14:49:54,487] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:49:54,801] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:44:54.615984+00:00 +[2020-12-19 14:50:08,743] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:50:09,887] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:45:09.778369+00:00 +[2020-12-19 14:50:36,002] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:50:37,366] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:45:37.290340+00:00 +[2020-12-19 14:51:05,502] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:51:06,513] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:46:06.513811+00:00 +[2020-12-19 14:51:39,771] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:51:40,787] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:46:40.780705+00:00 +[2020-12-19 14:51:58,948] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:52:00,164] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:47:00.129050+00:00 +[2020-12-19 14:52:27,979] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:52:31,169] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:47:31.053233+00:00 +[2020-12-19 14:52:48,457] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:52:50,193] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:47:50.182910+00:00 +[2020-12-19 14:53:23,621] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:53:25,375] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:48:25.343674+00:00 +[2020-12-19 14:53:44,551] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:53:49,194] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:48:49.194527+00:00 +[2020-12-19 14:54:02,224] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:54:02,243] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:49:02.243722+00:00 +[2020-12-19 14:54:14,170] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:54:14,186] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:49:14.185994+00:00 +[2020-12-19 14:54:19,075] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 14:54:22,273] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 14:54:29,492] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:54:29,655] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:49:29.654945+00:00 +[2020-12-19 14:54:42,053] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:54:42,392] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:49:42.391933+00:00 +[2020-12-19 14:54:54,105] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:54:56,395] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:49:56.395442+00:00 +[2020-12-19 14:55:19,041] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:55:21,729] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:50:21.665481+00:00 +[2020-12-19 14:56:12,199] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:56:13,076] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:51:13.058236+00:00 +[2020-12-19 14:56:28,558] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:56:29,677] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:51:29.673307+00:00 +[2020-12-19 14:56:45,285] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:56:45,507] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:51:45.507143+00:00 +[2020-12-19 14:57:00,916] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:57:01,119] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:52:01.101742+00:00 +[2020-12-19 14:57:15,263] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:57:21,801] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:52:21.740017+00:00 +[2020-12-19 14:57:48,806] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:57:50,463] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:52:50.445357+00:00 +[2020-12-19 14:58:08,838] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:58:09,057] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:53:09.057713+00:00 +[2020-12-19 14:58:21,225] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:58:21,376] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:53:21.361477+00:00 +[2020-12-19 14:58:34,448] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:58:34,807] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:53:34.807161+00:00 +[2020-12-19 14:58:48,966] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:58:50,425] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:53:50.064112+00:00 +[2020-12-19 14:59:28,146] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 14:59:30,770] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 14:59:36,221] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:59:36,321] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:54:36.276501+00:00 +[2020-12-19 14:59:49,863] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 14:59:50,946] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:54:50.932343+00:00 +[2020-12-19 15:00:08,634] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:00:09,835] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:55:09.794595+00:00 +[2020-12-19 15:00:36,282] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:00:40,439] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:55:40.339090+00:00 +[2020-12-19 15:00:59,385] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:00:59,456] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:55:59.456633+00:00 +[2020-12-19 15:01:11,692] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:01:12,004] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:56:12.003997+00:00 +[2020-12-19 15:01:33,428] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:01:39,174] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:56:39.122754+00:00 +[2020-12-19 15:02:24,382] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:02:28,193] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:57:28.156973+00:00 +[2020-12-19 15:02:44,131] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:02:44,151] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:57:44.151850+00:00 +[2020-12-19 15:02:56,468] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:02:56,735] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:57:56.726107+00:00 +[2020-12-19 15:03:11,432] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:03:13,984] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:58:13.937736+00:00 +[2020-12-19 15:03:49,240] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:03:49,932] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:58:49.930926+00:00 +[2020-12-19 15:04:02,888] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:04:03,471] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:59:03.356392+00:00 +[2020-12-19 15:04:21,800] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:04:22,237] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:59:22.237404+00:00 +[2020-12-19 15:04:28,489] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 15:04:29,191] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 15:04:37,779] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:04:37,836] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:59:37.836721+00:00 +[2020-12-19 15:04:48,896] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:04:49,387] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 14:59:49.387673+00:00 +[2020-12-19 15:05:06,954] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:05:10,245] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:00:10.193827+00:00 +[2020-12-19 15:05:30,512] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:05:32,552] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:00:32.450933+00:00 +[2020-12-19 15:06:09,847] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:06:10,965] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:01:10.908632+00:00 +[2020-12-19 15:06:33,755] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:06:35,186] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:01:35.134681+00:00 +[2020-12-19 15:06:56,527] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:06:56,712] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:01:56.712116+00:00 +[2020-12-19 15:07:08,766] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:07:08,944] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:02:08.944066+00:00 +[2020-12-19 15:07:20,196] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:07:20,216] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:02:20.215951+00:00 +[2020-12-19 15:07:31,859] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:07:32,024] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:02:32.023903+00:00 +[2020-12-19 15:07:44,256] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:07:45,874] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:02:45.874828+00:00 +[2020-12-19 15:08:12,398] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:08:13,267] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:03:13.267523+00:00 +[2020-12-19 15:08:27,779] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:08:28,107] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:03:28.021341+00:00 +[2020-12-19 15:08:39,619] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:08:39,620] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:03:39.620134+00:00 +[2020-12-19 15:08:50,242] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:08:50,250] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:03:50.250032+00:00 +[2020-12-19 15:09:01,725] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:09:01,739] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:04:01.739706+00:00 +[2020-12-19 15:09:12,228] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:09:12,256] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:04:12.256285+00:00 +[2020-12-19 15:09:25,283] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:09:25,543] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:04:25.498012+00:00 +[2020-12-19 15:09:28,904] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 15:09:30,012] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 15:09:38,194] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:09:38,363] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:04:38.250234+00:00 +[2020-12-19 15:09:49,478] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:09:49,796] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:04:49.796538+00:00 +[2020-12-19 15:10:03,978] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:10:04,047] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:05:04.047406+00:00 +[2020-12-19 15:10:14,974] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:10:15,113] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:05:15.113431+00:00 +[2020-12-19 15:10:28,895] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:10:29,256] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:05:29.256205+00:00 +[2020-12-19 15:10:43,707] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:10:43,709] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:05:43.708858+00:00 +[2020-12-19 15:10:54,823] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:10:54,827] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:05:54.827448+00:00 +[2020-12-19 15:11:07,670] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:11:07,693] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:06:07.693791+00:00 +[2020-12-19 15:11:19,105] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:11:19,268] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:06:19.268554+00:00 +[2020-12-19 15:11:31,732] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:11:31,894] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:06:31.866941+00:00 +[2020-12-19 15:11:44,489] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:11:44,561] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:06:44.561793+00:00 +[2020-12-19 15:11:56,995] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:11:57,019] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:06:57.018204+00:00 +[2020-12-19 15:12:12,772] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:12:15,516] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:07:15.489756+00:00 +[2020-12-19 15:12:30,933] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:12:31,965] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:07:31.965571+00:00 +[2020-12-19 15:12:44,662] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:12:44,775] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:07:44.775016+00:00 +[2020-12-19 15:12:57,618] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:12:57,757] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:07:57.757802+00:00 +[2020-12-19 15:13:10,028] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:13:10,110] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:08:10.105250+00:00 +[2020-12-19 15:13:22,998] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:13:22,999] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:08:22.999472+00:00 +[2020-12-19 15:13:33,168] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:13:33,172] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:08:33.172595+00:00 +[2020-12-19 15:13:44,328] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:13:44,563] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:08:44.563645+00:00 +[2020-12-19 15:14:00,971] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:14:01,023] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:09:01.023681+00:00 +[2020-12-19 15:14:18,086] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:14:18,088] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:09:18.088472+00:00 +[2020-12-19 15:14:28,767] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:14:29,124] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:09:29.124662+00:00 +[2020-12-19 15:14:34,612] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 15:14:36,173] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 15:14:44,504] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:14:44,845] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:09:44.845388+00:00 +[2020-12-19 15:14:57,486] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:14:57,553] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:09:57.553016+00:00 +[2020-12-19 15:15:09,649] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:15:09,702] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:10:09.702525+00:00 +[2020-12-19 15:15:20,507] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:15:20,510] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:10:20.510093+00:00 +[2020-12-19 15:15:31,475] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:15:31,576] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:10:31.566772+00:00 +[2020-12-19 15:15:44,292] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:15:44,293] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:10:44.293400+00:00 +[2020-12-19 15:15:56,143] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:15:56,373] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:10:56.373298+00:00 +[2020-12-19 15:16:07,926] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:16:07,937] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:11:07.937115+00:00 +[2020-12-19 15:16:19,091] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:16:20,648] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:11:20.608243+00:00 +[2020-12-19 15:16:48,741] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:16:49,338] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:11:49.337867+00:00 +[2020-12-19 15:17:05,917] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:17:06,775] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:12:06.775547+00:00 +[2020-12-19 15:17:19,043] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:17:19,583] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:12:19.582850+00:00 +[2020-12-19 15:17:35,089] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:17:35,122] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:12:35.111924+00:00 +[2020-12-19 15:17:47,038] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:17:47,072] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:12:47.072291+00:00 +[2020-12-19 15:17:57,711] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:17:57,742] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:12:57.741268+00:00 +[2020-12-19 15:18:09,205] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:18:09,242] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:13:09.224212+00:00 +[2020-12-19 15:18:20,651] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:18:21,217] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:13:21.169967+00:00 +[2020-12-19 15:18:41,140] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:18:45,271] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:13:45.203578+00:00 +[2020-12-19 15:19:32,036] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:19:32,594] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:14:32.450324+00:00 +[2020-12-19 15:19:36,313] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 15:19:36,730] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 15:19:46,420] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:19:46,453] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:14:46.453133+00:00 +[2020-12-19 15:19:56,675] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:19:56,700] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:14:56.700443+00:00 +[2020-12-19 15:20:07,628] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:20:08,111] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:15:08.092045+00:00 +[2020-12-19 15:20:24,040] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:20:31,935] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:15:31.920330+00:00 +[2020-12-19 15:20:44,116] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:20:44,117] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:15:44.117363+00:00 +[2020-12-19 15:20:54,166] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:20:54,167] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:15:54.167831+00:00 +[2020-12-19 15:21:04,218] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:21:04,219] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:16:04.219092+00:00 +[2020-12-19 15:21:15,352] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:21:15,368] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:16:15.367710+00:00 +[2020-12-19 15:21:26,574] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:21:27,027] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:16:27.026927+00:00 +[2020-12-19 15:21:39,021] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:21:39,030] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:16:39.030698+00:00 +[2020-12-19 15:25:12,695] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-19 15:25:12,700] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-19 15:25:12,701] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-19 15:25:12,715] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:25:12,728] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:20:12.728643+00:00 +[2020-12-19 15:25:23,116] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:25:23,122] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:20:23.122231+00:00 +[2020-12-19 15:25:33,253] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:25:33,259] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:20:33.259241+00:00 +[2020-12-19 15:25:43,600] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:25:43,622] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:20:43.621814+00:00 +[2020-12-19 15:25:54,295] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:25:54,322] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:20:54.322291+00:00 +[2020-12-19 15:26:05,251] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:26:05,269] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:21:05.268965+00:00 +[2020-12-19 15:26:16,731] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:26:17,061] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:21:17.061576+00:00 +[2020-12-19 15:26:28,043] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:26:28,086] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:21:28.086406+00:00 +[2020-12-19 15:26:38,812] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:26:38,825] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:21:38.825265+00:00 +[2020-12-19 15:26:50,147] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:26:50,156] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:21:50.155955+00:00 +[2020-12-19 15:27:00,956] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:27:00,957] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:22:00.957173+00:00 +[2020-12-19 15:27:11,810] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:27:11,825] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:22:11.819143+00:00 +[2020-12-19 15:27:22,337] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:27:22,342] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:22:22.342118+00:00 +[2020-12-19 15:27:32,862] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:27:32,863] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:22:32.863601+00:00 +[2020-12-19 15:27:43,937] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:27:43,941] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:22:43.941500+00:00 +[2020-12-19 15:27:54,845] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:27:54,850] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:22:54.850870+00:00 +[2020-12-19 15:28:05,008] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:28:05,009] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:23:05.008971+00:00 +[2020-12-19 15:28:15,164] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:28:15,165] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:23:15.165645+00:00 +[2020-12-19 15:28:25,225] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:28:25,226] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:23:25.226518+00:00 +[2020-12-19 15:28:35,282] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:28:35,283] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:23:35.283244+00:00 +[2020-12-19 15:28:45,352] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:28:45,385] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:23:45.376069+00:00 +[2020-12-19 15:28:56,794] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:28:56,810] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:23:56.810586+00:00 +[2020-12-19 15:29:07,228] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:29:07,242] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:24:07.242513+00:00 +[2020-12-19 15:29:17,614] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:29:17,640] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:24:17.640106+00:00 +[2020-12-19 15:29:27,908] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:29:27,909] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:24:27.909114+00:00 +[2020-12-19 15:29:38,091] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:29:38,092] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:24:38.092573+00:00 +[2020-12-19 15:29:48,329] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:29:48,331] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:24:48.331419+00:00 +[2020-12-19 15:29:58,494] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:29:58,524] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:24:58.514692+00:00 +[2020-12-19 15:30:09,104] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:30:09,125] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:25:09.125299+00:00 +[2020-12-19 15:30:12,734] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 15:30:13,466] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 15:30:19,393] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:30:19,449] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:25:19.449021+00:00 +[2020-12-19 15:30:30,567] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:30:30,645] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:25:30.645106+00:00 +[2020-12-19 15:30:41,128] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:30:41,142] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:25:41.142439+00:00 +[2020-12-19 15:30:51,783] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:30:51,786] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:25:51.786548+00:00 +[2020-12-19 15:31:02,331] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:31:02,359] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:26:02.359076+00:00 +[2020-12-19 15:31:13,054] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:31:13,101] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:26:13.096249+00:00 +[2020-12-19 15:31:23,590] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:31:23,627] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:26:23.627317+00:00 +[2020-12-19 15:31:34,495] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:31:34,496] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:26:34.496700+00:00 +[2020-12-19 15:31:45,441] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:31:45,442] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:26:45.442645+00:00 +[2020-12-19 15:31:55,549] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:31:55,550] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:26:55.550750+00:00 +[2020-12-19 15:32:05,710] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:32:05,716] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:27:05.716677+00:00 +[2020-12-19 15:32:16,168] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:32:16,217] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:27:16.217278+00:00 +[2020-12-19 15:32:26,863] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:32:27,042] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:27:27.042801+00:00 +[2020-12-19 15:32:39,178] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:32:39,570] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:27:39.552549+00:00 +[2020-12-19 15:32:52,840] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:32:52,958] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:27:52.958419+00:00 +[2020-12-19 15:33:03,613] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:33:04,091] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:28:04.091617+00:00 +[2020-12-19 15:33:14,791] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:33:14,939] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:28:14.939781+00:00 +[2020-12-19 15:33:27,974] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:33:28,109] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:28:28.108872+00:00 +[2020-12-19 15:33:39,607] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:33:39,686] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:28:39.685760+00:00 +[2020-12-19 15:33:51,147] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:33:51,189] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:28:51.189499+00:00 +[2020-12-19 15:34:02,392] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:34:02,542] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:29:02.540904+00:00 +[2020-12-19 15:34:17,610] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:34:18,096] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:29:18.096433+00:00 +[2020-12-19 15:34:29,383] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:34:29,596] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:29:29.596094+00:00 +[2020-12-19 15:34:41,472] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:34:41,570] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:29:41.570189+00:00 +[2020-12-19 15:34:53,186] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:34:53,652] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:29:53.652603+00:00 +[2020-12-19 15:35:09,834] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:35:09,844] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:30:09.843973+00:00 +[2020-12-19 15:35:13,281] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 15:35:14,314] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 15:35:20,765] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:35:20,855] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:30:20.821883+00:00 +[2020-12-19 15:35:37,486] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:35:37,768] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:30:37.768545+00:00 +[2020-12-19 15:35:49,828] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:35:50,010] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:30:50.010871+00:00 +[2020-12-19 15:36:03,225] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:36:03,611] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:31:03.567228+00:00 +[2020-12-19 15:36:18,807] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:36:19,182] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:31:19.128610+00:00 +[2020-12-19 15:36:34,861] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:36:35,349] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:31:35.349438+00:00 +[2020-12-19 15:36:46,787] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:36:46,882] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:31:46.875939+00:00 +[2020-12-19 15:36:58,867] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:36:59,272] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:31:59.271667+00:00 +[2020-12-19 15:37:11,974] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:37:12,132] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:32:12.131850+00:00 +[2020-12-19 15:37:24,295] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:37:24,358] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:32:24.348171+00:00 +[2020-12-19 15:37:35,978] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:37:36,402] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:32:36.397083+00:00 +[2020-12-19 15:37:49,178] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:37:49,978] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:32:49.978286+00:00 +[2020-12-19 15:38:00,746] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:38:00,846] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:33:00.845917+00:00 +[2020-12-19 15:38:13,332] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:38:13,427] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:33:13.426931+00:00 +[2020-12-19 15:38:27,108] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:38:27,323] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:33:27.323204+00:00 +[2020-12-19 15:38:38,716] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:38:38,839] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:33:38.839010+00:00 +[2020-12-19 15:38:50,307] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:38:50,312] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:33:50.312472+00:00 +[2020-12-19 15:39:01,062] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:39:01,439] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:34:01.439670+00:00 +[2020-12-19 15:39:13,381] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:39:13,560] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:34:13.560372+00:00 +[2020-12-19 15:39:25,341] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:39:25,643] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:34:25.643734+00:00 +[2020-12-19 15:39:49,217] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:39:50,196] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:34:50.191536+00:00 +[2020-12-19 15:40:13,621] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 15:40:15,889] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 15:40:17,518] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:40:17,543] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:35:17.542978+00:00 +[2020-12-19 15:40:28,583] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:40:29,042] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:35:29.030766+00:00 +[2020-12-19 15:40:42,530] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:40:42,578] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:35:42.578219+00:00 +[2020-12-19 15:40:55,419] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:40:55,445] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:35:55.445413+00:00 +[2020-12-19 15:41:06,061] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:41:06,100] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:36:06.100795+00:00 +[2020-12-19 15:41:17,004] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:41:17,535] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:36:17.528951+00:00 +[2020-12-19 15:41:38,952] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:41:39,404] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:36:39.391417+00:00 +[2020-12-19 15:41:54,421] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:41:55,297] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:36:55.271021+00:00 +[2020-12-19 15:42:12,035] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:42:12,455] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:37:12.427863+00:00 +[2020-12-19 15:42:30,077] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:42:30,485] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:37:30.470671+00:00 +[2020-12-19 15:42:42,085] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:42:42,175] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:37:42.165628+00:00 +[2020-12-19 15:43:00,326] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:43:11,384] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:38:10.153147+00:00 +[2020-12-19 15:43:51,111] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:43:51,763] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:38:51.715984+00:00 +[2020-12-19 15:44:04,343] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:44:04,359] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:39:04.359003+00:00 +[2020-12-19 15:44:15,907] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:44:16,895] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:39:16.864084+00:00 +[2020-12-19 15:44:43,404] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:44:43,424] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:39:43.424328+00:00 +[2020-12-19 15:44:55,100] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:44:56,478] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:39:56.408404+00:00 +[2020-12-19 15:45:09,216] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:45:09,247] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:40:09.246835+00:00 +[2020-12-19 15:45:14,563] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 15:45:15,803] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 15:45:20,779] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:45:20,795] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:40:20.795590+00:00 +[2020-12-19 15:45:32,122] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:45:32,173] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:40:32.163447+00:00 +[2020-12-19 15:45:43,444] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 15:45:43,495] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:40:43.495319+00:00 +[2020-12-19 16:02:12,451] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-19 16:02:12,460] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-19 16:02:12,462] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-19 16:02:12,483] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:02:12,484] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:57:12.484790+00:00 +[2020-12-19 16:02:22,926] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:02:22,951] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:57:22.951834+00:00 +[2020-12-19 16:02:33,558] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:02:33,565] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:57:33.565790+00:00 +[2020-12-19 16:02:44,160] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:02:44,190] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:57:44.189967+00:00 +[2020-12-19 16:02:55,216] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:02:55,306] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:57:55.306596+00:00 +[2020-12-19 16:03:06,693] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:03:06,732] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:58:06.731946+00:00 +[2020-12-19 16:03:17,213] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:03:17,258] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:58:17.258534+00:00 +[2020-12-19 16:03:28,318] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:03:28,346] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:58:28.346514+00:00 +[2020-12-19 16:03:39,150] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:03:39,193] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:58:39.193518+00:00 +[2020-12-19 16:03:50,017] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:03:50,111] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:58:50.110577+00:00 +[2020-12-19 16:04:00,856] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:04:00,906] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:59:00.906835+00:00 +[2020-12-19 16:04:11,602] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:04:11,640] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:59:11.639865+00:00 +[2020-12-19 16:04:24,567] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:04:25,541] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:59:25.541062+00:00 +[2020-12-19 16:04:38,873] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:04:39,298] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:59:39.297878+00:00 +[2020-12-19 16:04:52,985] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:04:54,661] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 15:59:54.650846+00:00 +[2020-12-19 16:05:31,958] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:05:35,195] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 16:00:35.159597+00:00 +[2020-12-19 16:06:01,805] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:06:04,337] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 16:01:04.275217+00:00 +[2020-12-19 16:07:56,232] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-19 16:07:58,741] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-19 16:08:04,930] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:08:05,201] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 16:03:05.198088+00:00 +[2020-12-19 16:08:19,396] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:08:20,376] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 16:03:20.372419+00:00 +[2020-12-19 16:08:37,397] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-19 16:08:39,245] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-19 16:03:39.240755+00:00 +[2020-12-20 00:23:54,879] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 00:23:55,956] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 00:24:02,978] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:24:03,442] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:19:03.441482+00:00 +[2020-12-20 00:24:19,506] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:24:19,710] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:19:19.710006+00:00 +[2020-12-20 00:24:39,762] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:24:40,399] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:19:40.373166+00:00 +[2020-12-20 00:24:56,252] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:24:58,604] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:19:58.559366+00:00 +[2020-12-20 00:25:29,481] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:25:31,660] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:20:31.644448+00:00 +[2020-12-20 00:25:57,450] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:25:59,216] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:20:59.192791+00:00 +[2020-12-20 00:26:25,788] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:26:27,794] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:21:27.787268+00:00 +[2020-12-20 00:26:53,798] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:26:55,394] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:21:55.250495+00:00 +[2020-12-20 00:27:16,803] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:27:18,688] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:22:18.269735+00:00 +[2020-12-20 00:27:47,713] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:27:49,181] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:22:49.150799+00:00 +[2020-12-20 00:28:13,385] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:28:13,742] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:23:13.714972+00:00 +[2020-12-20 00:28:25,768] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:28:27,226] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:23:26.993357+00:00 +[2020-12-20 00:28:50,360] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:28:52,302] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:23:52.285543+00:00 +[2020-12-20 00:28:58,858] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 00:28:59,354] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 00:29:08,773] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:29:09,960] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:24:09.933733+00:00 +[2020-12-20 00:29:24,330] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:29:24,471] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:24:24.457145+00:00 +[2020-12-20 00:29:36,418] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:29:37,239] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:24:37.239667+00:00 +[2020-12-20 00:29:52,088] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:29:52,997] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:24:52.970281+00:00 +[2020-12-20 00:30:08,228] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:30:08,273] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:25:08.273114+00:00 +[2020-12-20 00:30:19,472] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:30:19,484] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:25:19.483973+00:00 +[2020-12-20 00:30:29,961] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:30:30,038] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:25:30.033974+00:00 +[2020-12-20 00:30:42,174] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:30:42,430] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:25:42.430573+00:00 +[2020-12-20 00:31:01,340] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:31:01,728] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:26:01.714139+00:00 +[2020-12-20 00:31:13,787] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:31:14,057] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:26:14.057445+00:00 +[2020-12-20 00:31:26,217] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:31:26,772] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:26:26.772638+00:00 +[2020-12-20 00:31:40,956] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:31:41,773] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:26:41.773081+00:00 +[2020-12-20 00:31:58,282] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:31:59,152] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:26:59.120581+00:00 +[2020-12-20 00:32:16,465] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:32:16,472] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:27:16.472505+00:00 +[2020-12-20 00:32:27,477] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:32:27,524] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:27:27.508779+00:00 +[2020-12-20 00:32:39,948] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:32:40,792] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:27:40.783831+00:00 +[2020-12-20 00:32:58,332] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:32:59,183] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:27:59.130234+00:00 +[2020-12-20 00:33:20,315] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:33:21,479] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:28:21.426979+00:00 +[2020-12-20 00:33:39,604] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:33:44,024] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:28:43.969193+00:00 +[2020-12-20 00:34:03,635] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 00:34:04,911] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 00:34:14,863] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:34:15,352] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:29:15.340817+00:00 +[2020-12-20 00:34:30,836] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:34:30,948] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:29:30.948082+00:00 +[2020-12-20 00:34:42,182] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:34:42,372] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:29:42.372529+00:00 +[2020-12-20 00:34:55,349] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:34:55,732] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:29:55.684598+00:00 +[2020-12-20 00:35:07,918] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:35:08,530] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:30:08.470719+00:00 +[2020-12-20 00:35:22,606] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:35:23,145] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:30:23.145510+00:00 +[2020-12-20 00:35:40,044] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:35:41,064] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:30:41.064819+00:00 +[2020-12-20 00:35:58,119] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:36:01,336] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:31:01.335969+00:00 +[2020-12-20 00:36:17,610] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:36:18,014] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:31:18.013865+00:00 +[2020-12-20 00:36:30,428] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:36:30,446] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:31:30.446620+00:00 +[2020-12-20 00:36:41,809] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:36:42,217] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:31:42.217792+00:00 +[2020-12-20 00:36:55,332] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:36:55,385] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:31:55.385839+00:00 +[2020-12-20 00:37:07,404] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:37:08,302] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:32:08.227661+00:00 +[2020-12-20 00:37:39,678] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:37:40,874] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:32:40.763329+00:00 +[2020-12-20 00:38:08,389] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:38:09,392] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:33:09.390927+00:00 +[2020-12-20 00:38:25,472] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:38:26,137] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:33:26.136922+00:00 +[2020-12-20 00:38:41,213] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:38:41,335] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:33:41.306007+00:00 +[2020-12-20 00:38:52,817] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:38:53,056] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:33:53.056532+00:00 +[2020-12-20 00:39:04,530] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 00:39:06,752] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 00:39:07,999] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:39:08,186] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:34:08.186174+00:00 +[2020-12-20 00:39:20,065] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:39:20,336] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:34:20.332141+00:00 +[2020-12-20 00:39:32,666] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:39:33,277] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:34:33.277221+00:00 +[2020-12-20 00:39:56,168] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:39:57,189] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:34:57.176769+00:00 +[2020-12-20 00:40:18,875] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:40:18,886] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:35:18.885002+00:00 +[2020-12-20 00:40:30,130] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:40:30,631] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:35:30.626553+00:00 +[2020-12-20 00:40:47,954] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:40:47,971] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:35:47.970945+00:00 +[2020-12-20 00:40:59,174] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:40:59,184] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:35:59.184622+00:00 +[2020-12-20 00:41:10,380] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:41:10,740] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:36:10.740116+00:00 +[2020-12-20 00:41:23,511] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:41:23,768] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:36:23.768493+00:00 +[2020-12-20 00:41:36,143] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:41:36,545] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:36:36.426271+00:00 +[2020-12-20 00:41:53,363] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:41:53,990] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:36:53.989761+00:00 +[2020-12-20 00:42:05,290] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:42:06,945] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:37:06.935470+00:00 +[2020-12-20 00:42:19,297] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:42:19,389] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:37:19.389680+00:00 +[2020-12-20 00:42:31,149] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:42:31,150] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:37:31.150311+00:00 +[2020-12-20 00:42:43,079] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:42:43,424] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:37:43.415565+00:00 +[2020-12-20 00:42:55,131] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:42:55,137] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:37:55.137442+00:00 +[2020-12-20 00:43:05,750] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:43:06,069] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:38:05.868372+00:00 +[2020-12-20 00:43:17,982] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:43:18,719] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:38:18.718052+00:00 +[2020-12-20 00:43:32,170] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:43:32,375] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:38:32.348400+00:00 +[2020-12-20 00:43:44,650] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:43:45,290] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:38:45.290463+00:00 +[2020-12-20 00:44:03,045] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:44:03,710] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:39:03.697852+00:00 +[2020-12-20 00:44:15,338] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 00:44:16,147] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 00:44:25,763] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:44:25,788] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:39:25.788654+00:00 +[2020-12-20 00:44:38,195] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:44:38,739] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:39:38.739136+00:00 +[2020-12-20 00:44:50,243] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:44:50,245] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:39:50.244961+00:00 +[2020-12-20 00:45:00,697] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:45:00,889] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:40:00.889668+00:00 +[2020-12-20 00:45:12,371] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:45:12,853] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:40:12.824422+00:00 +[2020-12-20 00:45:29,850] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:45:29,891] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:40:29.891758+00:00 +[2020-12-20 00:45:40,524] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:45:40,592] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:40:40.592062+00:00 +[2020-12-20 00:45:51,358] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:45:51,467] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:40:51.467631+00:00 +[2020-12-20 00:46:03,940] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:46:04,550] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:41:04.455508+00:00 +[2020-12-20 00:46:16,092] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:46:17,127] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:41:17.102702+00:00 +[2020-12-20 00:46:30,117] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:46:30,140] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:41:30.140560+00:00 +[2020-12-20 00:46:40,808] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:46:40,820] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:41:40.820742+00:00 +[2020-12-20 00:46:51,996] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:46:52,021] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:41:52.008580+00:00 +[2020-12-20 00:47:02,892] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:47:02,903] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:42:02.903671+00:00 +[2020-12-20 00:47:14,979] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:47:16,169] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:42:16.166234+00:00 +[2020-12-20 00:47:30,270] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:47:30,424] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:42:30.424290+00:00 +[2020-12-20 00:47:41,812] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:47:41,889] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:42:41.882293+00:00 +[2020-12-20 00:47:53,218] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:47:53,237] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:42:53.237223+00:00 +[2020-12-20 00:48:04,718] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:48:05,065] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:43:05.065544+00:00 +[2020-12-20 00:48:19,317] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:48:19,446] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:43:19.446193+00:00 +[2020-12-20 00:48:31,850] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:48:32,777] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:43:32.711983+00:00 +[2020-12-20 00:48:49,831] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:48:50,758] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:43:50.727323+00:00 +[2020-12-20 00:49:02,600] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:49:02,602] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:44:02.602233+00:00 +[2020-12-20 00:49:13,564] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:49:13,745] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:44:13.745422+00:00 +[2020-12-20 00:49:15,627] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 00:49:15,861] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 00:49:25,516] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:49:25,523] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:44:25.520117+00:00 +[2020-12-20 00:49:36,436] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:49:36,453] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:44:36.453094+00:00 +[2020-12-20 00:49:47,523] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:49:47,552] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:44:47.551971+00:00 +[2020-12-20 00:49:58,282] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:49:58,296] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:44:58.296399+00:00 +[2020-12-20 00:50:09,098] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:50:09,135] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:45:09.135656+00:00 +[2020-12-20 00:50:19,430] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:50:19,435] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:45:19.433141+00:00 +[2020-12-20 00:50:29,796] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:50:29,824] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:45:29.815591+00:00 +[2020-12-20 00:50:40,543] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:50:40,710] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:45:40.703800+00:00 +[2020-12-20 00:50:53,260] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:50:53,292] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:45:53.292252+00:00 +[2020-12-20 00:51:04,924] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:51:05,091] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:46:05.091167+00:00 +[2020-12-20 00:51:18,564] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:51:18,568] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:46:18.566632+00:00 +[2020-12-20 00:51:28,975] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:51:28,978] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:46:28.978158+00:00 +[2020-12-20 00:51:39,056] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:51:39,061] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:46:39.061445+00:00 +[2020-12-20 00:51:49,249] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:51:49,249] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:46:49.249832+00:00 +[2020-12-20 00:51:59,387] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:51:59,426] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:46:59.422124+00:00 +[2020-12-20 00:52:09,852] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:52:09,867] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:47:09.867542+00:00 +[2020-12-20 00:52:20,205] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:52:20,207] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:47:20.206961+00:00 +[2020-12-20 00:52:30,280] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:52:30,291] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:47:30.291355+00:00 +[2020-12-20 00:52:40,358] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:52:40,362] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:47:40.362679+00:00 +[2020-12-20 00:52:50,570] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:52:50,572] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:47:50.571974+00:00 +[2020-12-20 00:53:03,411] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:53:03,742] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:48:03.717154+00:00 +[2020-12-20 00:53:14,401] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:53:14,404] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:48:14.403929+00:00 +[2020-12-20 00:53:24,605] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:53:24,606] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:48:24.606299+00:00 +[2020-12-20 00:53:34,662] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:53:34,668] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:48:34.668670+00:00 +[2020-12-20 00:53:44,751] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:53:44,752] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:48:44.752584+00:00 +[2020-12-20 00:53:54,834] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:53:54,836] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:48:54.835945+00:00 +[2020-12-20 00:54:04,971] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:54:04,976] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:49:04.976594+00:00 +[2020-12-20 00:54:15,422] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:54:15,425] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:49:15.424869+00:00 +[2020-12-20 00:54:16,570] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 00:54:16,703] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 00:54:25,918] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:54:25,921] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:49:25.921399+00:00 +[2020-12-20 00:54:36,031] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:54:36,050] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:49:36.050638+00:00 +[2020-12-20 00:54:46,238] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:54:46,250] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:49:46.250601+00:00 +[2020-12-20 00:54:56,615] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:54:56,773] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:49:56.767763+00:00 +[2020-12-20 00:55:07,916] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:55:07,917] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:50:07.917754+00:00 +[2020-12-20 00:55:17,970] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:55:17,973] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:50:17.973476+00:00 +[2020-12-20 00:55:28,038] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:55:28,043] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:50:28.042894+00:00 +[2020-12-20 00:55:38,261] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:55:38,269] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:50:38.268795+00:00 +[2020-12-20 00:55:49,326] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:55:49,328] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:50:49.328829+00:00 +[2020-12-20 00:55:59,554] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:55:59,562] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:50:59.561936+00:00 +[2020-12-20 00:56:09,759] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:56:09,762] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:51:09.761987+00:00 +[2020-12-20 00:56:19,867] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:56:19,874] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:51:19.873994+00:00 +[2020-12-20 00:56:30,022] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:56:30,024] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:51:30.024156+00:00 +[2020-12-20 00:56:40,282] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:56:40,369] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:51:40.348593+00:00 +[2020-12-20 00:56:51,278] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:56:51,280] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:51:51.280185+00:00 +[2020-12-20 00:57:01,425] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:57:01,428] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:52:01.428085+00:00 +[2020-12-20 00:57:11,495] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:57:11,502] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:52:11.502327+00:00 +[2020-12-20 00:57:21,598] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:57:21,600] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:52:21.600079+00:00 +[2020-12-20 00:57:31,725] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:57:31,727] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:52:31.727313+00:00 +[2020-12-20 00:57:42,368] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:57:42,371] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:52:42.371813+00:00 +[2020-12-20 00:57:52,493] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:57:52,495] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:52:52.495779+00:00 +[2020-12-20 00:58:02,726] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:58:02,727] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:53:02.727520+00:00 +[2020-12-20 00:58:12,816] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:58:12,819] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:53:12.819594+00:00 +[2020-12-20 00:58:22,922] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:58:22,935] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:53:22.935850+00:00 +[2020-12-20 00:58:33,272] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:58:33,273] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:53:33.273116+00:00 +[2020-12-20 00:58:43,409] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:58:43,411] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:53:43.411091+00:00 +[2020-12-20 00:58:53,495] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:58:53,514] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:53:53.514128+00:00 +[2020-12-20 00:59:03,663] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:59:03,666] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:54:03.666190+00:00 +[2020-12-20 00:59:13,777] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:59:13,778] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:54:13.778889+00:00 +[2020-12-20 00:59:16,836] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 00:59:16,909] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 00:59:24,030] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:59:24,033] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:54:24.032842+00:00 +[2020-12-20 00:59:34,122] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:59:34,124] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:54:34.124124+00:00 +[2020-12-20 00:59:44,194] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:59:44,195] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:54:44.195604+00:00 +[2020-12-20 00:59:54,339] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 00:59:54,341] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:54:54.341572+00:00 +[2020-12-20 01:00:04,424] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:00:04,426] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:55:04.425919+00:00 +[2020-12-20 01:00:14,585] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:00:14,586] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:55:14.586444+00:00 +[2020-12-20 01:00:24,641] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:00:24,642] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:55:24.642601+00:00 +[2020-12-20 01:00:34,813] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:00:34,813] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:55:34.813829+00:00 +[2020-12-20 01:00:44,875] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:00:44,877] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:55:44.877334+00:00 +[2020-12-20 01:00:54,955] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:00:54,956] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:55:54.956756+00:00 +[2020-12-20 01:01:05,042] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:01:05,043] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:56:05.043542+00:00 +[2020-12-20 01:01:15,135] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:01:15,137] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:56:15.137785+00:00 +[2020-12-20 01:01:25,221] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:01:25,222] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:56:25.222321+00:00 +[2020-12-20 01:01:35,296] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:01:35,297] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:56:35.297806+00:00 +[2020-12-20 01:01:45,482] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:01:45,483] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:56:45.483238+00:00 +[2020-12-20 01:01:55,549] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:01:55,551] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:56:55.551111+00:00 +[2020-12-20 01:02:05,673] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:02:05,674] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:57:05.674459+00:00 +[2020-12-20 01:02:15,819] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:02:15,821] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:57:15.821292+00:00 +[2020-12-20 01:02:25,909] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:02:25,912] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:57:25.912242+00:00 +[2020-12-20 01:02:36,014] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:02:36,017] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:57:36.017138+00:00 +[2020-12-20 01:02:46,081] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:02:46,082] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:57:46.082208+00:00 +[2020-12-20 01:02:56,133] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:02:56,135] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:57:56.135370+00:00 +[2020-12-20 01:03:06,399] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:03:06,400] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:58:06.400555+00:00 +[2020-12-20 01:03:16,576] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:03:16,577] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:58:16.577832+00:00 +[2020-12-20 01:03:26,646] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:03:26,648] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:58:26.648561+00:00 +[2020-12-20 01:03:36,715] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:03:36,716] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:58:36.716499+00:00 +[2020-12-20 01:03:46,848] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:03:46,849] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:58:46.849736+00:00 +[2020-12-20 01:03:57,373] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:03:57,375] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:58:57.374986+00:00 +[2020-12-20 01:04:07,445] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:04:07,447] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:59:07.447503+00:00 +[2020-12-20 01:04:17,541] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 01:04:17,607] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 01:04:17,709] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:04:17,711] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:59:17.710860+00:00 +[2020-12-20 01:04:27,860] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:04:27,866] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:59:27.866148+00:00 +[2020-12-20 01:04:37,971] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:04:37,972] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:59:37.972741+00:00 +[2020-12-20 01:04:48,049] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:04:48,051] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:59:48.051416+00:00 +[2020-12-20 01:04:58,110] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:04:58,112] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 00:59:58.112723+00:00 +[2020-12-20 01:05:08,220] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:05:08,232] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:00:08.232623+00:00 +[2020-12-20 01:05:18,438] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:05:18,440] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:00:18.440038+00:00 +[2020-12-20 01:05:28,595] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:05:28,597] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:00:28.596896+00:00 +[2020-12-20 01:05:38,663] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:05:38,665] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:00:38.665113+00:00 +[2020-12-20 01:05:48,827] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:05:48,828] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:00:48.828428+00:00 +[2020-12-20 01:05:58,881] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:05:58,883] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:00:58.882902+00:00 +[2020-12-20 01:06:08,946] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:06:08,948] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:01:08.947980+00:00 +[2020-12-20 01:06:19,147] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:06:19,148] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:01:19.148733+00:00 +[2020-12-20 01:06:29,245] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:06:29,247] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:01:29.246885+00:00 +[2020-12-20 01:06:39,330] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:06:39,332] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:01:39.332583+00:00 +[2020-12-20 01:06:49,421] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:06:49,427] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:01:49.426886+00:00 +[2020-12-20 01:06:59,593] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:06:59,599] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:01:59.599030+00:00 +[2020-12-20 01:07:09,723] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:07:09,725] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:02:09.725560+00:00 +[2020-12-20 01:07:19,885] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:07:19,888] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:02:19.887868+00:00 +[2020-12-20 01:07:29,969] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:07:29,970] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:02:29.970801+00:00 +[2020-12-20 01:07:40,077] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:07:40,086] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:02:40.086393+00:00 +[2020-12-20 01:07:50,312] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:07:50,317] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:02:50.317131+00:00 +[2020-12-20 01:08:00,382] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:08:00,384] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:03:00.383969+00:00 +[2020-12-20 01:08:10,451] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:08:10,453] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:03:10.453768+00:00 +[2020-12-20 01:08:20,560] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:08:20,630] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:03:20.630531+00:00 +[2020-12-20 01:08:31,053] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:08:31,055] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:03:31.055406+00:00 +[2020-12-20 01:08:41,126] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:08:41,127] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:03:41.126960+00:00 +[2020-12-20 01:08:51,188] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:08:51,190] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:03:51.190038+00:00 +[2020-12-20 01:09:01,267] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:09:01,268] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:04:01.268388+00:00 +[2020-12-20 01:09:11,413] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:09:11,414] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:04:11.414644+00:00 +[2020-12-20 01:09:18,458] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 01:09:18,547] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 01:09:21,628] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:09:21,629] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:04:21.629831+00:00 +[2020-12-20 01:09:31,681] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:09:31,683] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:04:31.683574+00:00 +[2020-12-20 01:09:41,802] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:09:41,803] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:04:41.803636+00:00 +[2020-12-20 01:09:51,947] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:09:51,949] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:04:51.949198+00:00 +[2020-12-20 01:10:02,019] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:10:02,021] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:05:02.021732+00:00 +[2020-12-20 01:10:12,094] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:10:12,096] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:05:12.096019+00:00 +[2020-12-20 01:10:22,178] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:10:22,180] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:05:22.179993+00:00 +[2020-12-20 01:10:32,285] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:10:32,287] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:05:32.287394+00:00 +[2020-12-20 01:10:42,348] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:10:42,350] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:05:42.350473+00:00 +[2020-12-20 01:10:52,452] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:10:52,453] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:05:52.453539+00:00 +[2020-12-20 01:11:02,527] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:11:02,529] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:06:02.528896+00:00 +[2020-12-20 01:11:12,592] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:11:12,593] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:06:12.593567+00:00 +[2020-12-20 01:11:22,637] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:11:22,639] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:06:22.639625+00:00 +[2020-12-20 01:11:32,723] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:11:32,724] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:06:32.724362+00:00 +[2020-12-20 01:11:43,039] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:11:43,040] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:06:43.040593+00:00 +[2020-12-20 01:11:53,111] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:11:53,113] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:06:53.113132+00:00 +[2020-12-20 01:12:03,197] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:12:03,199] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:07:03.199294+00:00 +[2020-12-20 01:12:13,277] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:12:13,279] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:07:13.279001+00:00 +[2020-12-20 01:12:23,459] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:12:23,461] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:07:23.461078+00:00 +[2020-12-20 01:12:33,519] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:12:33,520] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:07:33.520650+00:00 +[2020-12-20 01:12:43,636] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:12:43,637] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:07:43.637446+00:00 +[2020-12-20 01:12:53,698] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:12:53,700] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:07:53.700314+00:00 +[2020-12-20 01:13:03,816] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:13:03,817] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:08:03.817744+00:00 +[2020-12-20 01:13:13,884] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:13:13,889] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:08:13.889043+00:00 +[2020-12-20 01:13:23,974] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:13:23,976] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:08:23.976019+00:00 +[2020-12-20 01:13:34,034] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:13:34,036] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:08:34.035974+00:00 +[2020-12-20 01:13:44,121] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:13:44,124] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:08:44.123866+00:00 +[2020-12-20 01:13:54,200] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:13:54,204] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:08:54.203898+00:00 +[2020-12-20 01:14:04,301] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:14:04,302] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:09:04.302872+00:00 +[2020-12-20 01:14:14,373] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:14:14,375] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:09:14.374964+00:00 +[2020-12-20 01:14:19,417] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 01:14:19,481] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 01:14:24,612] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:14:24,614] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:09:24.613845+00:00 +[2020-12-20 01:14:34,683] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:14:34,685] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:09:34.685466+00:00 +[2020-12-20 01:14:44,753] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:14:44,754] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:09:44.754448+00:00 +[2020-12-20 01:14:54,880] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:14:54,881] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:09:54.881667+00:00 +[2020-12-20 01:15:04,939] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:15:04,940] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:10:04.940630+00:00 +[2020-12-20 01:15:14,993] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:15:14,997] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:10:14.996741+00:00 +[2020-12-20 01:15:25,078] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:15:25,080] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:10:25.080864+00:00 +[2020-12-20 01:15:35,169] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:15:35,171] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:10:35.171683+00:00 +[2020-12-20 01:15:45,280] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:15:45,281] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:10:45.280967+00:00 +[2020-12-20 01:15:55,354] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:15:55,356] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:10:55.355982+00:00 +[2020-12-20 01:16:05,847] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:16:05,867] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:11:05.867058+00:00 +[2020-12-20 01:16:16,131] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:16:16,136] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:11:16.135971+00:00 +[2020-12-20 01:16:26,205] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:16:26,206] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:11:26.206592+00:00 +[2020-12-20 01:16:36,278] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:16:36,279] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:11:36.279238+00:00 +[2020-12-20 01:16:46,327] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:16:46,328] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:11:46.328463+00:00 +[2020-12-20 01:16:56,419] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:16:56,420] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:11:56.420075+00:00 +[2020-12-20 01:17:06,474] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:17:06,475] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:12:06.475726+00:00 +[2020-12-20 01:17:16,540] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:17:16,542] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:12:16.542137+00:00 +[2020-12-20 01:17:26,642] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:17:26,661] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:12:26.661744+00:00 +[2020-12-20 01:17:36,988] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:17:36,990] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:12:36.989844+00:00 +[2020-12-20 01:17:47,038] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:17:47,039] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:12:47.039340+00:00 +[2020-12-20 01:17:57,096] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:17:57,099] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:12:57.099661+00:00 +[2020-12-20 01:18:07,196] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:18:07,201] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:13:07.197540+00:00 +[2020-12-20 01:18:17,493] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:18:17,494] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:13:17.494335+00:00 +[2020-12-20 01:18:27,543] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:18:27,544] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:13:27.544693+00:00 +[2020-12-20 01:18:37,612] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:18:37,613] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:13:37.613783+00:00 +[2020-12-20 01:18:47,706] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:18:47,714] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:13:47.714598+00:00 +[2020-12-20 01:18:57,858] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:18:57,860] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:13:57.859708+00:00 +[2020-12-20 01:21:16,750] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-20 01:21:16,771] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-20 01:21:16,787] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 01:21:16,870] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:21:16,889] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:16:16.889248+00:00 +[2020-12-20 01:21:28,249] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:21:28,256] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:16:28.256422+00:00 +[2020-12-20 01:21:39,367] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:21:39,391] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:16:39.391463+00:00 +[2020-12-20 01:21:50,588] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:21:50,789] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:16:50.789753+00:00 +[2020-12-20 01:22:01,557] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:22:01,577] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:17:01.577691+00:00 +[2020-12-20 01:22:13,143] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:22:13,146] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:17:13.146315+00:00 +[2020-12-20 01:22:23,678] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:22:23,807] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:17:23.807079+00:00 +[2020-12-20 01:22:35,234] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:22:35,249] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:17:35.249333+00:00 +[2020-12-20 01:22:45,850] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:22:45,872] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:17:45.872551+00:00 +[2020-12-20 01:22:56,543] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:22:56,619] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:17:56.619690+00:00 +[2020-12-20 01:23:07,448] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:23:07,479] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:18:07.479151+00:00 +[2020-12-20 01:23:18,085] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:23:18,118] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:18:18.118815+00:00 +[2020-12-20 01:23:28,647] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:23:28,772] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:18:28.752370+00:00 +[2020-12-20 01:23:40,120] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:23:40,375] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:18:40.375118+00:00 +[2020-12-20 01:23:52,198] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:23:52,310] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:18:52.309876+00:00 +[2020-12-20 01:24:03,152] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:24:03,332] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:19:03.330751+00:00 +[2020-12-20 01:24:14,747] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:24:15,283] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:19:15.263743+00:00 +[2020-12-20 01:24:28,203] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:24:28,649] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:19:28.641699+00:00 +[2020-12-20 01:24:40,255] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:24:40,284] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:19:40.283966+00:00 +[2020-12-20 01:43:00,657] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-20 01:43:00,727] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-20 01:43:00,770] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 01:43:01,246] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:43:01,318] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:38:01.318684+00:00 +[2020-12-20 01:43:28,592] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:43:31,019] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:38:30.436083+00:00 +[2020-12-20 01:43:58,052] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:43:58,237] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:38:58.237263+00:00 +[2020-12-20 01:44:11,749] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:44:11,890] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:39:11.890827+00:00 +[2020-12-20 01:44:24,388] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:44:24,721] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:39:24.639208+00:00 +[2020-12-20 01:44:36,744] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:44:36,796] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:39:36.796339+00:00 +[2020-12-20 01:44:48,048] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:44:48,247] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:39:48.247035+00:00 +[2020-12-20 01:45:04,031] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:45:05,398] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:40:05.253871+00:00 +[2020-12-20 01:45:19,349] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:45:20,960] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:40:20.658829+00:00 +[2020-12-20 01:45:40,864] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:45:40,980] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:40:40.937478+00:00 +[2020-12-20 01:45:52,688] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:45:56,262] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:40:56.261940+00:00 +[2020-12-20 01:46:07,576] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:46:07,632] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:41:07.631903+00:00 +[2020-12-20 01:46:18,882] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:46:18,918] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:41:18.918276+00:00 +[2020-12-20 01:46:30,241] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:46:31,282] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:41:31.282876+00:00 +[2020-12-20 01:46:42,170] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:46:42,232] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:41:42.232638+00:00 +[2020-12-20 01:46:53,753] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:46:53,768] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:41:53.768782+00:00 +[2020-12-20 01:47:04,392] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:47:04,394] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:42:04.394382+00:00 +[2020-12-20 01:47:14,857] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:47:14,862] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:42:14.862587+00:00 +[2020-12-20 01:47:25,113] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:47:25,121] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:42:25.121008+00:00 +[2020-12-20 01:47:35,442] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:47:35,448] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:42:35.448184+00:00 +[2020-12-20 01:47:45,898] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:47:46,279] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:42:46.273956+00:00 +[2020-12-20 01:47:57,923] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:47:57,928] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:42:57.928589+00:00 +[2020-12-20 01:48:01,049] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 01:48:01,277] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 01:48:08,049] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:48:08,073] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:43:08.073708+00:00 +[2020-12-20 01:59:16,193] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-20 01:59:16,357] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-20 01:59:16,445] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 01:59:16,982] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:59:17,080] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:54:17.079994+00:00 +[2020-12-20 01:59:37,432] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:59:42,329] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:54:42.329501+00:00 +[2020-12-20 01:59:53,625] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 01:59:53,638] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:54:53.638551+00:00 +[2020-12-20 02:00:04,881] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:00:05,093] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:55:05.092946+00:00 +[2020-12-20 02:00:15,772] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:00:15,843] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:55:15.843561+00:00 +[2020-12-20 02:00:27,913] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:00:31,459] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:55:31.459404+00:00 +[2020-12-20 02:00:42,196] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:00:42,213] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:55:42.213206+00:00 +[2020-12-20 02:00:53,209] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:00:53,291] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:55:53.291155+00:00 +[2020-12-20 02:01:04,181] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:01:04,205] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:56:04.193042+00:00 +[2020-12-20 02:01:15,412] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:01:15,439] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:56:15.439005+00:00 +[2020-12-20 02:01:26,200] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:01:26,295] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:56:26.295423+00:00 +[2020-12-20 02:01:37,290] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:01:39,542] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:56:39.542503+00:00 +[2020-12-20 02:01:52,431] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:01:52,432] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:56:52.432667+00:00 +[2020-12-20 02:02:02,642] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:02:02,651] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:57:02.651031+00:00 +[2020-12-20 02:02:12,984] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:02:12,991] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:57:12.990605+00:00 +[2020-12-20 02:02:25,320] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:02:31,072] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:57:31.072226+00:00 +[2020-12-20 02:02:42,750] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:02:42,962] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:57:42.957957+00:00 +[2020-12-20 02:02:54,009] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:02:54,126] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:57:54.104396+00:00 +[2020-12-20 02:03:04,878] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:03:04,900] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 01:58:04.900333+00:00 +[2020-12-20 02:08:30,566] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-20 02:08:30,570] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-20 02:08:30,595] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 02:08:30,699] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:08:30,718] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:03:30.717930+00:00 +[2020-12-20 02:08:52,750] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:08:52,752] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:03:52.752100+00:00 +[2020-12-20 02:09:03,035] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:09:03,037] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:04:03.037561+00:00 +[2020-12-20 02:09:13,285] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:09:13,287] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:04:13.286926+00:00 +[2020-12-20 02:09:23,944] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:09:24,058] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:04:24.057881+00:00 +[2020-12-20 02:09:34,549] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:09:34,673] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:04:34.672888+00:00 +[2020-12-20 02:09:45,851] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:09:45,855] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:04:45.855587+00:00 +[2020-12-20 02:09:56,240] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:09:56,242] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:04:56.242587+00:00 +[2020-12-20 02:10:06,588] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:10:06,603] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:05:06.595389+00:00 +[2020-12-20 02:10:17,444] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:10:17,446] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:05:17.446105+00:00 +[2020-12-20 02:10:28,393] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:10:28,424] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:05:28.424749+00:00 +[2020-12-20 02:10:45,117] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:10:45,352] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:05:45.352007+00:00 +[2020-12-20 02:10:58,746] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:10:58,761] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:05:58.759573+00:00 +[2020-12-20 02:11:10,031] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:11:10,203] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:06:10.203360+00:00 +[2020-12-20 02:11:20,950] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:11:20,989] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:06:20.989634+00:00 +[2020-12-20 02:11:32,625] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:11:32,900] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:06:32.884407+00:00 +[2020-12-20 02:11:44,322] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:11:45,127] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:06:44.996173+00:00 +[2020-12-20 02:12:00,003] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:12:00,064] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:07:00.063870+00:00 +[2020-12-20 02:12:10,713] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:12:10,741] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:07:10.736759+00:00 +[2020-12-20 02:12:21,140] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:12:22,157] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:07:22.157825+00:00 +[2020-12-20 02:12:32,558] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:12:32,563] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:07:32.563712+00:00 +[2020-12-20 02:12:43,398] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:12:43,410] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:07:43.410817+00:00 +[2020-12-20 02:12:54,926] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:12:56,031] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:07:56.028562+00:00 +[2020-12-20 02:13:07,982] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:13:08,215] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:08:08.215111+00:00 +[2020-12-20 02:13:19,883] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:13:20,031] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:08:20.031670+00:00 +[2020-12-20 02:13:31,925] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 02:13:42,859] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 02:13:46,096] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:13:46,274] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:08:46.267468+00:00 +[2020-12-20 02:13:57,305] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:13:57,621] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:08:57.621212+00:00 +[2020-12-20 02:14:09,110] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:14:09,117] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:09:09.117540+00:00 +[2020-12-20 02:14:19,443] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:14:19,467] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:09:19.463575+00:00 +[2020-12-20 02:14:30,029] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:14:32,410] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:09:32.290554+00:00 +[2020-12-20 02:14:49,794] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:14:50,340] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:09:50.339936+00:00 +[2020-12-20 02:15:03,757] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:15:03,779] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:10:03.779459+00:00 +[2020-12-20 02:15:14,628] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:15:14,692] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:10:14.691927+00:00 +[2020-12-20 02:15:25,264] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:15:25,400] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:10:25.345148+00:00 +[2020-12-20 02:15:40,459] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:15:40,658] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:10:40.658729+00:00 +[2020-12-20 02:15:52,651] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:15:53,088] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:10:53.078545+00:00 +[2020-12-20 02:16:04,529] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:16:04,570] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:11:04.570582+00:00 +[2020-12-20 02:16:15,338] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:16:15,351] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:11:15.350328+00:00 +[2020-12-20 02:16:26,698] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:16:26,724] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:11:26.724288+00:00 +[2020-12-20 02:16:37,712] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:16:37,750] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:11:37.750445+00:00 +[2020-12-20 02:16:49,331] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:16:49,336] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:11:49.336528+00:00 +[2020-12-20 02:24:55,100] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-20 02:24:55,107] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-20 02:24:55,108] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 02:24:55,126] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:24:55,132] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:19:55.132836+00:00 +[2020-12-20 02:25:05,683] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:25:05,687] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:20:05.687453+00:00 +[2020-12-20 02:25:15,792] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:25:15,795] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:20:15.795543+00:00 +[2020-12-20 02:25:26,311] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:25:26,467] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:20:26.424510+00:00 +[2020-12-20 02:25:38,856] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:25:38,865] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:20:38.865010+00:00 +[2020-12-20 02:25:49,352] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:25:49,396] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:20:49.396813+00:00 +[2020-12-20 02:25:59,980] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:25:59,992] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:20:59.992882+00:00 +[2020-12-20 02:26:10,967] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:26:10,980] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:21:10.980652+00:00 +[2020-12-20 02:26:21,702] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:26:21,704] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:21:21.704650+00:00 +[2020-12-20 02:26:32,132] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:26:32,195] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:21:32.195632+00:00 +[2020-12-20 02:26:42,945] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:26:43,295] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:21:43.294944+00:00 +[2020-12-20 02:26:56,866] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:26:56,874] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:21:56.873914+00:00 +[2020-12-20 02:27:07,433] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:27:07,444] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:22:07.444122+00:00 +[2020-12-20 02:27:17,587] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:27:17,607] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:22:17.607494+00:00 +[2020-12-20 02:27:27,800] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:27:27,801] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:22:27.801838+00:00 +[2020-12-20 02:27:37,925] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:27:37,939] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:22:37.938977+00:00 +[2020-12-20 02:27:50,139] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:27:50,376] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:22:50.375956+00:00 +[2020-12-20 02:28:01,572] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:28:01,625] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:23:01.625575+00:00 +[2020-12-20 02:28:12,392] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:28:12,411] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:23:12.411615+00:00 +[2020-12-20 02:28:22,706] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:28:22,712] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:23:22.712412+00:00 +[2020-12-20 02:28:33,154] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:28:33,327] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:23:33.310334+00:00 +[2020-12-20 02:28:45,193] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:28:45,266] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:23:45.266324+00:00 +[2020-12-20 02:28:55,727] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:28:55,743] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:23:55.743678+00:00 +[2020-12-20 02:29:06,707] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:29:06,713] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:24:06.713456+00:00 +[2020-12-20 02:29:16,898] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:29:17,059] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:24:17.058484+00:00 +[2020-12-20 02:29:32,834] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:29:32,905] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:24:32.905020+00:00 +[2020-12-20 02:29:43,494] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:29:43,607] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:24:43.607060+00:00 +[2020-12-20 02:29:59,685] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:30:00,540] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:25:00.540359+00:00 +[2020-12-20 02:30:03,597] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 02:30:04,368] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 02:30:13,753] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:30:13,810] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:25:13.809885+00:00 +[2020-12-20 02:30:24,207] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:30:24,458] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:25:24.444740+00:00 +[2020-12-20 02:30:36,349] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:30:36,553] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:25:36.547609+00:00 +[2020-12-20 02:30:47,025] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:30:47,027] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:25:47.026983+00:00 +[2020-12-20 02:30:57,416] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:30:57,574] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:25:57.561453+00:00 +[2020-12-20 02:31:08,793] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:31:09,127] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:26:09.127633+00:00 +[2020-12-20 02:31:20,078] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:31:20,079] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:26:20.079433+00:00 +[2020-12-20 02:31:30,802] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:31:30,890] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:26:30.890128+00:00 +[2020-12-20 02:31:43,917] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:31:44,000] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:26:43.995551+00:00 +[2020-12-20 02:31:54,549] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:31:54,577] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:26:54.577653+00:00 +[2020-12-20 02:32:11,644] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:32:13,103] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:27:13.031239+00:00 +[2020-12-20 02:32:27,915] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:32:28,317] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:27:28.316853+00:00 +[2020-12-20 02:32:41,329] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:32:44,746] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:27:44.578868+00:00 +[2020-12-20 02:32:59,536] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:33:03,152] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:28:02.868628+00:00 +[2020-12-20 02:33:48,084] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:33:48,855] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:28:48.841082+00:00 +[2020-12-20 02:38:14,091] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 02:38:14,923] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 02:38:17,550] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:38:17,568] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:33:17.566433+00:00 +[2020-12-20 02:38:29,748] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:38:31,115] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:33:31.098022+00:00 +[2020-12-20 02:38:49,225] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:38:49,469] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:33:49.454087+00:00 +[2020-12-20 02:39:00,859] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:39:03,062] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:34:02.391091+00:00 +[2020-12-20 02:39:34,461] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:39:35,527] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:34:35.517937+00:00 +[2020-12-20 02:39:55,007] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:39:55,218] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:34:55.218366+00:00 +[2020-12-20 02:40:06,302] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:40:06,316] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:35:06.316681+00:00 +[2020-12-20 02:40:17,056] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:40:17,231] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:35:17.231382+00:00 +[2020-12-20 02:40:40,982] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:40:41,619] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:35:41.612580+00:00 +[2020-12-20 02:41:12,619] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:41:12,699] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:36:12.699735+00:00 +[2020-12-20 02:41:24,685] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:41:25,325] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:36:25.319828+00:00 +[2020-12-20 02:41:46,491] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 02:41:47,077] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 02:36:47.074094+00:00 +[2020-12-20 05:07:02,068] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-20 05:07:02,109] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-20 05:07:02,134] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 05:07:02,382] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:07:02,411] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:02:02.411756+00:00 +[2020-12-20 05:07:16,841] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:07:16,874] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:02:16.874184+00:00 +[2020-12-20 05:07:28,217] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:07:28,219] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:02:28.219171+00:00 +[2020-12-20 05:07:39,219] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:07:39,244] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:02:39.244495+00:00 +[2020-12-20 05:07:50,004] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:07:50,145] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:02:50.121008+00:00 +[2020-12-20 05:08:01,100] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:08:01,221] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:03:01.221168+00:00 +[2020-12-20 05:08:13,161] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:08:13,292] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:03:13.263222+00:00 +[2020-12-20 05:08:29,974] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:08:32,021] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:03:32.014252+00:00 +[2020-12-20 05:08:48,907] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:08:49,635] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:03:49.625322+00:00 +[2020-12-20 05:09:07,683] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:09:08,042] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:04:08.030233+00:00 +[2020-12-20 05:09:30,542] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:09:31,076] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:04:31.076105+00:00 +[2020-12-20 05:09:43,067] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:09:43,345] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:04:43.345638+00:00 +[2020-12-20 05:09:55,799] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:10:00,149] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:05:00.149229+00:00 +[2020-12-20 05:10:12,227] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:10:12,239] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:05:12.239406+00:00 +[2020-12-20 05:10:22,961] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:10:23,031] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:05:23.030797+00:00 +[2020-12-20 05:10:36,027] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:10:36,029] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:05:36.028995+00:00 +[2020-12-20 05:10:46,464] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:10:46,509] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:05:46.509324+00:00 +[2020-12-20 05:11:07,171] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:11:07,514] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:06:07.502409+00:00 +[2020-12-20 05:11:19,689] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:11:19,721] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:06:19.720927+00:00 +[2020-12-20 05:11:31,068] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:11:31,069] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:06:31.069588+00:00 +[2020-12-20 05:11:41,996] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:11:42,168] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:06:42.165050+00:00 +[2020-12-20 05:11:58,796] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:11:59,322] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:06:59.302656+00:00 +[2020-12-20 05:12:02,844] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 05:12:03,233] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 05:12:11,600] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:12:11,837] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:07:11.822271+00:00 +[2020-12-20 05:12:26,327] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:12:28,885] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:07:28.852748+00:00 +[2020-12-20 05:12:42,524] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:12:42,893] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:07:42.877713+00:00 +[2020-12-20 05:13:10,461] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:13:10,462] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:08:10.462453+00:00 +[2020-12-20 05:13:26,721] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:13:36,695] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:08:36.695059+00:00 +[2020-12-20 05:13:57,088] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:13:57,361] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:08:57.347929+00:00 +[2020-12-20 05:14:08,974] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:14:10,701] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:09:10.682473+00:00 +[2020-12-20 05:14:38,018] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:14:38,879] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:09:38.867889+00:00 +[2020-12-20 05:14:52,528] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:14:52,567] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:09:52.567061+00:00 +[2020-12-20 05:15:03,936] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:15:04,539] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:10:04.536416+00:00 +[2020-12-20 05:15:31,978] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:15:40,461] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:10:40.440766+00:00 +[2020-12-20 05:15:55,594] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:15:56,469] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:10:56.469219+00:00 +[2020-12-20 05:16:09,649] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:16:10,471] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:11:10.471472+00:00 +[2020-12-20 05:16:43,060] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:16:44,744] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:11:44.736701+00:00 +[2020-12-20 05:17:01,928] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:17:02,454] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:12:02.436270+00:00 +[2020-12-20 05:17:16,064] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 05:17:16,365] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 05:17:26,429] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:17:28,175] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:12:28.169141+00:00 +[2020-12-20 05:17:57,563] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:17:58,425] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:12:58.398029+00:00 +[2020-12-20 05:18:27,440] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:18:27,723] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:13:27.718586+00:00 +[2020-12-20 05:18:51,670] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:18:52,293] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:13:52.287783+00:00 +[2020-12-20 05:19:05,532] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:19:06,937] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:14:06.936954+00:00 +[2020-12-20 05:19:19,767] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:19:20,444] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:14:20.444146+00:00 +[2020-12-20 05:19:36,861] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:19:41,507] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:14:41.507844+00:00 +[2020-12-20 05:19:53,606] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:19:54,049] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:14:54.024707+00:00 +[2020-12-20 05:20:13,912] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:20:14,364] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:15:14.325938+00:00 +[2020-12-20 05:20:27,567] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:20:28,192] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:15:28.192640+00:00 +[2020-12-20 05:20:38,814] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:20:38,830] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:15:38.830566+00:00 +[2020-12-20 05:20:50,333] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:20:50,896] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:15:50.879104+00:00 +[2020-12-20 05:21:03,728] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:21:03,806] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:16:03.806546+00:00 +[2020-12-20 05:21:15,154] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:21:16,147] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:16:16.144087+00:00 +[2020-12-20 05:21:39,850] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:21:39,921] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:16:39.887399+00:00 +[2020-12-20 05:21:50,868] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:21:50,870] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:16:50.870063+00:00 +[2020-12-20 05:22:05,478] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:22:05,495] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:17:05.495264+00:00 +[2020-12-20 05:22:16,157] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 05:22:16,877] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 05:22:32,859] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:22:32,948] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:17:32.943784+00:00 +[2020-12-20 05:22:54,005] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:22:54,256] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:17:54.256279+00:00 +[2020-12-20 05:23:05,718] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:23:05,723] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:18:05.723418+00:00 +[2020-12-20 05:23:16,258] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:23:16,553] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:18:16.529634+00:00 +[2020-12-20 05:23:27,710] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:23:27,711] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:18:27.711423+00:00 +[2020-12-20 05:23:39,008] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:23:39,801] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:18:39.766041+00:00 +[2020-12-20 05:23:51,813] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:23:58,927] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:18:58.927060+00:00 +[2020-12-20 05:24:09,459] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:24:09,638] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:19:09.638710+00:00 +[2020-12-20 05:24:22,080] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:24:22,081] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:19:22.081732+00:00 +[2020-12-20 05:24:33,888] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:24:34,040] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:19:33.991910+00:00 +[2020-12-20 05:24:44,740] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:24:49,563] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:19:49.563651+00:00 +[2020-12-20 05:31:32,584] {{dag_processing.py:821}} INFO - Processing files using up to 2 processes at a time +[2020-12-20 05:31:32,611] {{dag_processing.py:822}} INFO - Process each file at most once every 0 seconds +[2020-12-20 05:31:32,617] {{dag_processing.py:824}} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 05:31:32,739] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:31:32,752] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:26:32.751226+00:00 +[2020-12-20 05:31:45,916] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:31:45,919] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:26:45.919656+00:00 +[2020-12-20 05:31:56,318] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:31:56,325] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:26:56.325693+00:00 +[2020-12-20 05:32:06,602] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:32:06,676] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:27:06.672670+00:00 +[2020-12-20 05:32:17,300] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:32:17,312] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:27:17.312713+00:00 +[2020-12-20 05:32:27,988] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:32:27,992] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:27:27.992444+00:00 +[2020-12-20 05:32:38,636] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:32:38,637] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:27:38.637028+00:00 +[2020-12-20 05:32:49,455] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:32:49,468] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:27:49.468584+00:00 +[2020-12-20 05:33:00,439] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:33:00,445] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:28:00.445579+00:00 +[2020-12-20 05:33:10,977] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:33:10,998] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:28:10.998180+00:00 +[2020-12-20 05:33:21,510] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:33:21,540] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:28:21.540303+00:00 +[2020-12-20 05:33:37,276] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:33:37,277] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:28:37.276919+00:00 +[2020-12-20 05:33:47,664] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:33:47,685] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:28:47.685336+00:00 +[2020-12-20 05:34:06,645] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:34:07,067] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:29:06.968906+00:00 +[2020-12-20 05:34:19,013] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:34:19,538] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:29:19.537961+00:00 +[2020-12-20 05:34:57,674] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:34:59,409] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:29:59.397957+00:00 +[2020-12-20 05:35:40,498] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:35:42,460] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:30:42.366490+00:00 +[2020-12-20 05:36:09,940] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:36:11,487] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:31:11.470310+00:00 +[2020-12-20 05:36:33,572] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 05:36:36,116] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 05:36:51,858] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:36:53,773] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:31:53.737328+00:00 +[2020-12-20 05:37:21,014] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:37:23,499] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:32:23.433394+00:00 +[2020-12-20 05:37:46,138] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:37:48,025] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:32:48.017970+00:00 +[2020-12-20 05:38:30,643] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:38:34,274] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:33:34.264289+00:00 +[2020-12-20 05:39:08,092] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:39:08,894] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:34:08.894701+00:00 +[2020-12-20 05:39:41,063] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:39:42,319] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:34:42.306549+00:00 +[2020-12-20 05:40:18,195] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:40:20,322] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:35:20.302634+00:00 +[2020-12-20 05:40:48,221] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:40:48,371] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:35:48.371235+00:00 +[2020-12-20 05:40:59,512] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:41:01,711] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:36:01.665873+00:00 +[2020-12-20 05:41:34,125] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 05:41:37,183] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 05:41:41,698] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:41:41,820] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:36:41.814364+00:00 +[2020-12-20 05:42:08,886] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:42:09,732] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:37:09.732009+00:00 +[2020-12-20 05:42:26,314] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:42:28,807] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:37:28.807352+00:00 +[2020-12-20 05:42:48,583] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:42:48,714] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:37:48.714459+00:00 +[2020-12-20 05:43:00,540] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:43:01,197] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:38:01.086827+00:00 +[2020-12-20 05:43:13,320] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:43:13,330] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:38:13.329985+00:00 +[2020-12-20 05:43:25,443] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:43:26,066] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:38:26.066382+00:00 +[2020-12-20 05:43:57,555] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:44:00,483] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:39:00.474373+00:00 +[2020-12-20 05:44:18,430] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:44:19,040] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:39:19.040143+00:00 +[2020-12-20 05:44:35,303] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:44:37,923] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:39:37.923284+00:00 +[2020-12-20 05:44:55,209] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:44:58,230] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:39:58.215996+00:00 +[2020-12-20 05:45:19,838] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:45:22,309] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:40:22.309753+00:00 +[2020-12-20 05:45:33,845] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:45:33,854] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:40:33.854364+00:00 +[2020-12-20 05:45:46,164] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:45:46,376] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:40:46.376175+00:00 +[2020-12-20 05:46:08,051] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:46:13,937] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:41:13.937324+00:00 +[2020-12-20 05:46:31,450] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:46:31,630] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:41:31.569164+00:00 +[2020-12-20 05:46:34,673] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 05:46:35,799] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 05:46:45,662] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:46:46,883] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:41:46.882918+00:00 +[2020-12-20 05:47:07,950] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:47:08,389] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:42:08.389149+00:00 +[2020-12-20 05:47:20,577] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:47:20,578] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:42:20.578398+00:00 +[2020-12-20 05:47:31,511] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:47:32,067] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:42:32.067760+00:00 +[2020-12-20 05:47:46,736] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:47:46,974] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:42:46.973906+00:00 +[2020-12-20 05:48:12,588] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:48:13,088] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:43:13.088144+00:00 +[2020-12-20 05:48:25,545] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:48:25,961] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:43:25.960854+00:00 +[2020-12-20 05:48:41,002] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:48:41,025] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:43:41.025216+00:00 +[2020-12-20 05:48:52,041] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:48:57,303] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:43:57.206505+00:00 +[2020-12-20 05:49:12,348] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:49:12,406] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:44:12.406022+00:00 +[2020-12-20 05:49:24,697] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:49:24,698] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:44:24.698590+00:00 +[2020-12-20 05:49:34,733] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:49:34,894] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:44:34.894592+00:00 +[2020-12-20 05:49:48,123] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:49:48,511] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:44:48.511040+00:00 +[2020-12-20 05:50:01,810] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:50:02,428] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:45:02.428017+00:00 +[2020-12-20 05:50:16,033] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:50:19,044] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:45:19.016778+00:00 +[2020-12-20 05:50:54,560] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:50:58,066] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:45:58.051744+00:00 +[2020-12-20 05:51:19,735] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:51:19,811] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:46:19.811788+00:00 +[2020-12-20 05:51:31,023] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:51:31,035] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:46:31.034747+00:00 +[2020-12-20 05:51:35,356] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 05:51:38,987] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 05:51:54,290] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:52:04,713] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:47:04.613107+00:00 +[2020-12-20 05:52:19,667] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:52:19,707] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:47:19.694412+00:00 +[2020-12-20 05:52:32,715] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:52:38,155] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:47:38.134127+00:00 +[2020-12-20 05:52:58,686] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:52:59,155] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:47:59.084414+00:00 +[2020-12-20 05:53:11,807] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:53:11,834] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:48:11.833619+00:00 +[2020-12-20 05:53:23,471] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:53:23,526] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:48:23.526581+00:00 +[2020-12-20 05:53:35,358] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:53:35,359] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:48:35.359253+00:00 +[2020-12-20 05:53:45,982] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:53:46,278] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:48:46.278446+00:00 +[2020-12-20 05:53:59,182] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:53:59,798] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:48:59.798157+00:00 +[2020-12-20 05:54:18,997] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:54:19,040] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:49:19.005647+00:00 +[2020-12-20 05:54:30,074] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:54:30,363] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:49:30.363165+00:00 +[2020-12-20 05:54:53,815] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:54:55,496] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:49:55.496283+00:00 +[2020-12-20 05:55:18,870] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:55:19,570] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:50:19.567220+00:00 +[2020-12-20 05:55:47,687] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:55:47,863] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:50:47.863804+00:00 +[2020-12-20 05:55:58,967] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:55:59,313] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:50:59.251073+00:00 +[2020-12-20 05:56:11,944] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:56:12,036] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:51:12.036575+00:00 +[2020-12-20 05:56:24,944] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:56:25,598] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:51:25.437663+00:00 +[2020-12-20 05:56:41,531] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 05:56:42,751] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 05:56:51,521] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:56:51,537] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:51:51.537054+00:00 +[2020-12-20 05:57:03,398] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:57:03,836] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:52:03.835919+00:00 +[2020-12-20 05:57:21,510] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:57:21,583] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:52:21.583732+00:00 +[2020-12-20 05:57:33,248] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:57:33,459] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:52:33.442241+00:00 +[2020-12-20 05:57:44,787] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:57:44,826] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:52:44.825061+00:00 +[2020-12-20 05:57:58,159] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:58:00,484] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:53:00.385117+00:00 +[2020-12-20 05:58:16,687] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:58:16,792] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:53:16.792056+00:00 +[2020-12-20 05:58:35,070] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:58:36,132] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:53:36.132871+00:00 +[2020-12-20 05:58:49,072] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:58:49,841] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:53:49.841563+00:00 +[2020-12-20 05:59:08,693] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:59:09,355] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:54:09.354226+00:00 +[2020-12-20 05:59:20,631] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:59:20,719] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:54:20.687407+00:00 +[2020-12-20 05:59:33,540] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:59:33,548] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:54:33.548557+00:00 +[2020-12-20 05:59:44,284] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:59:44,625] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:54:44.577394+00:00 +[2020-12-20 05:59:57,284] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 05:59:58,514] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:54:57.961315+00:00 +[2020-12-20 06:00:13,765] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:00:13,782] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:55:13.781959+00:00 +[2020-12-20 06:00:24,706] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:00:24,771] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:55:24.771496+00:00 +[2020-12-20 06:00:36,541] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:00:36,909] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:55:36.879893+00:00 +[2020-12-20 06:00:49,613] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:00:50,775] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:55:50.774985+00:00 +[2020-12-20 06:01:03,223] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:01:03,272] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:56:03.271649+00:00 +[2020-12-20 06:01:23,498] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:01:29,122] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:56:28.617519+00:00 +[2020-12-20 06:01:42,123] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 06:01:42,450] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 06:01:51,995] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:01:52,043] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:56:52.043581+00:00 +[2020-12-20 06:02:03,390] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:02:03,460] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:57:03.459905+00:00 +[2020-12-20 06:02:23,089] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:02:23,554] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:57:23.554501+00:00 +[2020-12-20 06:02:44,938] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:02:45,695] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:57:45.533629+00:00 +[2020-12-20 06:03:00,096] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:03:00,876] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:58:00.875619+00:00 +[2020-12-20 06:03:16,162] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:03:18,109] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:58:18.035685+00:00 +[2020-12-20 06:03:36,111] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:03:37,223] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:58:37.178599+00:00 +[2020-12-20 06:03:53,512] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:03:53,727] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:58:53.650946+00:00 +[2020-12-20 06:04:05,684] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:04:05,759] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:59:05.759625+00:00 +[2020-12-20 06:04:19,842] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:04:21,028] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 05:59:20.952222+00:00 +[2020-12-20 06:05:21,725] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:05:22,804] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:00:22.792627+00:00 +[2020-12-20 06:05:35,378] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:05:35,732] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:00:35.732512+00:00 +[2020-12-20 06:05:51,188] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:05:51,190] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:00:51.190084+00:00 +[2020-12-20 06:06:01,400] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:06:01,401] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:01:01.401618+00:00 +[2020-12-20 06:06:12,056] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:06:12,145] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:01:12.133029+00:00 +[2020-12-20 06:06:25,641] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:06:26,006] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:01:26.006233+00:00 +[2020-12-20 06:06:37,635] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:06:37,668] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:01:37.668583+00:00 +[2020-12-20 06:06:42,280] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 06:06:42,997] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 06:07:00,466] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:07:00,667] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:02:00.667161+00:00 +[2020-12-20 06:07:18,502] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:07:20,948] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:02:20.948745+00:00 +[2020-12-20 06:07:37,854] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:07:37,876] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:02:37.876752+00:00 +[2020-12-20 06:08:09,201] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:08:09,467] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:03:09.467301+00:00 +[2020-12-20 06:08:21,867] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:08:21,905] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:03:21.905266+00:00 +[2020-12-20 06:08:34,007] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:08:35,131] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:03:35.131839+00:00 +[2020-12-20 06:08:45,316] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:08:45,317] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:03:45.317482+00:00 +[2020-12-20 06:08:55,359] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:08:55,361] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:03:55.361244+00:00 +[2020-12-20 06:09:05,978] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:09:06,001] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:04:06.001172+00:00 +[2020-12-20 06:09:19,366] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:09:21,114] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:04:21.114116+00:00 +[2020-12-20 06:09:40,577] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:09:42,061] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:04:42.060151+00:00 +[2020-12-20 06:10:05,556] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:10:09,052] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:05:08.971857+00:00 +[2020-12-20 06:10:21,369] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:10:21,535] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:05:21.481393+00:00 +[2020-12-20 06:10:35,260] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:10:35,496] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:05:35.496565+00:00 +[2020-12-20 06:10:48,714] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:10:48,746] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:05:48.746656+00:00 +[2020-12-20 06:11:00,126] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:11:00,147] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:06:00.147366+00:00 +[2020-12-20 06:11:11,420] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:11:11,423] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:06:11.423146+00:00 +[2020-12-20 06:11:22,032] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:11:25,651] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:06:25.651514+00:00 +[2020-12-20 06:11:42,889] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 06:11:44,372] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 06:11:48,109] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:11:48,295] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:06:48.284615+00:00 +[2020-12-20 06:12:07,919] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:12:08,525] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:07:08.524675+00:00 +[2020-12-20 06:12:21,600] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:12:21,606] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:07:21.606590+00:00 +[2020-12-20 06:12:32,113] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:12:32,114] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:07:32.114093+00:00 +[2020-12-20 06:12:42,642] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:12:42,643] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:07:42.643538+00:00 +[2020-12-20 06:12:53,734] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:12:57,633] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:07:57.592685+00:00 +[2020-12-20 06:13:15,810] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:13:15,820] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:08:15.820498+00:00 +[2020-12-20 06:13:26,592] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:13:26,593] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:08:26.593810+00:00 +[2020-12-20 06:13:40,003] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:13:40,019] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:08:40.011888+00:00 +[2020-12-20 06:13:50,893] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:13:50,924] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:08:50.911338+00:00 +[2020-12-20 06:14:02,433] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:14:02,439] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:09:02.439350+00:00 +[2020-12-20 06:14:14,401] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:14:14,406] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:09:14.405916+00:00 +[2020-12-20 06:14:25,810] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:14:27,391] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:09:27.240729+00:00 +[2020-12-20 06:14:41,099] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:14:41,101] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:09:41.101702+00:00 +[2020-12-20 06:14:51,788] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:14:51,804] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:09:51.804190+00:00 +[2020-12-20 06:15:02,653] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:15:02,837] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:10:02.837287+00:00 +[2020-12-20 06:15:14,371] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:15:14,748] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:10:14.748632+00:00 +[2020-12-20 06:15:27,470] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:15:27,658] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:10:27.629403+00:00 +[2020-12-20 06:15:42,760] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:15:42,987] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:10:42.986857+00:00 +[2020-12-20 06:15:54,888] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:15:54,940] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:10:54.939937+00:00 +[2020-12-20 06:16:07,765] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:16:07,978] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:11:07.978416+00:00 +[2020-12-20 06:16:21,260] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:16:21,439] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:11:21.439331+00:00 +[2020-12-20 06:16:32,556] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:16:32,561] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:11:32.561539+00:00 +[2020-12-20 06:16:42,901] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 06:16:43,202] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 06:16:43,714] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:16:43,739] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:11:43.739211+00:00 +[2020-12-20 06:16:54,371] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:16:54,570] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:11:54.570208+00:00 +[2020-12-20 06:17:07,878] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:17:07,887] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:12:07.887708+00:00 +[2020-12-20 06:17:20,473] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:17:21,829] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:12:21.826290+00:00 +[2020-12-20 06:17:42,092] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:17:42,556] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:12:42.548653+00:00 +[2020-12-20 06:17:55,999] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:17:56,125] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:12:56.125126+00:00 +[2020-12-20 06:18:09,477] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:18:10,138] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:13:10.081425+00:00 +[2020-12-20 06:18:23,474] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:18:23,997] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:13:23.995235+00:00 +[2020-12-20 06:18:36,025] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:18:36,026] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:13:36.026274+00:00 +[2020-12-20 06:18:46,066] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:18:46,068] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:13:46.068298+00:00 +[2020-12-20 06:18:56,628] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:18:56,629] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:13:56.629635+00:00 +[2020-12-20 06:19:06,928] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:19:06,930] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:14:06.930461+00:00 +[2020-12-20 06:19:17,547] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:19:17,761] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:14:17.761118+00:00 +[2020-12-20 06:19:28,460] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:19:28,493] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:14:28.489313+00:00 +[2020-12-20 06:19:40,017] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:19:40,036] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:14:40.036884+00:00 +[2020-12-20 06:19:53,179] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:19:57,341] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:14:57.337386+00:00 +[2020-12-20 06:20:10,731] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:20:10,787] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:15:10.787558+00:00 +[2020-12-20 06:20:21,106] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:20:21,226] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:15:21.164418+00:00 +[2020-12-20 06:20:32,318] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:20:32,368] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:15:32.368715+00:00 +[2020-12-20 06:20:53,554] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:20:54,761] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:15:54.754849+00:00 +[2020-12-20 06:21:08,195] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:21:08,202] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:16:08.202870+00:00 +[2020-12-20 06:21:18,692] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:21:18,703] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:16:18.703825+00:00 +[2020-12-20 06:21:35,998] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:21:37,741] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:16:37.740864+00:00 +[2020-12-20 06:21:43,015] {{dag_processing.py:908}} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 06:21:44,291] {{dag_processing.py:911}} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 06:21:52,032] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:21:52,033] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:16:52.033221+00:00 +[2020-12-20 06:22:02,204] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:22:02,245] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:17:02.216600+00:00 +[2020-12-20 06:22:14,175] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:22:14,294] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:17:14.294093+00:00 +[2020-12-20 06:22:25,887] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:22:25,972] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:17:25.972535+00:00 +[2020-12-20 06:22:37,759] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:22:37,761] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:17:37.761502+00:00 +[2020-12-20 06:22:48,234] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:22:48,241] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:17:48.240267+00:00 +[2020-12-20 06:22:58,671] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:22:58,783] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:17:58.783480+00:00 +[2020-12-20 06:23:14,142] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:23:14,149] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:18:14.149755+00:00 +[2020-12-20 06:23:25,616] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:23:25,617] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:18:25.617229+00:00 +[2020-12-20 06:23:35,972] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:23:35,998] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:18:35.998144+00:00 +[2020-12-20 06:23:46,506] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:23:46,711] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:18:46.711013+00:00 +[2020-12-20 06:23:56,940] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:23:56,941] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:18:56.941553+00:00 +[2020-12-20 06:24:08,153] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:24:08,188] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:19:08.188627+00:00 +[2020-12-20 06:24:20,300] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:24:20,301] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:19:20.301709+00:00 +[2020-12-20 06:24:31,392] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:24:31,413] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:19:31.413152+00:00 +[2020-12-20 06:24:43,003] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:24:43,004] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:19:43.004437+00:00 +[2020-12-20 06:24:53,483] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:24:53,486] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:19:53.485286+00:00 +[2020-12-20 06:25:04,206] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:25:04,230] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:20:04.230138+00:00 +[2020-12-20 06:25:18,008] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:25:18,010] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:20:18.010605+00:00 +[2020-12-20 06:25:28,341] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:25:28,452] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:20:28.452606+00:00 +[2020-12-20 06:25:39,655] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:25:39,723] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:20:39.722971+00:00 +[2020-12-20 06:25:50,667] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:25:51,197] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:20:51.184701+00:00 +[2020-12-20 06:26:11,723] {{dag_processing.py:1292}} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 06:26:12,066] {{dag_processing.py:1296}} INFO - Failing jobs without heartbeat after 2020-12-20 06:21:12.065751+00:00 +[2020-12-20 10:33:37,085] {dag_processing.py:821} INFO - Processing files using up to 2 processes at a time +[2020-12-20 10:33:37,357] {dag_processing.py:822} INFO - Process each file at most once every 0 seconds +[2020-12-20 10:33:37,358] {dag_processing.py:824} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 10:33:37,401] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:33:37,420] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:28:37.420378+00:00 +[2020-12-20 10:33:39,131] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ---------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 206 0.24s 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 203 0.37s 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 0 +================================================================================ +[2020-12-20 10:33:39,264] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:33:40,249] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:33:40,267] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:33:41,638] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:33:41,713] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:33:43,222] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:33:43,244] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:33:44,583] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:33:44,609] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:33:45,936] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:33:45,944] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:33:47,321] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:33:47,337] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:33:48,700] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:33:48,704] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:28:48.704389+00:00 +[2020-12-20 10:33:48,896] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:33:48,910] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:33:50,256] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:33:50,269] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:33:51,600] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:33:51,609] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:33:52,779] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:33:52,797] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:33:54,179] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:33:54,203] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:33:55,609] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:33:55,635] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:33:57,003] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:33:57,014] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:33:58,796] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:33:59,027] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:33:59,121] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:28:59.121700+00:00 +[2020-12-20 10:34:00,197] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:34:00,307] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:34:01,328] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:34:01,791] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:34:02,575] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:34:03,067] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:34:03,089] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:34:04,473] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:34:04,499] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:34:06,535] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:34:07,340] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:34:07,344] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:34:08,410] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:34:08,427] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:34:09,806] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:34:09,823] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:34:10,548] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 -1 1.23s 2020-12-20T10:34:04 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 -1 2.99s 2020-12-20T10:34:00 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 431 0.14s 0 -1 1.23s 2020-12-20T10:33:55 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 -1 1.11s 2020-12-20T10:34:01 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 -1 2.01s 2020-12-20T10:34:06 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 -1 1.05s 2020-12-20T10:34:08 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 -1 1.22s 2020-12-20T10:33:57 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 0 -1 1.32s 2020-12-20T10:34:01 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 -1 1.76s 2020-12-20T10:33:58 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 -1 1.36s 2020-12-20T10:34:09 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 0 -1 1.19s 2020-12-20T10:34:02 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 -1 0.44s 2020-12-20T10:34:03 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 0 -1 1.34s 2020-12-20T10:33:57 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 -1 1.37s 2020-12-20T10:34:04 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 -1 1.24s 2020-12-20T10:34:09 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 429 0.27s 0 -1 1.40s 2020-12-20T10:33:55 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 -1 1.20s 2020-12-20T10:34:03 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 -1 1.20s 2020-12-20T10:33:54 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 -1 0.78s 2020-12-20T10:34:07 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 -1 1.36s 2020-12-20T10:33:54 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 -1 1.04s 2020-12-20T10:34:08 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 -1 1.40s 2020-12-20T10:34:00 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 -1 2.58s 2020-12-20T10:34:07 +================================================================================ +[2020-12-20 10:34:10,688] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:34:10,711] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:29:10.711721+00:00 +[2020-12-20 10:34:11,116] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:34:11,132] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:34:12,505] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:34:12,524] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:34:13,809] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:34:13,866] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:34:15,094] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:34:15,109] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:34:16,478] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:34:16,485] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:34:17,557] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:34:17,561] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:34:18,886] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:34:18,888] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:34:20,152] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:34:20,183] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:34:21,622] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:34:22,222] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:29:22.222576+00:00 +[2020-12-20 10:34:22,570] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:34:22,572] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:34:24,087] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:34:24,106] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:34:25,370] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:34:25,379] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:34:26,614] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:34:26,631] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:34:27,880] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:34:27,887] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:34:29,048] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:34:29,057] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:34:30,202] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:34:30,206] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:34:31,371] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:34:31,380] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:34:32,540] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:34:32,545] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:34:32,928] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:34:32,997] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:29:32.996944+00:00 +[2020-12-20 10:34:33,539] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:34:33,922] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:34:34,646] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:34:34,675] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:34:35,986] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:34:36,011] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:34:37,470] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:34:37,531] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:34:39,663] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:34:39,796] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:34:41,339] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:34:41,342] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:34:41,782] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 -1 0.98s 2020-12-20T10:34:33 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 -1 1.15s 2020-12-20T10:34:29 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 0 -1 1.49s 2020-12-20T10:34:41 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 -1 1.14s 2020-12-20T10:34:30 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 -1 1.28s 2020-12-20T10:34:33 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 -1 1.29s 2020-12-20T10:34:35 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 664 0.09s 0 -1 1.23s 2020-12-20T10:34:27 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 0 -1 1.09s 2020-12-20T10:34:30 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 666 0.06s 0 -1 1.15s 2020-12-20T10:34:27 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 -1 1.40s 2020-12-20T10:34:37 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 0 -1 1.16s 2020-12-20T10:34:31 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 -1 1.15s 2020-12-20T10:34:32 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 0 -1 1.31s 2020-12-20T10:34:41 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 -1 1.10s 2020-12-20T10:34:32 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 -1 1.24s 2020-12-20T10:34:37 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 0 -1 1.36s 2020-12-20T10:34:39 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 -1 1.14s 2020-12-20T10:34:31 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 -1 1.11s 2020-12-20T10:34:25 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 -1 0.68s 2020-12-20T10:34:34 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 -1 2.05s 2020-12-20T10:34:39 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 -1 1.20s 2020-12-20T10:34:35 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 -1 1.10s 2020-12-20T10:34:29 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 -1 1.09s 2020-12-20T10:34:34 +================================================================================ +[2020-12-20 10:34:42,813] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:34:42,815] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:34:44,005] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:34:44,338] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:29:44.338031+00:00 +[2020-12-20 10:34:44,812] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:34:44,854] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:34:46,029] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:34:46,225] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:34:48,619] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:34:49,653] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:34:51,331] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:34:52,089] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:34:53,541] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:34:53,601] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:34:54,770] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:34:54,791] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:34:55,087] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:34:55,109] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:29:55.109664+00:00 +[2020-12-20 10:34:55,745] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:34:56,078] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:34:56,082] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:34:56,863] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:34:57,101] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:34:58,277] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:34:58,284] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:34:59,644] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:34:59,695] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:35:01,224] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:35:01,225] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:35:02,279] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:35:02,283] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:35:03,545] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:35:03,547] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:35:04,611] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:35:04,616] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:35:05,686] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:35:05,765] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:35:06,808] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:35:06,903] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:30:06.903809+00:00 +[2020-12-20 10:35:08,618] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:35:08,641] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:35:12,460] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:35:12,516] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:35:13,990] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 -1 1.04s 2020-12-20T10:35:05 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 -1 1.25s 2020-12-20T10:35:01 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 0 -1 1.08s 2020-12-20T10:34:58 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 -1 1.04s 2020-12-20T10:35:02 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 -1 2.74s 2020-12-20T10:35:08 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 -1 3.50s 2020-12-20T10:35:12 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 -1 1.27s 2020-12-20T10:34:59 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 0 -1 1.25s 2020-12-20T10:35:03 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 -1 1.50s 2020-12-20T10:35:01 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 855 0.51s 0 -1 0.32s 2020-12-20T10:34:56 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 0 -1 1.20s 2020-12-20T10:35:03 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 -1 1.05s 2020-12-20T10:35:04 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 0 -1 1.34s 2020-12-20T10:34:59 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 -1 1.06s 2020-12-20T10:35:05 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 -1 0.77s 2020-12-20T10:34:56 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 0 -1 1.17s 2020-12-20T10:34:58 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 -1 1.06s 2020-12-20T10:35:04 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 -1 0.74s 2020-12-20T10:34:56 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 -1 3.65s 2020-12-20T10:35:12 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 -1 2.05s 2020-12-20T10:34:39 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 854 0.82s 0 -1 1.18s 2020-12-20T10:34:56 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 -1 1.05s 2020-12-20T10:35:02 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 -1 2.38s 2020-12-20T10:35:08 +================================================================================ +[2020-12-20 10:35:19,227] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:35:19,228] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:30:19.228847+00:00 +[2020-12-20 10:35:29,509] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:35:29,510] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:30:29.510850+00:00 +[2020-12-20 10:35:29,784] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:35:29,786] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:35:32,475] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:35:32,477] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:35:32,608] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:35:33,586] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:35:33,590] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:35:34,587] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:35:34,590] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:35:35,219] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:35:35,221] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:35:37,743] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:35:37,745] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:35:38,780] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:35:38,782] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:35:40,576] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:35:40,583] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:30:40.583840+00:00 +[2020-12-20 10:35:40,732] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:35:40,734] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:35:41,576] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:35:41,590] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:35:42,125] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:35:42,636] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:35:42,638] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:35:43,153] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:35:43,158] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:35:43,693] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:35:43,749] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:35:44,553] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:35:44,636] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:35:45,347] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 -1 0.48s 2020-12-20T10:35:41 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 -1 0.53s 2020-12-20T10:35:35 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 995 0.02s 0 -1 0.58s 2020-12-20T10:35:33 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 -1 1.03s 2020-12-20T10:35:37 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 -1 0.53s 2020-12-20T10:35:42 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 -1 0.51s 2020-12-20T10:35:43 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 -1 0.97s 2020-12-20T10:35:34 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 0 -1 1.03s 2020-12-20T10:35:38 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 -1 0.62s 2020-12-20T10:35:35 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 -1 0.53s 2020-12-20T10:35:43 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 0 -1 1.02s 2020-12-20T10:35:38 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 -1 0.18s 2020-12-20T10:35:40 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 0 -1 0.99s 2020-12-20T10:35:34 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 -1 0.50s 2020-12-20T10:35:41 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 -1 0.23s 2020-12-20T10:35:43 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 994 0.04s 0 -1 0.60s 2020-12-20T10:35:33 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 -1 0.90s 2020-12-20T10:35:40 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 -1 0.79s 2020-12-20T10:35:44 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 -1 0.51s 2020-12-20T10:35:42 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 -1 0.80s 2020-12-20T10:35:44 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 -1 0.50s 2020-12-20T10:35:43 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 -1 1.05s 2020-12-20T10:35:37 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 -1 1.03s 2020-12-20T10:35:42 +================================================================================ +[2020-12-20 10:35:46,359] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:35:46,559] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:35:47,593] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:35:47,595] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:35:48,635] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:35:48,637] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:35:49,061] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:35:49,063] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:35:49,796] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:35:49,823] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:35:50,526] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:35:50,538] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:35:51,326] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:35:51,356] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:30:51.355834+00:00 +[2020-12-20 10:35:53,796] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:35:53,806] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:35:54,949] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:35:54,952] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:35:56,022] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:35:56,228] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:35:57,364] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:35:57,376] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:36:01,962] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:36:01,964] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:31:01.964521+00:00 +[2020-12-20 10:36:07,019] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:36:07,021] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:36:09,122] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:36:09,132] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:36:10,169] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:36:10,171] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:36:11,207] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:36:12,487] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:36:12,615] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:31:12.615270+00:00 +[2020-12-20 10:36:12,672] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:36:12,675] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:36:15,423] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:36:15,425] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:36:15,505] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 -1 3.18s 2020-12-20T10:35:53 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 -1 1.21s 2020-12-20T10:36:12 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 0 -1 1.03s 2020-12-20T10:36:10 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 -1 2.71s 2020-12-20T10:36:15 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 -1 1.12s 2020-12-20T10:35:54 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 -1 1.04s 2020-12-20T10:35:56 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 -1 2.50s 2020-12-20T10:36:12 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 1154 0.02s 0 -1 0.73s 2020-12-20T10:35:49 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 -1 1.02s 2020-12-20T10:36:11 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 -1 1.07s 2020-12-20T10:35:57 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 1155 0.02s 0 -1 0.72s 2020-12-20T10:35:49 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 -1 0.67s 2020-12-20T10:35:50 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 0 -1 1.02s 2020-12-20T10:36:10 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 -1 3.24s 2020-12-20T10:35:53 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 -1 9.63s 2020-12-20T10:36:07 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 0 -1 1.03s 2020-12-20T10:36:09 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 -1 0.68s 2020-12-20T10:35:50 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 -1 2.10s 2020-12-20T10:36:09 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 -1 1.05s 2020-12-20T10:35:56 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 -1 9.26s 2020-12-20T10:36:07 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 -1 1.12s 2020-12-20T10:35:57 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 -1 2.74s 2020-12-20T10:36:15 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 -1 1.06s 2020-12-20T10:35:54 +================================================================================ +[2020-12-20 10:36:16,520] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:36:16,733] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:36:17,792] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:36:20,824] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:36:20,825] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:36:21,871] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:36:21,873] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:36:22,910] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:36:22,912] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:31:22.912197+00:00 +[2020-12-20 10:36:23,642] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:36:23,644] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:36:24,710] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:36:24,858] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:36:25,900] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:36:25,902] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:36:27,329] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:36:28,324] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:36:28,326] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:36:29,362] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:36:29,364] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:36:30,410] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:36:30,411] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:36:31,451] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:36:31,454] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:36:32,509] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:36:32,510] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:36:34,196] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:36:34,200] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:31:34.200337+00:00 +[2020-12-20 10:36:34,277] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:36:34,283] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:36:35,481] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:36:35,484] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:36:36,908] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:36:36,910] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:36:37,961] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:36:37,963] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:36:39,007] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:36:39,009] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:36:40,046] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:36:40,048] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:36:40,836] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:36:40,838] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:36:41,108] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:36:41,110] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:36:41,879] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:36:42,258] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:36:44,568] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:36:44,571] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:31:44.571214+00:00 +[2020-12-20 10:36:47,595] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:36:47,599] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:36:47,719] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 -1 1.05s 2020-12-20T10:36:35 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 -1 0.75s 2020-12-20T10:36:41 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 0 -1 0.77s 2020-12-20T10:36:40 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 -1 4.24s 2020-12-20T10:36:47 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 -1 1.42s 2020-12-20T10:36:36 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 -1 1.04s 2020-12-20T10:36:37 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 -1 0.26s 2020-12-20T10:36:41 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 1374 0.04s 0 -1 1.05s 2020-12-20T10:36:32 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 -1 0.77s 2020-12-20T10:36:41 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 -1 1.03s 2020-12-20T10:36:39 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 1376 0.02s 0 -1 1.03s 2020-12-20T10:36:32 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 -1 1.15s 2020-12-20T10:36:34 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 0 -1 0.27s 2020-12-20T10:36:41 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 -1 1.19s 2020-12-20T10:36:35 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 -1 1.03s 2020-12-20T10:36:40 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 0 -1 0.78s 2020-12-20T10:36:40 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 -1 1.76s 2020-12-20T10:36:34 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 -1 1.02s 2020-12-20T10:36:40 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 -1 1.05s 2020-12-20T10:36:37 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 -1 1.42s 2020-12-20T10:36:27 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 -1 1.04s 2020-12-20T10:36:39 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 -1 5.18s 2020-12-20T10:36:47 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 -1 1.04s 2020-12-20T10:36:36 +================================================================================ +[2020-12-20 10:36:49,455] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:36:49,457] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:36:51,202] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:36:57,885] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:36:57,889] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:31:57.888917+00:00 +[2020-12-20 10:37:01,944] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:37:01,945] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:37:02,993] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:37:02,998] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:37:04,334] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:37:04,337] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:37:06,223] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:37:06,224] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:37:06,381] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:37:06,382] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:37:07,271] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:37:07,272] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:37:07,511] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:37:07,513] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:37:08,315] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:37:08,321] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:32:08.321365+00:00 +[2020-12-20 10:37:08,407] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:37:08,408] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:37:09,494] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:37:09,497] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:37:11,895] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:37:11,897] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:37:12,937] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:37:12,939] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:37:13,986] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:37:14,006] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:37:15,120] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:37:15,125] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:37:16,264] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:37:16,266] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:37:17,347] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:37:17,349] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:37:18,387] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:37:18,390] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:37:18,501] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 -1 1.03s 2020-12-20T10:37:13 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 -1 0.88s 2020-12-20T10:37:08 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 0 -1 0.79s 2020-12-20T10:37:07 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 -1 1.06s 2020-12-20T10:37:09 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 -1 1.10s 2020-12-20T10:37:15 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 -1 1.08s 2020-12-20T10:37:16 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 -1 0.23s 2020-12-20T10:37:07 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 0 -1 2.40s 2020-12-20T10:37:11 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 -1 0.89s 2020-12-20T10:37:08 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 -1 1.05s 2020-12-20T10:37:17 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 0 -1 2.35s 2020-12-20T10:37:11 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 -1 1.03s 2020-12-20T10:37:12 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 0 -1 0.24s 2020-12-20T10:37:07 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 -1 0.99s 2020-12-20T10:37:13 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 -1 1.04s 2020-12-20T10:37:18 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 0 -1 0.80s 2020-12-20T10:37:07 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 -1 1.04s 2020-12-20T10:37:12 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 1554 0.01s 0 -1 1.02s 2020-12-20T10:36:40 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 -1 1.13s 2020-12-20T10:37:16 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 -1 1.03s 2020-12-20T10:37:18 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 -1 1.08s 2020-12-20T10:37:17 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 -1 1.08s 2020-12-20T10:37:09 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 -1 1.06s 2020-12-20T10:37:15 +================================================================================ +[2020-12-20 10:37:18,530] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:37:18,534] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:32:18.534527+00:00 +[2020-12-20 10:37:18,650] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:37:19,527] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:37:19,529] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:37:19,702] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:37:20,567] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:37:20,569] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:37:20,728] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:37:20,732] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:37:21,617] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:37:21,620] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:37:21,800] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:37:21,801] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:37:22,667] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:37:22,669] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:37:22,839] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:37:22,840] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:37:23,710] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:37:23,714] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:37:23,879] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:37:23,881] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:37:24,774] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:37:24,778] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:37:24,914] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:37:24,916] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:37:25,823] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:37:25,824] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:37:25,962] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:37:26,866] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:37:26,868] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:37:32,210] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:37:32,223] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:32:32.222585+00:00 +[2020-12-20 10:37:34,570] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:37:34,573] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py exited with return code 1. +[2020-12-20 10:37:35,617] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 10:37:35,618] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py exited with return code 1. +[2020-12-20 10:37:36,662] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 10:37:36,666] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py exited with return code 1. +[2020-12-20 10:37:38,690] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py exited with return code 1. +[2020-12-20 10:37:38,692] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py exited with return code 1. +[2020-12-20 10:37:39,725] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py exited with return code 1. +[2020-12-20 10:37:39,727] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py exited with return code 1. +[2020-12-20 10:37:40,940] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 10:37:41,004] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py exited with return code 1. +[2020-12-20 10:37:42,073] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py exited with return code 1. +[2020-12-20 10:37:42,111] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py exited with return code 1. +[2020-12-20 10:37:44,150] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py exited with return code 1. +[2020-12-20 10:37:44,970] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:37:44,972] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:32:44.972222+00:00 +[2020-12-20 10:37:45,210] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py exited with return code 1. +[2020-12-20 10:37:45,211] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py exited with return code 1. +[2020-12-20 10:37:47,087] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py exited with return code 1. +[2020-12-20 10:37:48,535] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py exited with return code 1. +[2020-12-20 10:37:48,556] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py exited with return code 1. +[2020-12-20 10:37:49,585] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 -1 1.03s 2020-12-20T10:37:39 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 -1 2.50s 2020-12-20T10:37:34 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 0 -1 1.23s 2020-12-20T10:37:48 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 -1 1.04s 2020-12-20T10:37:35 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 -1 1.02s 2020-12-20T10:37:39 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 -1 1.04s 2020-12-20T10:37:42 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 1806 0.09s 0 -1 1.03s 2020-12-20T10:37:26 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 0 -1 1.02s 2020-12-20T10:37:35 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 -1 0.90s 2020-12-20T10:37:26 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 -1 1.95s 2020-12-20T10:37:44 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 0 -1 1.04s 2020-12-20T10:37:36 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 -1 1.07s 2020-12-20T10:37:38 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 1804 0.15s 0 -1 0.13s 2020-12-20T10:37:25 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 -1 1.02s 2020-12-20T10:37:38 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 -1 2.66s 2020-12-20T10:37:45 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 0 -1 2.78s 2020-12-20T10:37:48 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 -1 1.03s 2020-12-20T10:37:36 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 -1 1.87s 2020-12-20T10:37:47 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 -1 1.26s 2020-12-20T10:37:40 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 -1 0.94s 2020-12-20T10:37:45 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 -1 1.06s 2020-12-20T10:37:42 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 -1 2.40s 2020-12-20T10:37:34 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 -1 1.20s 2020-12-20T10:37:40 +================================================================================ +[2020-12-20 10:37:50,658] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 10:37:50,660] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py exited with return code 1. +[2020-12-20 10:37:52,059] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py exited with return code 1. +[2020-12-20 10:37:52,062] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py exited with return code 1. +[2020-12-20 10:37:55,090] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 10:37:55,274] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:32:55.274001+00:00 +[2020-12-20 11:02:44,532] {dag_processing.py:821} INFO - Processing files using up to 2 processes at a time +[2020-12-20 11:02:46,741] {dag_processing.py:822} INFO - Process each file at most once every 0 seconds +[2020-12-20 11:02:46,742] {dag_processing.py:824} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 11:02:50,501] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:02:50,683] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:57:50.612283+00:00 +[2020-12-20 11:03:24,489] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ---------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 246 1.47s 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 247 0.48s 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 0 +================================================================================ +[2020-12-20 11:03:25,425] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:03:25,515] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:58:25.510135+00:00 +[2020-12-20 11:03:39,194] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py exited with return code 1. +[2020-12-20 11:03:39,291] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py exited with return code 1. +[2020-12-20 11:03:48,570] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:03:48,613] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:58:48.613416+00:00 +[2020-12-20 11:03:55,390] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py exited with return code 1. +[2020-12-20 11:03:55,464] {dag_processing.py:1197} ERROR - Processor for /opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py exited with return code 1. +[2020-12-20 11:04:06,755] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +--------------------------------------------------------------------------------------------------------------- ----- --------- -------- ---------- -------------- ------------------- +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_subdag_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_python_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_external_task_marker_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only.py 0 -1 15.75s 2020-12-20T11:03:55 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_passing_params_via_test_command.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_short_circuit_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_target_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/test_utils.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_latest_only_with_trigger.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_xcom.py 0 -1 34.38s 2020-12-20T11:03:39 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_http_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/docker_copy_data.py 0 -1 33.38s 2020-12-20T11:03:39 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/tutorial.py 271 1.49s 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_pig_operator.py 272 0.84s 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_complex.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_python_dop_operator_3.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_branch_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_docker_swarm_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_bash_operator.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_skip_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/example_trigger_controller_dag.py 0 0 +/opt/bitnami/python/lib/python3.6/site-packages/airflow/example_dags/subdags/subdag.py 0 -1 15.05s 2020-12-20T11:03:55 +================================================================================ +[2020-12-20 11:04:08,866] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:04:09,138] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 10:59:09.084791+00:00 +[2020-12-20 11:04:17,910] {dag_processing.py:804} INFO - Exiting gracefully upon receiving signal 15 +[2020-12-20 11:04:19,072] {dag_processing.py:1378} INFO - Waiting up to 5 seconds for processes to exit... +[2020-12-20 11:23:24,402] {dag_processing.py:821} INFO - Processing files using up to 2 processes at a time +[2020-12-20 11:23:25,494] {dag_processing.py:822} INFO - Process each file at most once every 0 seconds +[2020-12-20 11:23:25,576] {dag_processing.py:824} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 11:23:26,375] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:23:26,458] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:18:26.437529+00:00 +[2020-12-20 11:24:05,097] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:24:06,300] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:19:06.276328+00:00 +[2020-12-20 11:24:34,418] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:24:36,482] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:19:36.407411+00:00 +[2020-12-20 11:25:14,944] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:25:15,296] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:20:15.286922+00:00 +[2020-12-20 11:25:29,749] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:25:40,380] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:20:40.380734+00:00 +[2020-12-20 11:26:25,238] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:26:26,650] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:21:26.638726+00:00 +[2020-12-20 11:27:05,868] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:27:10,720] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:22:10.478833+00:00 +[2020-12-20 11:27:58,154] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:27:59,463] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:22:59.419656+00:00 +[2020-12-20 11:28:35,225] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 11:28:36,608] {dag_processing.py:911} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 11:28:44,635] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:28:44,944] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:23:44.932737+00:00 +[2020-12-20 11:29:02,005] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:29:17,577] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:24:17.577117+00:00 +[2020-12-20 11:29:35,355] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:29:38,971] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:24:38.971464+00:00 +[2020-12-20 11:29:51,681] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:29:51,682] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:24:51.682584+00:00 +[2020-12-20 11:30:02,317] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:30:02,318] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:25:02.318559+00:00 +[2020-12-20 11:30:13,936] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:30:13,937] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:25:13.937821+00:00 +[2020-12-20 11:30:25,533] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:30:25,562] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:25:25.562337+00:00 +[2020-12-20 11:30:36,314] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:30:36,414] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:25:36.414743+00:00 +[2020-12-20 11:30:48,429] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:30:48,430] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:25:48.430680+00:00 +[2020-12-20 11:30:59,046] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:30:59,907] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:25:59.907246+00:00 +[2020-12-20 11:31:10,795] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:31:10,829] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:26:10.828816+00:00 +[2020-12-20 11:31:22,881] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:31:22,965] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:26:22.959943+00:00 +[2020-12-20 11:31:34,654] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:31:34,655] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:26:34.655683+00:00 +[2020-12-20 11:31:44,804] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:31:45,059] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:26:45.001521+00:00 +[2020-12-20 11:31:56,943] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:31:57,444] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:26:57.390948+00:00 +[2020-12-20 11:32:10,370] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:32:11,895] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:27:11.895491+00:00 +[2020-12-20 11:32:23,854] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:32:23,855] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:27:23.855495+00:00 +[2020-12-20 11:32:34,030] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:32:34,103] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:27:34.103699+00:00 +[2020-12-20 11:32:47,457] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:32:47,778] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:27:47.774406+00:00 +[2020-12-20 11:32:59,954] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:33:05,156] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:28:05.156120+00:00 +[2020-12-20 11:33:22,272] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:33:22,534] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:28:22.529154+00:00 +[2020-12-20 11:33:34,626] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:33:34,627] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:28:34.627492+00:00 +[2020-12-20 11:33:35,827] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 11:33:49,103] {dag_processing.py:911} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 11:33:50,294] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:33:50,395] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:28:50.362865+00:00 +[2020-12-20 11:34:02,030] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:34:02,639] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:29:02.639415+00:00 +[2020-12-20 11:34:13,372] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:34:13,414] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:29:13.414204+00:00 +[2020-12-20 11:34:23,904] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:34:23,909] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:29:23.908855+00:00 +[2020-12-20 11:34:36,093] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:34:36,234] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:29:36.226995+00:00 +[2020-12-20 11:34:47,284] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:34:47,285] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:29:47.285385+00:00 +[2020-12-20 11:34:58,124] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:34:58,125] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:29:58.125513+00:00 +[2020-12-20 11:35:09,805] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:35:09,904] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:30:09.888678+00:00 +[2020-12-20 11:35:21,248] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:35:25,406] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:30:25.283307+00:00 +[2020-12-20 11:35:47,777] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:35:47,866] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:30:47.866677+00:00 +[2020-12-20 11:35:59,059] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:35:59,824] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:30:59.824806+00:00 +[2020-12-20 11:36:12,272] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:36:12,273] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:31:12.273339+00:00 +[2020-12-20 11:36:22,412] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:36:22,437] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:31:22.437116+00:00 +[2020-12-20 11:36:32,841] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:36:33,073] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:31:33.058172+00:00 +[2020-12-20 11:37:26,468] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:37:35,510] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:32:35.493588+00:00 +[2020-12-20 11:37:53,100] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:37:55,214] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:32:55.177568+00:00 +[2020-12-20 11:38:26,287] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:38:26,446] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:33:26.446489+00:00 +[2020-12-20 11:38:36,187] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 11:38:38,680] {dag_processing.py:911} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 11:38:39,846] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:38:39,869] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:33:39.869780+00:00 +[2020-12-20 11:38:50,719] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:38:50,916] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:33:50.890287+00:00 +[2020-12-20 11:39:02,991] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:39:03,609] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:34:03.609822+00:00 +[2020-12-20 11:39:16,378] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:39:16,379] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:34:16.379493+00:00 +[2020-12-20 11:39:27,499] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:39:28,171] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:34:28.170885+00:00 +[2020-12-20 11:39:41,519] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:39:41,520] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:34:41.520023+00:00 +[2020-12-20 11:39:51,906] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:39:51,907] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:34:51.907382+00:00 +[2020-12-20 11:40:03,191] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:40:03,192] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:35:03.192490+00:00 +[2020-12-20 11:40:17,932] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:40:17,934] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:35:17.934615+00:00 +[2020-12-20 11:40:28,521] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:40:28,525] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:35:28.525413+00:00 +[2020-12-20 11:40:39,855] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:40:40,085] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:35:40.057047+00:00 +[2020-12-20 11:40:52,166] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:40:52,167] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:35:52.167608+00:00 +[2020-12-20 11:41:02,500] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:41:02,501] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:36:02.501442+00:00 +[2020-12-20 11:41:12,758] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:41:12,771] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:36:12.771160+00:00 +[2020-12-20 11:41:27,052] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:41:34,037] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:36:34.037613+00:00 +[2020-12-20 11:42:00,008] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:42:00,213] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:37:00.116787+00:00 +[2020-12-20 11:42:12,049] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:42:12,050] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:37:12.050634+00:00 +[2020-12-20 11:42:22,794] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:42:22,832] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:37:22.816293+00:00 +[2020-12-20 11:42:34,043] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:42:34,218] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:37:34.218257+00:00 +[2020-12-20 11:42:46,588] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:42:46,594] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:37:46.593840+00:00 +[2020-12-20 11:43:01,714] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:43:01,903] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:38:01.884655+00:00 +[2020-12-20 11:43:13,536] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:43:13,634] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:38:13.634589+00:00 +[2020-12-20 11:43:24,556] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:43:24,823] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:38:24.823339+00:00 +[2020-12-20 11:43:34,864] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:43:34,865] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:38:34.865600+00:00 +[2020-12-20 11:43:37,358] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 11:43:47,041] {dag_processing.py:911} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 11:43:49,283] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:43:49,483] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:38:49.482926+00:00 +[2020-12-20 11:44:01,128] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:44:01,178] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:39:01.178062+00:00 +[2020-12-20 11:44:13,317] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:44:13,820] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:39:13.819935+00:00 +[2020-12-20 11:45:15,459] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:45:15,771] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:40:15.755252+00:00 +[2020-12-20 11:45:27,787] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:45:27,793] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:40:27.793307+00:00 +[2020-12-20 11:45:38,112] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:45:38,145] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:40:38.142010+00:00 +[2020-12-20 11:45:48,646] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:45:49,359] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:40:49.359820+00:00 +[2020-12-20 11:46:00,814] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:46:00,815] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:41:00.815443+00:00 +[2020-12-20 11:46:11,007] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:46:11,023] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:41:11.020742+00:00 +[2020-12-20 11:46:21,798] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:46:21,799] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:41:21.799250+00:00 +[2020-12-20 11:46:31,851] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:46:31,858] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:41:31.856360+00:00 +[2020-12-20 11:46:42,379] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:46:42,388] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:41:42.388034+00:00 +[2020-12-20 11:46:58,092] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:47:11,216] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:42:11.212092+00:00 +[2020-12-20 11:47:29,627] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:47:29,629] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:42:29.629530+00:00 +[2020-12-20 11:47:40,179] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:47:40,182] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:42:40.182287+00:00 +[2020-12-20 11:47:50,919] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:47:50,921] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:42:50.921091+00:00 +[2020-12-20 11:48:03,413] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:48:03,415] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:43:03.414913+00:00 +[2020-12-20 11:48:13,670] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:48:13,675] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:43:13.674967+00:00 +[2020-12-20 11:48:24,084] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:48:24,151] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:43:24.151390+00:00 +[2020-12-20 11:48:35,224] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:48:35,225] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:43:35.225707+00:00 +[2020-12-20 11:48:37,394] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 11:48:56,505] {dag_processing.py:911} INFO - There are 0 files in /usr/local/airflow/dags +[2020-12-20 11:48:57,392] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:48:57,393] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:43:57.393640+00:00 +[2020-12-20 11:49:07,969] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:49:08,033] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:44:08.022391+00:00 +[2020-12-20 11:49:18,682] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:49:21,634] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:44:21.634088+00:00 +[2020-12-20 11:49:39,579] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:49:47,954] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:44:47.711380+00:00 +[2020-12-20 11:50:11,812] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:50:16,762] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:45:16.762525+00:00 +[2020-12-20 11:50:41,763] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:50:41,794] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:45:41.794520+00:00 +[2020-12-20 11:50:52,286] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:50:52,297] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:45:52.297817+00:00 +[2020-12-20 11:51:02,603] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:51:02,951] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:46:02.951774+00:00 +[2020-12-20 11:51:13,202] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:51:13,204] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:46:13.203913+00:00 +[2020-12-20 11:51:23,304] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:51:23,345] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:46:23.345698+00:00 +[2020-12-20 11:51:33,853] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:51:33,869] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:46:33.868981+00:00 +[2020-12-20 11:51:44,524] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:51:44,768] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:46:44.768587+00:00 +[2020-12-20 11:51:54,918] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:51:54,920] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:46:54.920243+00:00 +[2020-12-20 11:52:05,175] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:52:05,188] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:47:05.188245+00:00 +[2020-12-20 11:52:15,832] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:52:16,390] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:47:16.389761+00:00 +[2020-12-20 11:52:45,902] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:52:45,980] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:47:45.980001+00:00 +[2020-12-20 11:52:56,513] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:52:56,854] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:47:56.845969+00:00 +[2020-12-20 11:53:07,542] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:53:07,932] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:48:07.928087+00:00 +[2020-12-20 11:53:18,646] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:53:18,660] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:48:18.660660+00:00 +[2020-12-20 11:53:29,427] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:53:29,489] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:48:29.464586+00:00 +[2020-12-20 11:53:37,538] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 11:53:44,661] {dag_processing.py:911} INFO - There are 1 files in /usr/local/airflow/dags +[2020-12-20 11:53:46,951] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:53:46,993] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:48:46.993331+00:00 +[2020-12-20 11:53:56,033] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ---------- +/usr/local/airflow/dags/dummy_dag.py 466 0.29s 0 0 +================================================================================ +[2020-12-20 11:53:58,125] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:53:58,127] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:48:58.127540+00:00 +[2020-12-20 11:54:15,218] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:54:15,305] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:49:15.305561+00:00 +[2020-12-20 11:54:26,214] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:54:26,225] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:49:26.224269+00:00 +[2020-12-20 11:54:28,421] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ---------- +/usr/local/airflow/dags/dummy_dag.py 466 40.08s 0 0 +================================================================================ +[2020-12-20 11:54:38,139] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:54:38,263] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:49:38.263651+00:00 +[2020-12-20 11:54:53,798] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:54:54,286] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:49:54.285828+00:00 +[2020-12-20 11:55:03,756] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 476 21.66s 0 0 48.57s 2020-12-20T11:54:36 +================================================================================ +[2020-12-20 11:55:08,659] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:55:08,660] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:50:08.660204+00:00 +[2020-12-20 11:55:18,839] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:55:18,886] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:50:18.854957+00:00 +[2020-12-20 11:55:30,126] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:55:30,154] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:50:30.154396+00:00 +[2020-12-20 11:55:35,336] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 506 2.24s 0 0 7.27s 2020-12-20T11:55:32 +================================================================================ +[2020-12-20 11:55:42,480] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:55:42,540] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:50:42.540077+00:00 +[2020-12-20 11:55:54,246] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:55:54,271] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:50:54.265609+00:00 +[2020-12-20 11:56:05,397] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:56:05,420] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:51:05.420623+00:00 +[2020-12-20 11:56:06,578] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 546 0.17s 0 0 3.75s 2020-12-20T11:56:06 +================================================================================ +[2020-12-20 11:56:21,208] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:56:30,119] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:51:29.787135+00:00 +[2020-12-20 11:56:41,116] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 561 0.17s 0 0 30.34s 2020-12-20T11:56:40 +================================================================================ +[2020-12-20 11:56:50,589] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:56:50,590] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:51:50.590077+00:00 +[2020-12-20 11:57:11,975] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 561 31.33s 0 0 30.34s 2020-12-20T11:56:40 +================================================================================ +[2020-12-20 11:57:20,314] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:57:20,349] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:52:20.349473+00:00 +[2020-12-20 11:57:38,873] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 11:57:39,115] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 11:52:39.114871+00:00 +[2020-12-20 11:57:41,895] {dag_processing.py:804} INFO - Exiting gracefully upon receiving signal 15 +[2020-12-20 11:57:41,897] {dag_processing.py:804} INFO - Exiting gracefully upon receiving signal 15 +[2020-12-20 11:57:42,158] {dag_processing.py:804} INFO - Exiting gracefully upon receiving signal 15 +[2020-12-20 11:57:44,052] {dag_processing.py:1378} INFO - Waiting up to 5 seconds for processes to exit... +[2020-12-20 12:59:35,179] {dag_processing.py:821} INFO - Processing files using up to 2 processes at a time +[2020-12-20 12:59:35,360] {dag_processing.py:822} INFO - Process each file at most once every 0 seconds +[2020-12-20 12:59:35,941] {dag_processing.py:824} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 12:59:38,433] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 12:59:38,789] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:54:38.789658+00:00 +[2020-12-20 13:00:14,427] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ---------- +/usr/local/airflow/dags/dummy_dag.py 326 0.66s 0 0 +================================================================================ +[2020-12-20 13:00:19,833] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:00:20,223] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:55:19.834176+00:00 +[2020-12-20 13:00:32,315] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:00:32,315] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:55:32.315835+00:00 +[2020-12-20 13:00:43,307] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:00:43,333] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:55:43.332966+00:00 +[2020-12-20 13:00:44,801] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ---------- +/usr/local/airflow/dags/dummy_dag.py 326 34.46s 0 0 +================================================================================ +[2020-12-20 13:00:54,167] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:00:54,194] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:55:54.194619+00:00 +[2020-12-20 13:01:08,083] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:01:10,821] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:56:10.820815+00:00 +[2020-12-20 13:01:28,192] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 341 13.23s 0 0 13.91s 2020-12-20T13:01:06 +================================================================================ +[2020-12-20 13:01:30,286] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:01:30,295] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:56:30.295777+00:00 +[2020-12-20 13:01:41,417] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:01:41,805] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:56:41.804487+00:00 +[2020-12-20 13:02:05,313] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 361 8.11s 0 0 14.96s 2020-12-20T13:01:50 +================================================================================ +[2020-12-20 13:02:05,537] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:02:05,581] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:57:05.565971+00:00 +[2020-12-20 13:02:18,388] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:02:18,502] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:57:18.476584+00:00 +[2020-12-20 13:02:30,342] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:02:30,546] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:57:30.545668+00:00 +[2020-12-20 13:02:50,749] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 377 14.19s 0 0 8.68s 2020-12-20T13:02:26 +================================================================================ +[2020-12-20 13:02:57,860] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:02:57,947] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:57:57.931740+00:00 +[2020-12-20 13:03:10,819] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:03:10,934] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:58:10.933939+00:00 +[2020-12-20 13:03:23,791] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:03:23,962] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:58:23.961942+00:00 +[2020-12-20 13:03:34,489] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 387 4.17s 0 0 55.84s 2020-12-20T13:03:22 +================================================================================ +[2020-12-20 13:03:36,645] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:03:36,691] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:58:36.678260+00:00 +[2020-12-20 13:03:48,280] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:03:48,290] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:58:48.289997+00:00 +[2020-12-20 13:03:59,767] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:04:00,116] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:59:00.115896+00:00 +[2020-12-20 13:04:16,537] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 387 50.02s 0 0 55.84s 2020-12-20T13:03:22 +================================================================================ +[2020-12-20 13:04:17,589] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 387 started at 2020-12-20T13:03:22.848866+00:00 has timed out, killing it. +[2020-12-20 13:04:19,382] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 387 started at 2020-12-20T13:03:22.848866+00:00 has timed out, killing it. +[2020-12-20 13:04:20,414] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 387 started at 2020-12-20T13:03:22.848866+00:00 has timed out, killing it. +[2020-12-20 13:04:20,810] {dag_processing.py:1197} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py exited with return code -9. +[2020-12-20 13:04:22,453] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:04:22,669] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:59:22.636883+00:00 +[2020-12-20 13:04:34,964] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 13:04:35,725] {dag_processing.py:911} INFO - There are 1 files in /usr/local/airflow/dags +[2020-12-20 13:04:36,493] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:04:36,565] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 12:59:36.516734+00:00 +[2020-12-20 13:05:19,135] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 410 7.84s 0 0 35.72s 2020-12-20T13:04:57 +================================================================================ +[2020-12-20 13:05:19,740] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:05:19,792] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:00:19.785117+00:00 +[2020-12-20 13:05:35,180] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:05:36,153] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:00:36.152974+00:00 +[2020-12-20 13:05:48,188] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:05:48,191] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:00:48.191313+00:00 +[2020-12-20 13:05:50,033] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 410 started at 2020-12-20T13:04:59.762304+00:00 has timed out, killing it. +[2020-12-20 13:05:53,476] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 410 53.14s 0 0 35.72s 2020-12-20T13:04:57 +================================================================================ +[2020-12-20 13:05:53,593] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 410 started at 2020-12-20T13:04:59.762304+00:00 has timed out, killing it. +[2020-12-20 13:05:53,729] {dag_processing.py:1197} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py exited with return code -9. +[2020-12-20 13:05:59,441] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:05:59,519] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:00:59.518918+00:00 +[2020-12-20 13:06:10,929] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:06:11,292] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:01:11.272717+00:00 +[2020-12-20 13:06:29,924] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 423 22.14s 0 0 8.20s 2020-12-20T13:06:02 +================================================================================ +[2020-12-20 13:06:33,673] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:06:33,868] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:01:33.675853+00:00 +[2020-12-20 13:06:52,141] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 423 started at 2020-12-20T13:06:02.099091+00:00 has timed out, killing it. +[2020-12-20 13:06:58,744] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:06:59,033] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:01:59.033509+00:00 +[2020-12-20 13:07:00,733] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 423 started at 2020-12-20T13:06:02.099091+00:00 has timed out, killing it. +[2020-12-20 13:07:01,264] {dag_processing.py:1197} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py exited with return code -9. +[2020-12-20 13:07:04,285] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 436 1.76s 0 -1 59.07s 2020-12-20T13:07:01 +================================================================================ +[2020-12-20 13:07:10,664] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:07:10,727] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:02:10.698703+00:00 +[2020-12-20 13:07:23,577] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:07:24,023] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:02:24.021916+00:00 +[2020-12-20 13:07:34,835] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:07:34,837] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:02:34.837125+00:00 +[2020-12-20 13:07:38,910] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 436 32.81s 0 -1 59.07s 2020-12-20T13:07:01 +================================================================================ +[2020-12-20 13:07:45,154] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:07:45,159] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:02:45.159522+00:00 +[2020-12-20 13:07:52,469] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 436 started at 2020-12-20T13:07:02.182725+00:00 has timed out, killing it. +[2020-12-20 13:07:53,555] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 436 started at 2020-12-20T13:07:02.182725+00:00 has timed out, killing it. +[2020-12-20 13:07:54,436] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 436 started at 2020-12-20T13:07:02.182725+00:00 has timed out, killing it. +[2020-12-20 13:07:54,521] {dag_processing.py:1197} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py exited with return code -9. +[2020-12-20 13:07:55,531] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:07:55,658] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:02:55.658214+00:00 +[2020-12-20 13:08:09,789] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 449 14.18s 0 -1 52.32s 2020-12-20T13:07:54 +================================================================================ +[2020-12-20 13:08:09,946] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:08:10,015] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:03:09.965248+00:00 +[2020-12-20 13:08:21,781] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:08:21,789] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:03:21.789655+00:00 +[2020-12-20 13:08:32,180] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:08:32,193] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:03:32.193673+00:00 +[2020-12-20 13:08:40,687] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 464 6.36s 0 0 21.91s 2020-12-20T13:08:33 +================================================================================ +[2020-12-20 13:08:42,940] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:08:42,967] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:03:42.961452+00:00 +[2020-12-20 13:09:00,812] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:09:00,813] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:04:00.813584+00:00 +[2020-12-20 13:09:10,929] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:09:10,930] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:04:10.930798+00:00 +[2020-12-20 13:09:12,688] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 464 37.92s 0 0 21.91s 2020-12-20T13:08:33 +================================================================================ +[2020-12-20 13:09:22,227] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:09:22,256] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:04:22.256309+00:00 +[2020-12-20 13:09:24,346] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 464 started at 2020-12-20T13:08:34.029769+00:00 has timed out, killing it. +[2020-12-20 13:09:34,992] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:09:34,994] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:04:34.994396+00:00 +[2020-12-20 13:09:41,260] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 13:09:50,206] {dag_processing.py:911} INFO - There are 1 files in /usr/local/airflow/dags +[2020-12-20 13:09:53,015] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:09:53,154] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:04:53.154197+00:00 +[2020-12-20 13:09:56,384] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 478 28.45s 0 0 51.65s 2020-12-20T13:09:25 +================================================================================ +[2020-12-20 13:10:04,996] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:10:05,198] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:05:05.192496+00:00 +[2020-12-20 13:10:16,682] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 478 started at 2020-12-20T13:09:26.047038+00:00 has timed out, killing it. +[2020-12-20 13:10:20,389] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:10:20,428] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:05:20.428829+00:00 +[2020-12-20 13:10:22,017] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 478 started at 2020-12-20T13:09:26.047038+00:00 has timed out, killing it. +[2020-12-20 13:10:25,187] {dag_processing.py:1197} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py exited with return code -9. +[2020-12-20 13:10:37,172] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 486 1.03s 0 -1 58.67s 2020-12-20T13:10:24 +================================================================================ +[2020-12-20 13:10:37,608] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:10:37,734] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:05:37.734722+00:00 +[2020-12-20 13:10:51,087] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:10:51,323] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:05:51.307638+00:00 +[2020-12-20 13:11:02,929] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:11:02,930] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:06:02.930261+00:00 +[2020-12-20 13:11:10,056] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 486 33.54s 0 -1 58.67s 2020-12-20T13:10:24 +================================================================================ +[2020-12-20 13:11:14,075] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:11:14,080] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:06:14.080129+00:00 +[2020-12-20 13:11:24,596] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:11:24,623] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:06:24.623020+00:00 +[2020-12-20 13:11:27,276] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 486 started at 2020-12-20T13:10:34.673254+00:00 has timed out, killing it. +[2020-12-20 13:11:29,816] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 486 started at 2020-12-20T13:10:34.673254+00:00 has timed out, killing it. +[2020-12-20 13:11:30,391] {dag_processing.py:1197} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py exited with return code -9. +[2020-12-20 13:11:36,547] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:11:36,635] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:06:36.635542+00:00 +[2020-12-20 13:11:40,792] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 500 9.82s 0 -1 55.69s 2020-12-20T13:11:30 +================================================================================ +[2020-12-20 13:11:49,802] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:11:50,049] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:06:50.049052+00:00 +[2020-12-20 13:12:15,993] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 510 0.38s 0 0 44.03s 2020-12-20T13:12:14 +================================================================================ +[2020-12-20 13:12:16,368] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:12:16,398] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:07:16.389406+00:00 +[2020-12-20 13:12:28,695] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:12:28,842] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:07:28.841961+00:00 +[2020-12-20 13:12:39,092] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:12:39,095] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:07:39.095737+00:00 +[2020-12-20 13:12:46,963] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 510 31.29s 0 0 44.03s 2020-12-20T13:12:14 +================================================================================ +[2020-12-20 13:12:49,419] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:12:49,429] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:07:49.428865+00:00 +[2020-12-20 13:13:00,744] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:13:01,137] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:08:01.137500+00:00 +[2020-12-20 13:13:05,067] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 510 started at 2020-12-20T13:12:15.061113+00:00 has timed out, killing it. +[2020-12-20 13:13:12,221] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:13:12,304] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:08:12.304437+00:00 +[2020-12-20 13:13:14,271] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 510 started at 2020-12-20T13:12:15.061113+00:00 has timed out, killing it. +[2020-12-20 13:13:14,567] {dag_processing.py:1197} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py exited with return code -9. +[2020-12-20 13:13:19,271] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 523 2.50s 0 -1 59.47s 2020-12-20T13:13:14 +================================================================================ +[2020-12-20 13:13:24,094] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:13:24,108] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:08:24.104520+00:00 +[2020-12-20 13:13:37,864] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:13:40,626] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:08:40.626167+00:00 +[2020-12-20 13:13:53,630] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 523 37.05s 0 -1 59.47s 2020-12-20T13:13:14 +================================================================================ +[2020-12-20 13:14:03,799] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:14:03,982] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:09:03.959908+00:00 +[2020-12-20 13:14:28,302] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 533 21.40s 0 0 47.38s 2020-12-20T13:14:03 +================================================================================ +[2020-12-20 13:14:33,186] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:14:33,187] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:09:33.187737+00:00 +[2020-12-20 13:14:40,285] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 13:14:41,395] {dag_processing.py:911} INFO - There are 1 files in /usr/local/airflow/dags +[2020-12-20 13:14:44,093] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:14:44,331] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:09:44.308565+00:00 +[2020-12-20 13:14:57,399] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:14:57,400] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:09:57.400683+00:00 +[2020-12-20 13:15:04,385] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 543 18.05s 0 0 39.60s 2020-12-20T13:14:42 +================================================================================ +[2020-12-20 13:15:07,667] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:15:07,713] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:10:07.713530+00:00 +[2020-12-20 13:15:20,040] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:15:20,112] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:10:20.098163+00:00 +[2020-12-20 13:15:31,169] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:15:33,111] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:10:33.106059+00:00 +[2020-12-20 13:15:45,285] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 553 22.86s 0 0 37.73s 2020-12-20T13:15:20 +================================================================================ +[2020-12-20 13:15:53,690] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:15:53,696] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:10:53.696587+00:00 +[2020-12-20 13:16:04,666] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:16:04,673] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:11:04.673259+00:00 +[2020-12-20 13:16:15,256] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:16:15,257] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:11:15.257578+00:00 +[2020-12-20 13:16:16,250] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 563 14.53s 0 0 40.13s 2020-12-20T13:16:00 +================================================================================ +[2020-12-20 13:16:25,835] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:16:25,836] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:11:25.836577+00:00 +[2020-12-20 13:16:36,668] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:16:37,002] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:11:36.999677+00:00 +[2020-12-20 13:16:49,065] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 578 0.70s 0 0 44.74s 2020-12-20T13:16:45 +================================================================================ +[2020-12-20 13:16:50,130] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:16:50,132] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:11:50.132289+00:00 +[2020-12-20 13:17:01,005] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:17:01,144] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:12:01.144594+00:00 +[2020-12-20 13:17:14,050] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:17:14,248] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:12:14.248003+00:00 +[2020-12-20 13:17:25,022] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 588 0.51s 0 0 35.59s 2020-12-20T13:17:22 +================================================================================ +[2020-12-20 13:17:28,412] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:17:28,427] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:12:28.426891+00:00 +[2020-12-20 13:17:38,768] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:17:38,877] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:12:38.877174+00:00 +[2020-12-20 13:17:51,450] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:17:52,234] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:12:52.167220+00:00 +[2020-12-20 13:17:58,060] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 598 10.79s 0 0 23.12s 2020-12-20T13:17:45 +================================================================================ +[2020-12-20 13:18:06,196] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:18:06,201] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:13:06.201501+00:00 +[2020-12-20 13:18:17,553] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:18:18,509] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:13:18.489897+00:00 +[2020-12-20 13:18:29,995] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 608 1.89s 0 0 40.76s 2020-12-20T13:18:26 +================================================================================ +[2020-12-20 13:18:36,370] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:18:36,476] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:13:36.448756+00:00 +[2020-12-20 13:18:47,359] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:18:47,375] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:13:47.375366+00:00 +[2020-12-20 13:19:01,400] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 608 33.36s 0 0 40.76s 2020-12-20T13:18:26 +================================================================================ +[2020-12-20 13:19:02,540] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:19:02,542] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:14:02.542226+00:00 +[2020-12-20 13:19:13,273] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:19:13,297] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:14:13.297808+00:00 +[2020-12-20 13:19:27,203] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:19:27,216] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:14:27.209677+00:00 +[2020-12-20 13:19:34,070] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 619 22.82s 0 0 42.28s 2020-12-20T13:19:09 +================================================================================ +[2020-12-20 13:19:39,211] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:19:39,213] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:14:39.213148+00:00 +[2020-12-20 13:19:41,100] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 13:19:42,416] {dag_processing.py:911} INFO - There are 1 files in /usr/local/airflow/dags +[2020-12-20 13:19:50,344] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:19:50,581] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:14:50.578572+00:00 +[2020-12-20 13:20:02,925] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:20:02,926] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:15:02.926462+00:00 +[2020-12-20 13:20:07,401] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 629 16.24s 0 0 39.03s 2020-12-20T13:19:48 +================================================================================ +[2020-12-20 13:20:13,534] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:20:13,546] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:15:13.546290+00:00 +[2020-12-20 13:20:24,183] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:20:24,732] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:15:24.714003+00:00 +[2020-12-20 13:20:48,053] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 629 started at 2020-12-20T13:19:48.816613+00:00 has timed out, killing it. +[2020-12-20 13:20:49,828] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 644 0.39s 0 0 59.45s 2020-12-20T13:20:48 +================================================================================ +[2020-12-20 13:20:58,512] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:20:58,546] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:15:58.531494+00:00 +[2020-12-20 13:21:23,388] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 644 34.04s 0 0 59.45s 2020-12-20T13:20:48 +================================================================================ +[2020-12-20 13:21:32,435] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:21:32,511] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:16:32.455813+00:00 +[2020-12-20 13:21:44,718] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:21:44,719] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:16:44.719767+00:00 +[2020-12-20 13:21:54,050] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 654 25.93s 0 0 39.36s 2020-12-20T13:21:27 +================================================================================ +[2020-12-20 13:21:55,052] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:21:55,053] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:16:55.053814+00:00 +[2020-12-20 13:41:20,061] {dag_processing.py:821} INFO - Processing files using up to 2 processes at a time +[2020-12-20 13:41:20,281] {dag_processing.py:822} INFO - Process each file at most once every 0 seconds +[2020-12-20 13:41:20,326] {dag_processing.py:824} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 13:41:21,585] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:41:21,729] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:36:21.729010+00:00 +[2020-12-20 13:41:43,233] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ---------- +/usr/local/airflow/dags/dummy_dag.py 225 0.56s 0 0 +================================================================================ +[2020-12-20 13:41:44,977] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:41:45,034] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:36:45.033877+00:00 +[2020-12-20 13:41:58,325] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:41:58,621] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:36:58.621779+00:00 +[2020-12-20 13:42:17,861] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 235 2.47s 0 0 37.85s 2020-12-20T13:42:12 +================================================================================ +[2020-12-20 13:42:18,655] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:42:18,821] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:37:18.821541+00:00 +[2020-12-20 13:42:32,834] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:42:33,004] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:37:33.004094+00:00 +[2020-12-20 13:42:43,164] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:42:43,165] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:37:43.165605+00:00 +[2020-12-20 13:42:51,440] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 235 35.93s 0 0 37.85s 2020-12-20T13:42:12 +================================================================================ +[2020-12-20 13:42:53,454] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:42:53,455] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:37:53.455671+00:00 +[2020-12-20 13:43:03,871] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:43:03,902] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:38:03.902384+00:00 +[2020-12-20 13:43:05,446] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 235 started at 2020-12-20T13:42:13.284468+00:00 has timed out, killing it. +[2020-12-20 13:43:06,708] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 235 started at 2020-12-20T13:42:13.284468+00:00 has timed out, killing it. +[2020-12-20 13:43:06,995] {dag_processing.py:1197} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py exited with return code -9. +[2020-12-20 13:43:15,454] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:43:15,583] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:38:15.539804+00:00 +[2020-12-20 13:43:22,222] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 243 14.37s 0 -1 53.68s 2020-12-20T13:43:06 +================================================================================ +[2020-12-20 13:43:28,110] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:43:28,397] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:38:28.377790+00:00 +[2020-12-20 13:43:39,946] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:43:40,160] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:38:40.038422+00:00 +[2020-12-20 13:43:53,477] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 252 16.66s 0 0 28.01s 2020-12-20T13:43:35 +================================================================================ +[2020-12-20 13:44:00,389] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:44:00,569] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:39:00.559676+00:00 +[2020-12-20 13:44:12,926] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:44:12,964] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:39:12.964283+00:00 +[2020-12-20 13:44:25,693] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 252 48.34s 0 0 28.01s 2020-12-20T13:43:35 +================================================================================ +[2020-12-20 13:44:26,893] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:44:27,116] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:39:27.035594+00:00 +[2020-12-20 13:44:33,406] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 252 started at 2020-12-20T13:43:35.807796+00:00 has timed out, killing it. +[2020-12-20 13:44:43,334] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:44:43,473] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:39:43.433958+00:00 +[2020-12-20 13:44:57,395] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 261 22.56s 0 0 58.35s 2020-12-20T13:44:34 +================================================================================ +[2020-12-20 13:44:57,471] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:44:57,523] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:39:57.500836+00:00 +[2020-12-20 13:45:08,643] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:45:08,724] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:40:08.724551+00:00 +[2020-12-20 13:45:20,266] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:45:20,833] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:40:20.803462+00:00 +[2020-12-20 13:45:32,362] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 282 9.13s 0 0 7.34s 2020-12-20T13:45:19 +================================================================================ +[2020-12-20 13:45:34,365] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:45:34,403] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:40:34.403468+00:00 +[2020-12-20 13:45:46,359] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:45:46,590] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:40:46.590720+00:00 +[2020-12-20 13:45:56,754] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:45:56,755] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:40:56.755225+00:00 +[2020-12-20 13:46:06,616] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 282 47.25s 0 0 7.34s 2020-12-20T13:45:19 +================================================================================ +[2020-12-20 13:46:06,868] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:46:06,934] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:41:06.934526+00:00 +[2020-12-20 13:46:09,692] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 282 started at 2020-12-20T13:45:19.281480+00:00 has timed out, killing it. +[2020-12-20 13:46:10,020] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 282 started at 2020-12-20T13:45:19.281480+00:00 has timed out, killing it. +[2020-12-20 13:46:11,016] {dag_processing.py:1330} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py with PID 282 started at 2020-12-20T13:45:19.281480+00:00 has timed out, killing it. +[2020-12-20 13:46:11,277] {dag_processing.py:1197} ERROR - Processor for /usr/local/airflow/dags/dummy_dag.py exited with return code -9. +[2020-12-20 13:46:17,648] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:46:17,746] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:41:17.697361+00:00 +[2020-12-20 13:46:20,338] {dag_processing.py:908} INFO - Searching for files in /usr/local/airflow/dags +[2020-12-20 13:46:21,486] {dag_processing.py:911} INFO - There are 1 files in /usr/local/airflow/dags +[2020-12-20 13:46:33,799] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:46:34,615] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:41:34.507389+00:00 +[2020-12-20 13:46:37,594] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 291 25.22s 0 -1 51.96s 2020-12-20T13:46:11 +================================================================================ +[2020-12-20 13:46:47,151] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:46:47,194] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:41:47.177121+00:00 +[2020-12-20 13:46:58,602] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:46:58,650] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:41:58.650724+00:00 +[2020-12-20 13:47:09,908] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 301 16.39s 0 0 40.55s 2020-12-20T13:46:52 +================================================================================ +[2020-12-20 13:47:11,309] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:47:11,331] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:42:11.326115+00:00 +[2020-12-20 13:47:25,463] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:47:26,012] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:42:26.012134+00:00 +[2020-12-20 13:47:39,216] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:47:39,271] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:42:39.268498+00:00 +[2020-12-20 13:47:42,531] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 311 16.68s 0 0 32.20s 2020-12-20T13:47:24 +================================================================================ +[2020-12-20 13:47:54,844] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:47:55,284] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:42:55.210229+00:00 +[2020-12-20 13:48:12,265] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:48:12,297] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:43:12.296503+00:00 +[2020-12-20 13:48:17,145] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 321 21.25s 0 0 24.27s 2020-12-20T13:47:49 +================================================================================ +[2020-12-20 13:48:24,085] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:48:24,210] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:43:24.209915+00:00 +[2020-12-20 13:48:35,903] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:48:35,938] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:43:35.938410+00:00 +[2020-12-20 13:48:48,064] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 13:48:50,813] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 13:43:50.813159+00:00 +[2020-12-20 13:48:57,482] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 331 12.34s 0 0 50.50s 2020-12-20T13:48:43 +================================================================================ +[2020-12-20 13:49:03,488] {dag_processing.py:804} INFO - Exiting gracefully upon receiving signal 15 +[2020-12-20 13:49:05,641] {dag_processing.py:1378} INFO - Waiting up to 5 seconds for processes to exit... +[2020-12-20 15:17:12,744] {dag_processing.py:821} INFO - Processing files using up to 2 processes at a time +[2020-12-20 15:17:12,751] {dag_processing.py:822} INFO - Process each file at most once every 0 seconds +[2020-12-20 15:17:12,757] {dag_processing.py:824} INFO - Checking for new files in /usr/local/airflow/dags every 300 seconds +[2020-12-20 15:17:12,770] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 15:17:12,779] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 15:12:12.779245+00:00 +[2020-12-20 15:17:13,276] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ---------- +/usr/local/airflow/dags/dummy_dag.py 169 0.04s 0 0 +================================================================================ +[2020-12-20 15:17:23,153] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 15:17:23,173] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 15:12:23.173197+00:00 +[2020-12-20 15:17:33,444] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 15:17:33,446] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 15:12:33.446120+00:00 +[2020-12-20 15:17:43,934] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 15:17:43,936] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 15:12:43.936616+00:00 +[2020-12-20 15:17:43,981] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 315 0.01s 0 0 1.04s 2020-12-20T15:17:43 +================================================================================ +[2020-12-20 15:17:54,228] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 15:17:54,232] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 15:12:54.231988+00:00 +[2020-12-20 15:18:04,765] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 15:18:04,769] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 15:13:04.768898+00:00 +[2020-12-20 15:18:14,073] {dag_processing.py:1029} INFO - +================================================================================ +DAG File Processing Stats + +File Path PID Runtime # DAGs # Errors Last Runtime Last Run +------------------------------------ ----- --------- -------- ---------- -------------- ------------------- +/usr/local/airflow/dags/dummy_dag.py 466 0.02s 0 0 1.03s 2020-12-20T15:18:14 +================================================================================ +[2020-12-20 15:18:15,091] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 15:18:15,093] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 15:13:15.093427+00:00 +[2020-12-20 15:18:25,384] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 15:18:25,387] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 15:13:25.387666+00:00 +[2020-12-20 15:18:36,002] {dag_processing.py:1292} INFO - Finding 'running' jobs without a recent heartbeat +[2020-12-20 15:18:36,004] {dag_processing.py:1296} INFO - Failing jobs without heartbeat after 2020-12-20 15:13:36.004032+00:00 +[2020-12-20 15:18:40,001] {dag_processing.py:804} INFO - Exiting gracefully upon receiving signal 15 +[2020-12-20 15:18:40,115] {dag_processing.py:1378} INFO - Waiting up to 5 seconds for processes to exit... diff --git a/airflow/logs/scheduler/2020-12-20/dummy_dag.py.log b/airflow/logs/scheduler/2020-12-20/dummy_dag.py.log new file mode 100644 index 0000000..b5d351b --- /dev/null +++ b/airflow/logs/scheduler/2020-12-20/dummy_dag.py.log @@ -0,0 +1,857 @@ +[2020-12-20 11:53:56,193] {logging_mixin.py:112} INFO - [2020-12-20 11:53:56,119] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=466 +[2020-12-20 11:54:23,369] {scheduler_job.py:153} INFO - Started process (PID=466) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:54:24,250] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:54:24,315] {logging_mixin.py:112} INFO - [2020-12-20 11:54:24,314] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:54:26,074] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:54:33,004] {logging_mixin.py:112} INFO - [2020-12-20 11:54:32,947] {dag.py:1485} INFO - Creating ORM DAG for example_dag +[2020-12-20 11:54:35,489] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 12.123 seconds +[2020-12-20 11:54:40,010] {logging_mixin.py:112} INFO - [2020-12-20 11:54:39,944] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=476 +[2020-12-20 11:54:41,134] {scheduler_job.py:153} INFO - Started process (PID=476) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:54:42,953] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:54:43,006] {logging_mixin.py:112} INFO - [2020-12-20 11:54:42,998] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:09,471] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:12,508] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 31.379 seconds +[2020-12-20 11:55:13,878] {logging_mixin.py:112} INFO - [2020-12-20 11:55:13,862] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=486 +[2020-12-20 11:55:14,164] {scheduler_job.py:153} INFO - Started process (PID=486) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:14,385] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:55:14,431] {logging_mixin.py:112} INFO - [2020-12-20 11:55:14,430] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:15,287] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:17,377] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 3.214 seconds +[2020-12-20 11:55:18,280] {logging_mixin.py:112} INFO - [2020-12-20 11:55:18,280] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=491 +[2020-12-20 11:55:18,510] {scheduler_job.py:153} INFO - Started process (PID=491) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:18,695] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:55:18,718] {logging_mixin.py:112} INFO - [2020-12-20 11:55:18,717] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:20,064] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:22,058] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 3.552 seconds +[2020-12-20 11:55:22,768] {logging_mixin.py:112} INFO - [2020-12-20 11:55:22,762] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=496 +[2020-12-20 11:55:22,892] {scheduler_job.py:153} INFO - Started process (PID=496) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:22,931] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:55:22,938] {logging_mixin.py:112} INFO - [2020-12-20 11:55:22,933] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:23,545] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:25,182] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 2.290 seconds +[2020-12-20 11:55:26,333] {logging_mixin.py:112} INFO - [2020-12-20 11:55:26,310] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=501 +[2020-12-20 11:55:26,571] {scheduler_job.py:153} INFO - Started process (PID=501) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:26,810] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:55:26,864] {logging_mixin.py:112} INFO - [2020-12-20 11:55:26,854] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:27,485] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:31,885] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 5.314 seconds +[2020-12-20 11:55:33,536] {logging_mixin.py:112} INFO - [2020-12-20 11:55:33,522] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=506 +[2020-12-20 11:55:33,676] {scheduler_job.py:153} INFO - Started process (PID=506) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:33,861] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:55:33,880] {logging_mixin.py:112} INFO - [2020-12-20 11:55:33,879] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:34,410] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:36,449] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 2.773 seconds +[2020-12-20 11:55:37,592] {logging_mixin.py:112} INFO - [2020-12-20 11:55:37,565] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=511 +[2020-12-20 11:55:37,750] {scheduler_job.py:153} INFO - Started process (PID=511) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:37,982] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:55:38,007] {logging_mixin.py:112} INFO - [2020-12-20 11:55:37,994] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:38,812] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:44,613] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 6.863 seconds +[2020-12-20 11:55:45,517] {logging_mixin.py:112} INFO - [2020-12-20 11:55:45,516] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=521 +[2020-12-20 11:55:45,825] {scheduler_job.py:153} INFO - Started process (PID=521) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:46,035] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:55:46,054] {logging_mixin.py:112} INFO - [2020-12-20 11:55:46,044] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:46,450] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:48,079] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 2.238 seconds +[2020-12-20 11:55:49,319] {logging_mixin.py:112} INFO - [2020-12-20 11:55:49,319] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=526 +[2020-12-20 11:55:49,996] {scheduler_job.py:153} INFO - Started process (PID=526) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:50,311] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:55:50,380] {logging_mixin.py:112} INFO - [2020-12-20 11:55:50,365] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:51,498] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:53,577] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 3.581 seconds +[2020-12-20 11:55:56,704] {logging_mixin.py:112} INFO - [2020-12-20 11:55:56,693] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=531 +[2020-12-20 11:55:57,376] {scheduler_job.py:153} INFO - Started process (PID=531) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:57,826] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:55:57,870] {logging_mixin.py:112} INFO - [2020-12-20 11:55:57,870] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:58,791] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:55:59,713] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 2.338 seconds +[2020-12-20 11:56:00,490] {logging_mixin.py:112} INFO - [2020-12-20 11:56:00,489] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=536 +[2020-12-20 11:56:00,565] {scheduler_job.py:153} INFO - Started process (PID=536) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:00,625] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:56:00,634] {logging_mixin.py:112} INFO - [2020-12-20 11:56:00,630] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:00,812] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:01,610] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 1.045 seconds +[2020-12-20 11:56:02,633] {logging_mixin.py:112} INFO - [2020-12-20 11:56:02,620] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=541 +[2020-12-20 11:56:02,815] {scheduler_job.py:153} INFO - Started process (PID=541) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:03,006] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:56:03,030] {logging_mixin.py:112} INFO - [2020-12-20 11:56:03,017] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:03,672] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:05,340] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 2.535 seconds +[2020-12-20 11:56:06,901] {logging_mixin.py:112} INFO - [2020-12-20 11:56:06,901] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=546 +[2020-12-20 11:56:07,057] {scheduler_job.py:153} INFO - Started process (PID=546) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:07,244] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:56:07,277] {logging_mixin.py:112} INFO - [2020-12-20 11:56:07,277] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:07,667] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:09,581] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 2.524 seconds +[2020-12-20 11:56:10,768] {logging_mixin.py:112} INFO - [2020-12-20 11:56:10,758] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=551 +[2020-12-20 11:56:10,938] {scheduler_job.py:153} INFO - Started process (PID=551) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:11,064] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:56:11,085] {logging_mixin.py:112} INFO - [2020-12-20 11:56:11,085] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:11,710] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:21,589] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 10.660 seconds +[2020-12-20 11:56:41,681] {logging_mixin.py:112} INFO - [2020-12-20 11:56:41,665] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=561 +[2020-12-20 11:56:42,421] {scheduler_job.py:153} INFO - Started process (PID=561) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:43,199] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:56:44,186] {logging_mixin.py:112} INFO - [2020-12-20 11:56:44,181] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:56:45,564] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:57:14,768] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 32.359 seconds +[2020-12-20 11:57:16,506] {logging_mixin.py:112} INFO - [2020-12-20 11:57:16,506] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=572 +[2020-12-20 11:57:16,665] {scheduler_job.py:153} INFO - Started process (PID=572) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:57:16,944] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:57:17,175] {logging_mixin.py:112} INFO - [2020-12-20 11:57:17,116] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:57:17,929] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:57:20,876] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 4.221 seconds +[2020-12-20 11:57:22,159] {logging_mixin.py:112} INFO - [2020-12-20 11:57:22,152] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=577 +[2020-12-20 11:57:22,504] {scheduler_job.py:153} INFO - Started process (PID=577) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:57:22,758] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 11:57:22,797] {logging_mixin.py:112} INFO - [2020-12-20 11:57:22,797] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:57:23,893] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 11:57:27,408] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 4.910 seconds +[2020-12-20 11:57:40,774] {logging_mixin.py:112} INFO - [2020-12-20 11:57:40,745] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=582 +[2020-12-20 11:57:41,633] {scheduler_job.py:153} INFO - Started process (PID=582) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:00:14,791] {logging_mixin.py:112} INFO - [2020-12-20 13:00:14,752] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=326 +[2020-12-20 13:00:15,189] {scheduler_job.py:153} INFO - Started process (PID=326) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:00:37,260] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:00:37,613] {logging_mixin.py:112} INFO - [2020-12-20 13:00:37,551] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:00:40,405] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:00:49,562] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 34.373 seconds +[2020-12-20 13:00:55,586] {logging_mixin.py:112} INFO - [2020-12-20 13:00:55,522] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=336 +[2020-12-20 13:00:56,712] {scheduler_job.py:153} INFO - Started process (PID=336) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:00:57,454] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:00:57,593] {logging_mixin.py:112} INFO - [2020-12-20 13:00:57,593] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:00:59,605] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:01:04,724] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 8.012 seconds +[2020-12-20 13:01:29,184] {logging_mixin.py:112} INFO - [2020-12-20 13:01:29,143] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=341 +[2020-12-20 13:01:30,050] {scheduler_job.py:153} INFO - Started process (PID=341) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:01:30,782] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:01:30,937] {logging_mixin.py:112} INFO - [2020-12-20 13:01:30,937] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:01:31,874] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:01:34,409] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 4.359 seconds +[2020-12-20 13:01:35,833] {logging_mixin.py:112} INFO - [2020-12-20 13:01:35,812] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=351 +[2020-12-20 13:01:36,110] {scheduler_job.py:153} INFO - Started process (PID=351) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:01:36,474] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:01:36,516] {logging_mixin.py:112} INFO - [2020-12-20 13:01:36,515] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:01:37,436] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:01:40,763] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 4.653 seconds +[2020-12-20 13:02:01,474] {logging_mixin.py:112} INFO - [2020-12-20 13:02:00,627] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=361 +[2020-12-20 13:02:06,295] {scheduler_job.py:153} INFO - Started process (PID=361) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:02:07,628] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:02:07,748] {logging_mixin.py:112} INFO - [2020-12-20 13:02:07,747] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:02:11,076] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:02:16,620] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 10.326 seconds +[2020-12-20 13:02:20,365] {logging_mixin.py:112} INFO - [2020-12-20 13:02:20,328] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=366 +[2020-12-20 13:02:21,199] {scheduler_job.py:153} INFO - Started process (PID=366) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:02:22,418] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:02:22,591] {logging_mixin.py:112} INFO - [2020-12-20 13:02:22,587] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:02:23,846] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:02:26,217] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 5.026 seconds +[2020-12-20 13:02:28,754] {logging_mixin.py:112} INFO - [2020-12-20 13:02:28,715] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=377 +[2020-12-20 13:02:30,284] {scheduler_job.py:153} INFO - Started process (PID=377) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:02:31,831] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:02:32,093] {logging_mixin.py:112} INFO - [2020-12-20 13:02:32,078] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:03:00,569] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:03:13,330] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 43.042 seconds +[2020-12-20 13:03:35,550] {logging_mixin.py:112} INFO - [2020-12-20 13:03:35,484] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=387 +[2020-12-20 13:03:45,041] {scheduler_job.py:153} INFO - Started process (PID=387) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:03:47,702] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:03:47,929] {logging_mixin.py:112} INFO - [2020-12-20 13:03:47,910] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:03:50,608] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:04:26,310] {logging_mixin.py:112} INFO - [2020-12-20 13:04:26,245] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=400 +[2020-12-20 13:04:27,383] {scheduler_job.py:153} INFO - Started process (PID=400) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:04:29,269] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:04:29,429] {logging_mixin.py:112} INFO - [2020-12-20 13:04:29,406] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:04:32,017] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:04:43,846] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 15.929 seconds +[2020-12-20 13:05:21,376] {logging_mixin.py:112} INFO - [2020-12-20 13:05:21,326] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=410 +[2020-12-20 13:05:23,472] {scheduler_job.py:153} INFO - Started process (PID=410) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:05:24,514] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:05:24,560] {logging_mixin.py:112} INFO - [2020-12-20 13:05:24,558] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:05:30,234] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:05:55,721] {logging_mixin.py:112} INFO - [2020-12-20 13:05:55,628] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=418 +[2020-12-20 13:05:56,406] {scheduler_job.py:153} INFO - Started process (PID=418) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:05:56,842] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:05:56,912] {logging_mixin.py:112} INFO - [2020-12-20 13:05:56,901] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:05:57,579] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:06:01,355] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 4.949 seconds +[2020-12-20 13:06:03,104] {logging_mixin.py:112} INFO - [2020-12-20 13:06:03,088] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=423 +[2020-12-20 13:06:03,529] {scheduler_job.py:153} INFO - Started process (PID=423) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:06:04,030] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:06:04,067] {logging_mixin.py:112} INFO - [2020-12-20 13:06:04,066] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:06:05,405] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:07:06,795] {logging_mixin.py:112} INFO - [2020-12-20 13:07:06,690] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=436 +[2020-12-20 13:07:07,928] {scheduler_job.py:153} INFO - Started process (PID=436) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:07:09,931] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:07:10,583] {logging_mixin.py:112} INFO - [2020-12-20 13:07:10,517] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:07:20,379] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:08:00,353] {logging_mixin.py:112} INFO - [2020-12-20 13:08:00,328] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=449 +[2020-12-20 13:08:01,101] {scheduler_job.py:153} INFO - Started process (PID=449) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:08:01,890] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:08:02,008] {logging_mixin.py:112} INFO - [2020-12-20 13:08:01,966] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:08:04,259] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:08:10,776] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 9.683 seconds +[2020-12-20 13:08:13,778] {logging_mixin.py:112} INFO - [2020-12-20 13:08:13,692] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=454 +[2020-12-20 13:08:15,192] {scheduler_job.py:153} INFO - Started process (PID=454) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:08:16,055] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:08:16,256] {logging_mixin.py:112} INFO - [2020-12-20 13:08:16,251] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:08:22,090] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:08:33,313] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 18.126 seconds +[2020-12-20 13:08:35,334] {logging_mixin.py:112} INFO - [2020-12-20 13:08:35,305] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=464 +[2020-12-20 13:08:37,038] {scheduler_job.py:153} INFO - Started process (PID=464) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:08:38,469] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:08:38,558] {logging_mixin.py:112} INFO - [2020-12-20 13:08:38,550] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:08:40,219] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:09:22,111] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 44.986 seconds +[2020-12-20 13:09:31,596] {logging_mixin.py:112} INFO - [2020-12-20 13:09:31,507] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=478 +[2020-12-20 13:09:33,095] {scheduler_job.py:153} INFO - Started process (PID=478) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:09:52,092] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:09:52,477] {logging_mixin.py:112} INFO - [2020-12-20 13:09:52,394] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:09:58,413] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:10:41,349] {logging_mixin.py:112} INFO - [2020-12-20 13:10:41,307] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=486 +[2020-12-20 13:10:44,006] {scheduler_job.py:153} INFO - Started process (PID=486) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:10:48,858] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:10:49,191] {logging_mixin.py:112} INFO - [2020-12-20 13:10:49,126] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:11:14,029] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:11:35,445] {logging_mixin.py:112} INFO - [2020-12-20 13:11:35,327] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=500 +[2020-12-20 13:11:37,135] {scheduler_job.py:153} INFO - Started process (PID=500) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:11:38,596] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:11:38,761] {logging_mixin.py:112} INFO - [2020-12-20 13:11:38,744] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:11:41,590] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:12:01,941] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 24.681 seconds +[2020-12-20 13:12:17,857] {logging_mixin.py:112} INFO - [2020-12-20 13:12:17,812] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=510 +[2020-12-20 13:12:19,198] {scheduler_job.py:153} INFO - Started process (PID=510) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:12:20,140] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:12:20,269] {logging_mixin.py:112} INFO - [2020-12-20 13:12:20,251] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:12:45,758] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:13:22,335] {logging_mixin.py:112} INFO - [2020-12-20 13:13:22,308] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=523 +[2020-12-20 13:13:23,445] {scheduler_job.py:153} INFO - Started process (PID=523) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:13:27,466] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:13:27,688] {logging_mixin.py:112} INFO - [2020-12-20 13:13:27,634] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:13:29,646] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:13:59,284] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 35.595 seconds +[2020-12-20 13:14:19,922] {logging_mixin.py:112} INFO - [2020-12-20 13:14:19,140] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=533 +[2020-12-20 13:14:22,848] {scheduler_job.py:153} INFO - Started process (PID=533) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:14:29,731] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:14:30,551] {logging_mixin.py:112} INFO - [2020-12-20 13:14:30,538] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:14:33,364] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:14:40,108] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 17.274 seconds +[2020-12-20 13:14:47,365] {logging_mixin.py:112} INFO - [2020-12-20 13:14:47,212] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=543 +[2020-12-20 13:14:55,067] {scheduler_job.py:153} INFO - Started process (PID=543) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:15:04,770] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:15:04,889] {logging_mixin.py:112} INFO - [2020-12-20 13:15:04,863] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:15:10,313] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:15:19,206] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 24.240 seconds +[2020-12-20 13:15:22,984] {logging_mixin.py:112} INFO - [2020-12-20 13:15:22,968] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=553 +[2020-12-20 13:15:23,613] {scheduler_job.py:153} INFO - Started process (PID=553) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:15:24,624] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:15:24,717] {logging_mixin.py:112} INFO - [2020-12-20 13:15:24,715] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:15:39,178] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:15:56,948] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 33.333 seconds +[2020-12-20 13:16:11,644] {logging_mixin.py:112} INFO - [2020-12-20 13:16:11,371] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=563 +[2020-12-20 13:16:16,798] {scheduler_job.py:153} INFO - Started process (PID=563) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:16:19,004] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:16:19,804] {logging_mixin.py:112} INFO - [2020-12-20 13:16:19,669] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:16:23,766] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:16:40,253] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 23.404 seconds +[2020-12-20 13:16:52,634] {logging_mixin.py:112} INFO - [2020-12-20 13:16:52,586] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=578 +[2020-12-20 13:16:53,628] {scheduler_job.py:153} INFO - Started process (PID=578) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:16:55,108] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:16:55,763] {logging_mixin.py:112} INFO - [2020-12-20 13:16:55,703] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:16:58,651] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:17:14,306] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 20.272 seconds +[2020-12-20 13:17:29,691] {logging_mixin.py:112} INFO - [2020-12-20 13:17:29,545] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=588 +[2020-12-20 13:17:30,429] {scheduler_job.py:153} INFO - Started process (PID=588) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:17:30,994] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:17:31,057] {logging_mixin.py:112} INFO - [2020-12-20 13:17:31,046] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:17:32,580] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:17:42,752] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 12.290 seconds +[2020-12-20 13:17:54,967] {logging_mixin.py:112} INFO - [2020-12-20 13:17:54,773] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=598 +[2020-12-20 13:17:59,876] {scheduler_job.py:153} INFO - Started process (PID=598) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:18:05,523] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:18:05,589] {logging_mixin.py:112} INFO - [2020-12-20 13:18:05,574] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:18:08,045] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:18:18,675] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 18.803 seconds +[2020-12-20 13:18:32,732] {logging_mixin.py:112} INFO - [2020-12-20 13:18:32,716] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=608 +[2020-12-20 13:18:35,918] {scheduler_job.py:153} INFO - Started process (PID=608) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:18:38,161] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:18:38,296] {logging_mixin.py:112} INFO - [2020-12-20 13:18:38,278] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:18:42,926] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:19:06,814] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 30.930 seconds +[2020-12-20 13:19:15,812] {logging_mixin.py:112} INFO - [2020-12-20 13:19:15,673] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=619 +[2020-12-20 13:19:17,924] {scheduler_job.py:153} INFO - Started process (PID=619) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:19:19,947] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:19:20,110] {logging_mixin.py:112} INFO - [2020-12-20 13:19:20,109] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:19:23,057] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:19:46,296] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 28.131 seconds +[2020-12-20 13:19:53,596] {logging_mixin.py:112} INFO - [2020-12-20 13:19:53,584] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=629 +[2020-12-20 13:20:01,079] {scheduler_job.py:153} INFO - Started process (PID=629) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:20:08,505] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:20:09,719] {logging_mixin.py:112} INFO - [2020-12-20 13:20:09,711] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:20:16,815] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:20:25,538] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 24.454 seconds +[2020-12-20 13:20:51,619] {logging_mixin.py:112} INFO - [2020-12-20 13:20:51,589] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=644 +[2020-12-20 13:20:52,279] {scheduler_job.py:153} INFO - Started process (PID=644) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:20:53,377] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:20:53,471] {logging_mixin.py:112} INFO - [2020-12-20 13:20:53,470] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:20:56,261] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:21:24,790] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 32.441 seconds +[2020-12-20 13:21:43,600] {logging_mixin.py:112} INFO - [2020-12-20 13:21:42,783] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=654 +[2020-12-20 13:21:56,801] {scheduler_job.py:153} INFO - Started process (PID=654) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:41:43,534] {logging_mixin.py:112} INFO - [2020-12-20 13:41:43,366] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=225 +[2020-12-20 13:41:44,832] {scheduler_job.py:153} INFO - Started process (PID=225) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:41:47,185] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:41:47,577] {logging_mixin.py:112} INFO - [2020-12-20 13:41:47,576] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:41:53,454] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:42:08,173] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 23.221 seconds +[2020-12-20 13:42:21,203] {logging_mixin.py:112} INFO - [2020-12-20 13:42:21,042] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=235 +[2020-12-20 13:42:23,156] {scheduler_job.py:153} INFO - Started process (PID=235) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:42:23,997] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:42:24,050] {logging_mixin.py:112} INFO - [2020-12-20 13:42:24,041] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:42:52,936] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:43:14,269] {logging_mixin.py:112} INFO - [2020-12-20 13:43:14,167] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=243 +[2020-12-20 13:43:18,211] {scheduler_job.py:153} INFO - Started process (PID=243) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:43:20,753] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:43:20,847] {logging_mixin.py:112} INFO - [2020-12-20 13:43:20,847] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:43:24,292] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:43:33,994] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 15.810 seconds +[2020-12-20 13:43:51,044] {logging_mixin.py:112} INFO - [2020-12-20 13:43:50,966] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=252 +[2020-12-20 13:43:53,698] {scheduler_job.py:153} INFO - Started process (PID=252) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:43:56,384] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:43:57,263] {logging_mixin.py:112} INFO - [2020-12-20 13:43:57,163] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:44:03,355] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:44:31,813] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 38.007 seconds +[2020-12-20 13:44:43,126] {logging_mixin.py:112} INFO - [2020-12-20 13:44:43,015] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=261 +[2020-12-20 13:44:46,645] {scheduler_job.py:153} INFO - Started process (PID=261) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:44:48,676] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:44:48,866] {logging_mixin.py:112} INFO - [2020-12-20 13:44:48,831] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:44:52,661] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:45:03,200] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 16.595 seconds +[2020-12-20 13:45:05,804] {logging_mixin.py:112} INFO - [2020-12-20 13:45:05,777] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=271 +[2020-12-20 13:45:06,183] {scheduler_job.py:153} INFO - Started process (PID=271) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:45:06,751] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:45:06,896] {logging_mixin.py:112} INFO - [2020-12-20 13:45:06,895] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:45:08,319] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:45:11,369] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 5.187 seconds +[2020-12-20 13:45:13,246] {logging_mixin.py:112} INFO - [2020-12-20 13:45:13,227] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=277 +[2020-12-20 13:45:13,822] {scheduler_job.py:153} INFO - Started process (PID=277) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:45:14,126] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:45:14,153] {logging_mixin.py:112} INFO - [2020-12-20 13:45:14,153] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:45:14,902] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:45:17,776] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 3.954 seconds +[2020-12-20 13:45:23,058] {logging_mixin.py:112} INFO - [2020-12-20 13:45:22,959] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=282 +[2020-12-20 13:45:25,191] {scheduler_job.py:153} INFO - Started process (PID=282) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:45:32,451] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:45:33,128] {logging_mixin.py:112} INFO - [2020-12-20 13:45:32,671] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:45:44,680] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:46:18,475] {logging_mixin.py:112} INFO - [2020-12-20 13:46:18,390] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=291 +[2020-12-20 13:46:20,150] {scheduler_job.py:153} INFO - Started process (PID=291) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:46:21,537] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:46:21,812] {logging_mixin.py:112} INFO - [2020-12-20 13:46:21,731] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:46:28,026] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:46:49,998] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 29.869 seconds +[2020-12-20 13:46:56,863] {logging_mixin.py:112} INFO - [2020-12-20 13:46:56,806] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=301 +[2020-12-20 13:46:58,267] {scheduler_job.py:153} INFO - Started process (PID=301) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:46:59,944] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:47:00,397] {logging_mixin.py:112} INFO - [2020-12-20 13:47:00,396] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:47:07,822] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:47:22,835] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 24.558 seconds +[2020-12-20 13:47:28,503] {logging_mixin.py:112} INFO - [2020-12-20 13:47:28,443] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=311 +[2020-12-20 13:47:29,725] {scheduler_job.py:153} INFO - Started process (PID=311) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:47:33,076] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:47:33,296] {logging_mixin.py:112} INFO - [2020-12-20 13:47:33,289] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:47:37,478] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:47:46,545] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 16.822 seconds +[2020-12-20 13:48:00,027] {logging_mixin.py:112} INFO - [2020-12-20 13:47:59,984] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=321 +[2020-12-20 13:48:04,166] {scheduler_job.py:153} INFO - Started process (PID=321) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:48:06,071] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 13:48:06,260] {logging_mixin.py:112} INFO - [2020-12-20 13:48:06,253] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:48:12,042] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:48:38,915] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 34.746 seconds +[2020-12-20 13:48:57,155] {logging_mixin.py:112} INFO - [2020-12-20 13:48:56,993] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=331 +[2020-12-20 13:49:00,664] {scheduler_job.py:153} INFO - Started process (PID=331) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 13:49:03,564] {scheduler_job.py:410} INFO - Exiting gracefully upon receiving signal 15 +[2020-12-20 15:17:13,290] {logging_mixin.py:112} INFO - [2020-12-20 15:17:13,290] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=169 +[2020-12-20 15:17:13,358] {scheduler_job.py:153} INFO - Started process (PID=169) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:13,417] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:13,426] {logging_mixin.py:112} INFO - [2020-12-20 15:17:13,426] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:13,533] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:13,888] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.530 seconds +[2020-12-20 15:17:14,474] {logging_mixin.py:112} INFO - [2020-12-20 15:17:14,469] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=174 +[2020-12-20 15:17:14,525] {scheduler_job.py:153} INFO - Started process (PID=174) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:14,564] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:14,566] {logging_mixin.py:112} INFO - [2020-12-20 15:17:14,565] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:14,679] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:15,093] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.572 seconds +[2020-12-20 15:17:15,590] {logging_mixin.py:112} INFO - [2020-12-20 15:17:15,589] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=179 +[2020-12-20 15:17:15,649] {scheduler_job.py:153} INFO - Started process (PID=179) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:15,691] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:15,700] {logging_mixin.py:112} INFO - [2020-12-20 15:17:15,700] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:15,799] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:16,174] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.525 seconds +[2020-12-20 15:17:16,566] {logging_mixin.py:112} INFO - [2020-12-20 15:17:16,566] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=184 +[2020-12-20 15:17:16,631] {scheduler_job.py:153} INFO - Started process (PID=184) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:16,692] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:16,700] {logging_mixin.py:112} INFO - [2020-12-20 15:17:16,699] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:16,842] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:17,185] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.555 seconds +[2020-12-20 15:17:17,729] {logging_mixin.py:112} INFO - [2020-12-20 15:17:17,728] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=189 +[2020-12-20 15:17:17,819] {scheduler_job.py:153} INFO - Started process (PID=189) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:18,010] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:18,042] {logging_mixin.py:112} INFO - [2020-12-20 15:17:18,038] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:18,349] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:19,278] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 1.459 seconds +[2020-12-20 15:17:20,230] {logging_mixin.py:112} INFO - [2020-12-20 15:17:20,227] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=195 +[2020-12-20 15:17:20,321] {scheduler_job.py:153} INFO - Started process (PID=195) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:20,379] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:20,393] {logging_mixin.py:112} INFO - [2020-12-20 15:17:20,383] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:20,537] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:21,410] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 1.083 seconds +[2020-12-20 15:17:22,101] {logging_mixin.py:112} INFO - [2020-12-20 15:17:22,100] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=205 +[2020-12-20 15:17:22,211] {scheduler_job.py:153} INFO - Started process (PID=205) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:22,256] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:22,262] {logging_mixin.py:112} INFO - [2020-12-20 15:17:22,260] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:22,381] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:22,728] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.520 seconds +[2020-12-20 15:17:23,210] {logging_mixin.py:112} INFO - [2020-12-20 15:17:23,185] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=210 +[2020-12-20 15:17:23,293] {scheduler_job.py:153} INFO - Started process (PID=210) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:23,350] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:23,378] {logging_mixin.py:112} INFO - [2020-12-20 15:17:23,373] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:23,485] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:23,869] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.576 seconds +[2020-12-20 15:17:24,223] {logging_mixin.py:112} INFO - [2020-12-20 15:17:24,222] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=215 +[2020-12-20 15:17:24,295] {scheduler_job.py:153} INFO - Started process (PID=215) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:24,345] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:24,357] {logging_mixin.py:112} INFO - [2020-12-20 15:17:24,356] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:24,510] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:24,941] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.647 seconds +[2020-12-20 15:17:25,297] {logging_mixin.py:112} INFO - [2020-12-20 15:17:25,294] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=220 +[2020-12-20 15:17:25,394] {scheduler_job.py:153} INFO - Started process (PID=220) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:25,437] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:25,461] {logging_mixin.py:112} INFO - [2020-12-20 15:17:25,444] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:25,582] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:25,904] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.507 seconds +[2020-12-20 15:17:26,317] {logging_mixin.py:112} INFO - [2020-12-20 15:17:26,303] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=225 +[2020-12-20 15:17:26,354] {scheduler_job.py:153} INFO - Started process (PID=225) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:26,388] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:26,393] {logging_mixin.py:112} INFO - [2020-12-20 15:17:26,393] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:26,492] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:26,849] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.495 seconds +[2020-12-20 15:17:27,329] {logging_mixin.py:112} INFO - [2020-12-20 15:17:27,328] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=230 +[2020-12-20 15:17:27,353] {scheduler_job.py:153} INFO - Started process (PID=230) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:27,378] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:27,391] {logging_mixin.py:112} INFO - [2020-12-20 15:17:27,390] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:27,480] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:27,731] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.378 seconds +[2020-12-20 15:17:28,369] {logging_mixin.py:112} INFO - [2020-12-20 15:17:28,365] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=236 +[2020-12-20 15:17:28,393] {scheduler_job.py:153} INFO - Started process (PID=236) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:28,412] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:28,435] {logging_mixin.py:112} INFO - [2020-12-20 15:17:28,428] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:28,502] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:28,751] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.357 seconds +[2020-12-20 15:17:29,394] {logging_mixin.py:112} INFO - [2020-12-20 15:17:29,389] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=243 +[2020-12-20 15:17:29,424] {scheduler_job.py:153} INFO - Started process (PID=243) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:29,460] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:29,465] {logging_mixin.py:112} INFO - [2020-12-20 15:17:29,465] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:29,520] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:29,754] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.330 seconds +[2020-12-20 15:17:30,448] {logging_mixin.py:112} INFO - [2020-12-20 15:17:30,447] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=248 +[2020-12-20 15:17:30,469] {scheduler_job.py:153} INFO - Started process (PID=248) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:30,490] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:30,495] {logging_mixin.py:112} INFO - [2020-12-20 15:17:30,491] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:30,564] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:30,829] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.359 seconds +[2020-12-20 15:17:31,470] {logging_mixin.py:112} INFO - [2020-12-20 15:17:31,470] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=253 +[2020-12-20 15:17:31,486] {scheduler_job.py:153} INFO - Started process (PID=253) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:31,520] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:31,525] {logging_mixin.py:112} INFO - [2020-12-20 15:17:31,525] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:31,621] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:31,969] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.481 seconds +[2020-12-20 15:17:32,517] {logging_mixin.py:112} INFO - [2020-12-20 15:17:32,516] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=258 +[2020-12-20 15:17:32,539] {scheduler_job.py:153} INFO - Started process (PID=258) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:32,575] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:32,584] {logging_mixin.py:112} INFO - [2020-12-20 15:17:32,583] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:32,712] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:33,156] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.617 seconds +[2020-12-20 15:17:33,613] {logging_mixin.py:112} INFO - [2020-12-20 15:17:33,610] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=265 +[2020-12-20 15:17:33,648] {scheduler_job.py:153} INFO - Started process (PID=265) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:33,680] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:33,685] {logging_mixin.py:112} INFO - [2020-12-20 15:17:33,683] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:33,766] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:34,112] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.464 seconds +[2020-12-20 15:17:34,784] {logging_mixin.py:112} INFO - [2020-12-20 15:17:34,784] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=270 +[2020-12-20 15:17:34,841] {scheduler_job.py:153} INFO - Started process (PID=270) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:34,893] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:34,903] {logging_mixin.py:112} INFO - [2020-12-20 15:17:34,903] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:34,975] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:35,248] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.406 seconds +[2020-12-20 15:17:35,810] {logging_mixin.py:112} INFO - [2020-12-20 15:17:35,810] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=275 +[2020-12-20 15:17:35,843] {scheduler_job.py:153} INFO - Started process (PID=275) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:35,870] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:35,882] {logging_mixin.py:112} INFO - [2020-12-20 15:17:35,881] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:35,976] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:36,300] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.457 seconds +[2020-12-20 15:17:36,855] {logging_mixin.py:112} INFO - [2020-12-20 15:17:36,855] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=280 +[2020-12-20 15:17:36,891] {scheduler_job.py:153} INFO - Started process (PID=280) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:36,928] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:36,934] {logging_mixin.py:112} INFO - [2020-12-20 15:17:36,931] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:37,018] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:37,376] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.485 seconds +[2020-12-20 15:17:37,872] {logging_mixin.py:112} INFO - [2020-12-20 15:17:37,871] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=285 +[2020-12-20 15:17:37,908] {scheduler_job.py:153} INFO - Started process (PID=285) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:37,953] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:37,955] {logging_mixin.py:112} INFO - [2020-12-20 15:17:37,955] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:38,039] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:38,452] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.539 seconds +[2020-12-20 15:17:38,903] {logging_mixin.py:112} INFO - [2020-12-20 15:17:38,902] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=290 +[2020-12-20 15:17:38,937] {scheduler_job.py:153} INFO - Started process (PID=290) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:38,982] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:38,987] {logging_mixin.py:112} INFO - [2020-12-20 15:17:38,986] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:39,058] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:39,304] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.366 seconds +[2020-12-20 15:17:39,937] {logging_mixin.py:112} INFO - [2020-12-20 15:17:39,936] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=295 +[2020-12-20 15:17:39,966] {scheduler_job.py:153} INFO - Started process (PID=295) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:40,002] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:40,007] {logging_mixin.py:112} INFO - [2020-12-20 15:17:40,007] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:40,072] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:40,356] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.390 seconds +[2020-12-20 15:17:40,963] {logging_mixin.py:112} INFO - [2020-12-20 15:17:40,963] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=300 +[2020-12-20 15:17:40,992] {scheduler_job.py:153} INFO - Started process (PID=300) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:41,026] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:41,033] {logging_mixin.py:112} INFO - [2020-12-20 15:17:41,033] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:41,107] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:41,373] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.381 seconds +[2020-12-20 15:17:41,995] {logging_mixin.py:112} INFO - [2020-12-20 15:17:41,995] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=305 +[2020-12-20 15:17:42,021] {scheduler_job.py:153} INFO - Started process (PID=305) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:42,060] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:42,064] {logging_mixin.py:112} INFO - [2020-12-20 15:17:42,063] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:42,136] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:42,397] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.371 seconds +[2020-12-20 15:17:42,967] {logging_mixin.py:112} INFO - [2020-12-20 15:17:42,967] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=310 +[2020-12-20 15:17:42,977] {scheduler_job.py:153} INFO - Started process (PID=310) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:42,987] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:42,990] {logging_mixin.py:112} INFO - [2020-12-20 15:17:42,989] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:43,024] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:43,158] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.180 seconds +[2020-12-20 15:17:44,026] {logging_mixin.py:112} INFO - [2020-12-20 15:17:44,025] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=315 +[2020-12-20 15:17:44,040] {scheduler_job.py:153} INFO - Started process (PID=315) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:44,050] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:44,052] {logging_mixin.py:112} INFO - [2020-12-20 15:17:44,051] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:44,087] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:44,225] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.185 seconds +[2020-12-20 15:17:45,041] {logging_mixin.py:112} INFO - [2020-12-20 15:17:45,040] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=320 +[2020-12-20 15:17:45,056] {scheduler_job.py:153} INFO - Started process (PID=320) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:45,066] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:45,069] {logging_mixin.py:112} INFO - [2020-12-20 15:17:45,068] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:45,102] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:45,205] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.149 seconds +[2020-12-20 15:17:46,071] {logging_mixin.py:112} INFO - [2020-12-20 15:17:46,070] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=325 +[2020-12-20 15:17:46,081] {scheduler_job.py:153} INFO - Started process (PID=325) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:46,090] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:46,092] {logging_mixin.py:112} INFO - [2020-12-20 15:17:46,091] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:46,128] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:46,222] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.141 seconds +[2020-12-20 15:17:47,089] {logging_mixin.py:112} INFO - [2020-12-20 15:17:47,089] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=330 +[2020-12-20 15:17:47,099] {scheduler_job.py:153} INFO - Started process (PID=330) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:47,109] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:47,111] {logging_mixin.py:112} INFO - [2020-12-20 15:17:47,111] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:47,146] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:47,242] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.143 seconds +[2020-12-20 15:17:48,137] {logging_mixin.py:112} INFO - [2020-12-20 15:17:48,136] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=335 +[2020-12-20 15:17:48,146] {scheduler_job.py:153} INFO - Started process (PID=335) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:48,155] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:48,157] {logging_mixin.py:112} INFO - [2020-12-20 15:17:48,156] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:48,189] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:48,286] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.140 seconds +[2020-12-20 15:17:49,156] {logging_mixin.py:112} INFO - [2020-12-20 15:17:49,155] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=340 +[2020-12-20 15:17:49,167] {scheduler_job.py:153} INFO - Started process (PID=340) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:49,176] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:49,178] {logging_mixin.py:112} INFO - [2020-12-20 15:17:49,177] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:49,209] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:49,309] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.142 seconds +[2020-12-20 15:17:50,176] {logging_mixin.py:112} INFO - [2020-12-20 15:17:50,175] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=345 +[2020-12-20 15:17:50,188] {scheduler_job.py:153} INFO - Started process (PID=345) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:50,201] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:50,203] {logging_mixin.py:112} INFO - [2020-12-20 15:17:50,203] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:50,245] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:50,378] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.190 seconds +[2020-12-20 15:17:51,205] {logging_mixin.py:112} INFO - [2020-12-20 15:17:51,204] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=350 +[2020-12-20 15:17:51,214] {scheduler_job.py:153} INFO - Started process (PID=350) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:51,223] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:51,225] {logging_mixin.py:112} INFO - [2020-12-20 15:17:51,225] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:51,255] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:51,354] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.140 seconds +[2020-12-20 15:17:52,227] {logging_mixin.py:112} INFO - [2020-12-20 15:17:52,226] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=360 +[2020-12-20 15:17:52,239] {scheduler_job.py:153} INFO - Started process (PID=360) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:52,307] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:52,309] {logging_mixin.py:112} INFO - [2020-12-20 15:17:52,309] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:52,347] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:52,441] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.202 seconds +[2020-12-20 15:17:53,264] {logging_mixin.py:112} INFO - [2020-12-20 15:17:53,263] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=365 +[2020-12-20 15:17:53,274] {scheduler_job.py:153} INFO - Started process (PID=365) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:53,285] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:53,287] {logging_mixin.py:112} INFO - [2020-12-20 15:17:53,287] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:53,323] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:53,416] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.142 seconds +[2020-12-20 15:17:54,312] {logging_mixin.py:112} INFO - [2020-12-20 15:17:54,311] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=370 +[2020-12-20 15:17:54,321] {scheduler_job.py:153} INFO - Started process (PID=370) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:54,330] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:54,332] {logging_mixin.py:112} INFO - [2020-12-20 15:17:54,332] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:54,364] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:54,485] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.163 seconds +[2020-12-20 15:17:55,344] {logging_mixin.py:112} INFO - [2020-12-20 15:17:55,343] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=375 +[2020-12-20 15:17:55,353] {scheduler_job.py:153} INFO - Started process (PID=375) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:55,361] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:55,363] {logging_mixin.py:112} INFO - [2020-12-20 15:17:55,363] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:55,397] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:55,493] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.141 seconds +[2020-12-20 15:17:56,368] {logging_mixin.py:112} INFO - [2020-12-20 15:17:56,367] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=380 +[2020-12-20 15:17:56,386] {scheduler_job.py:153} INFO - Started process (PID=380) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:56,397] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:56,400] {logging_mixin.py:112} INFO - [2020-12-20 15:17:56,400] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:56,441] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:56,811] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.425 seconds +[2020-12-20 15:17:57,606] {logging_mixin.py:112} INFO - [2020-12-20 15:17:57,600] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=385 +[2020-12-20 15:17:57,631] {scheduler_job.py:153} INFO - Started process (PID=385) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:57,665] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:57,671] {logging_mixin.py:112} INFO - [2020-12-20 15:17:57,671] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:57,729] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:57,964] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.333 seconds +[2020-12-20 15:17:58,656] {logging_mixin.py:112} INFO - [2020-12-20 15:17:58,651] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=390 +[2020-12-20 15:17:58,700] {scheduler_job.py:153} INFO - Started process (PID=390) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:58,739] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:58,750] {logging_mixin.py:112} INFO - [2020-12-20 15:17:58,746] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:58,864] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:59,336] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.636 seconds +[2020-12-20 15:17:59,715] {logging_mixin.py:112} INFO - [2020-12-20 15:17:59,697] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=395 +[2020-12-20 15:17:59,760] {scheduler_job.py:153} INFO - Started process (PID=395) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:59,804] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:17:59,810] {logging_mixin.py:112} INFO - [2020-12-20 15:17:59,810] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:17:59,935] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:00,451] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.694 seconds +[2020-12-20 15:18:00,749] {logging_mixin.py:112} INFO - [2020-12-20 15:18:00,748] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=400 +[2020-12-20 15:18:00,776] {scheduler_job.py:153} INFO - Started process (PID=400) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:00,809] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:00,819] {logging_mixin.py:112} INFO - [2020-12-20 15:18:00,819] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:01,003] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:01,268] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.492 seconds +[2020-12-20 15:18:01,733] {logging_mixin.py:112} INFO - [2020-12-20 15:18:01,732] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=405 +[2020-12-20 15:18:01,770] {scheduler_job.py:153} INFO - Started process (PID=405) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:01,799] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:01,805] {logging_mixin.py:112} INFO - [2020-12-20 15:18:01,805] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:01,894] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:02,300] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.530 seconds +[2020-12-20 15:18:02,809] {logging_mixin.py:112} INFO - [2020-12-20 15:18:02,805] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=410 +[2020-12-20 15:18:02,849] {scheduler_job.py:153} INFO - Started process (PID=410) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:02,881] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:02,891] {logging_mixin.py:112} INFO - [2020-12-20 15:18:02,889] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:02,976] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:03,186] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.337 seconds +[2020-12-20 15:18:03,930] {logging_mixin.py:112} INFO - [2020-12-20 15:18:03,928] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=415 +[2020-12-20 15:18:03,959] {scheduler_job.py:153} INFO - Started process (PID=415) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:03,980] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:03,982] {logging_mixin.py:112} INFO - [2020-12-20 15:18:03,982] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:04,046] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:04,274] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.314 seconds +[2020-12-20 15:18:04,867] {logging_mixin.py:112} INFO - [2020-12-20 15:18:04,867] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=420 +[2020-12-20 15:18:04,878] {scheduler_job.py:153} INFO - Started process (PID=420) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:04,889] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:04,891] {logging_mixin.py:112} INFO - [2020-12-20 15:18:04,891] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:04,928] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:05,039] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.160 seconds +[2020-12-20 15:18:05,951] {logging_mixin.py:112} INFO - [2020-12-20 15:18:05,949] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=425 +[2020-12-20 15:18:05,979] {scheduler_job.py:153} INFO - Started process (PID=425) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:05,993] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:06,001] {logging_mixin.py:112} INFO - [2020-12-20 15:18:06,000] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:06,031] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:06,137] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.159 seconds +[2020-12-20 15:18:06,911] {logging_mixin.py:112} INFO - [2020-12-20 15:18:06,910] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=430 +[2020-12-20 15:18:06,933] {scheduler_job.py:153} INFO - Started process (PID=430) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:06,944] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:06,947] {logging_mixin.py:112} INFO - [2020-12-20 15:18:06,946] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:06,981] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:07,075] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.142 seconds +[2020-12-20 15:18:07,936] {logging_mixin.py:112} INFO - [2020-12-20 15:18:07,935] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=435 +[2020-12-20 15:18:07,945] {scheduler_job.py:153} INFO - Started process (PID=435) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:07,954] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:07,956] {logging_mixin.py:112} INFO - [2020-12-20 15:18:07,956] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:07,993] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:08,129] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.184 seconds +[2020-12-20 15:18:08,966] {logging_mixin.py:112} INFO - [2020-12-20 15:18:08,965] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=440 +[2020-12-20 15:18:08,976] {scheduler_job.py:153} INFO - Started process (PID=440) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:08,985] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:08,987] {logging_mixin.py:112} INFO - [2020-12-20 15:18:08,987] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:09,020] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:09,117] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.141 seconds +[2020-12-20 15:18:09,981] {logging_mixin.py:112} INFO - [2020-12-20 15:18:09,981] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=445 +[2020-12-20 15:18:09,991] {scheduler_job.py:153} INFO - Started process (PID=445) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:10,001] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:10,003] {logging_mixin.py:112} INFO - [2020-12-20 15:18:10,002] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:10,034] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:10,129] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.139 seconds +[2020-12-20 15:18:11,029] {logging_mixin.py:112} INFO - [2020-12-20 15:18:11,028] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=450 +[2020-12-20 15:18:11,040] {scheduler_job.py:153} INFO - Started process (PID=450) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:11,051] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:11,054] {logging_mixin.py:112} INFO - [2020-12-20 15:18:11,053] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:11,088] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:11,185] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.146 seconds +[2020-12-20 15:18:12,031] {logging_mixin.py:112} INFO - [2020-12-20 15:18:12,031] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=455 +[2020-12-20 15:18:12,040] {scheduler_job.py:153} INFO - Started process (PID=455) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:12,050] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:12,052] {logging_mixin.py:112} INFO - [2020-12-20 15:18:12,051] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:12,084] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:12,175] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.135 seconds +[2020-12-20 15:18:13,065] {logging_mixin.py:112} INFO - [2020-12-20 15:18:13,064] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=460 +[2020-12-20 15:18:13,074] {scheduler_job.py:153} INFO - Started process (PID=460) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:13,084] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:13,086] {logging_mixin.py:112} INFO - [2020-12-20 15:18:13,086] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:13,120] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:13,217] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.143 seconds +[2020-12-20 15:18:14,156] {logging_mixin.py:112} INFO - [2020-12-20 15:18:14,151] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=466 +[2020-12-20 15:18:14,203] {scheduler_job.py:153} INFO - Started process (PID=466) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:14,234] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:14,238] {logging_mixin.py:112} INFO - [2020-12-20 15:18:14,237] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:14,300] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:14,599] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.396 seconds +[2020-12-20 15:18:15,212] {logging_mixin.py:112} INFO - [2020-12-20 15:18:15,207] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=471 +[2020-12-20 15:18:15,245] {scheduler_job.py:153} INFO - Started process (PID=471) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:15,279] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:15,290] {logging_mixin.py:112} INFO - [2020-12-20 15:18:15,287] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:15,345] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:15,508] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.263 seconds +[2020-12-20 15:18:16,251] {logging_mixin.py:112} INFO - [2020-12-20 15:18:16,251] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=476 +[2020-12-20 15:18:16,274] {scheduler_job.py:153} INFO - Started process (PID=476) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:16,303] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:16,305] {logging_mixin.py:112} INFO - [2020-12-20 15:18:16,305] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:16,378] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:16,564] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.289 seconds +[2020-12-20 15:18:17,261] {logging_mixin.py:112} INFO - [2020-12-20 15:18:17,260] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=481 +[2020-12-20 15:18:17,282] {scheduler_job.py:153} INFO - Started process (PID=481) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:17,298] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:17,305] {logging_mixin.py:112} INFO - [2020-12-20 15:18:17,304] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:17,369] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:17,557] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.275 seconds +[2020-12-20 15:18:18,281] {logging_mixin.py:112} INFO - [2020-12-20 15:18:18,280] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=486 +[2020-12-20 15:18:18,299] {scheduler_job.py:153} INFO - Started process (PID=486) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:18,322] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:18,328] {logging_mixin.py:112} INFO - [2020-12-20 15:18:18,327] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:18,389] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:18,731] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.432 seconds +[2020-12-20 15:18:19,293] {logging_mixin.py:112} INFO - [2020-12-20 15:18:19,293] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=491 +[2020-12-20 15:18:19,319] {scheduler_job.py:153} INFO - Started process (PID=491) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:19,341] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:19,344] {logging_mixin.py:112} INFO - [2020-12-20 15:18:19,344] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:19,382] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:19,491] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.173 seconds +[2020-12-20 15:18:20,363] {logging_mixin.py:112} INFO - [2020-12-20 15:18:20,361] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=496 +[2020-12-20 15:18:20,395] {scheduler_job.py:153} INFO - Started process (PID=496) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:20,428] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:20,430] {logging_mixin.py:112} INFO - [2020-12-20 15:18:20,430] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:20,513] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:20,787] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.392 seconds +[2020-12-20 15:18:21,331] {logging_mixin.py:112} INFO - [2020-12-20 15:18:21,330] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=501 +[2020-12-20 15:18:21,341] {scheduler_job.py:153} INFO - Started process (PID=501) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:21,350] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:21,352] {logging_mixin.py:112} INFO - [2020-12-20 15:18:21,351] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:21,385] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:21,482] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.141 seconds +[2020-12-20 15:18:22,341] {logging_mixin.py:112} INFO - [2020-12-20 15:18:22,340] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=511 +[2020-12-20 15:18:22,351] {scheduler_job.py:153} INFO - Started process (PID=511) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:22,361] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:22,363] {logging_mixin.py:112} INFO - [2020-12-20 15:18:22,363] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:22,396] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:22,495] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.144 seconds +[2020-12-20 15:18:23,383] {logging_mixin.py:112} INFO - [2020-12-20 15:18:23,382] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=516 +[2020-12-20 15:18:23,393] {scheduler_job.py:153} INFO - Started process (PID=516) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:23,406] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:23,408] {logging_mixin.py:112} INFO - [2020-12-20 15:18:23,407] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:23,446] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:23,537] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.144 seconds +[2020-12-20 15:18:24,410] {logging_mixin.py:112} INFO - [2020-12-20 15:18:24,409] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=521 +[2020-12-20 15:18:24,424] {scheduler_job.py:153} INFO - Started process (PID=521) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:24,449] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:24,453] {logging_mixin.py:112} INFO - [2020-12-20 15:18:24,452] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:24,495] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:24,592] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.168 seconds +[2020-12-20 15:18:25,477] {logging_mixin.py:112} INFO - [2020-12-20 15:18:25,477] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=526 +[2020-12-20 15:18:25,487] {scheduler_job.py:153} INFO - Started process (PID=526) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:25,500] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:25,502] {logging_mixin.py:112} INFO - [2020-12-20 15:18:25,501] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:25,536] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:25,630] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.142 seconds +[2020-12-20 15:18:26,520] {logging_mixin.py:112} INFO - [2020-12-20 15:18:26,519] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=531 +[2020-12-20 15:18:26,531] {scheduler_job.py:153} INFO - Started process (PID=531) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:26,543] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:26,546] {logging_mixin.py:112} INFO - [2020-12-20 15:18:26,545] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:26,588] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:26,749] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.217 seconds +[2020-12-20 15:18:27,548] {logging_mixin.py:112} INFO - [2020-12-20 15:18:27,547] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=536 +[2020-12-20 15:18:27,559] {scheduler_job.py:153} INFO - Started process (PID=536) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:27,571] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:27,574] {logging_mixin.py:112} INFO - [2020-12-20 15:18:27,573] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:27,609] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:27,718] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.159 seconds +[2020-12-20 15:18:28,841] {logging_mixin.py:112} INFO - [2020-12-20 15:18:28,840] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=541 +[2020-12-20 15:18:28,855] {scheduler_job.py:153} INFO - Started process (PID=541) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:28,866] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:28,868] {logging_mixin.py:112} INFO - [2020-12-20 15:18:28,868] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:28,903] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:29,048] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.192 seconds +[2020-12-20 15:18:29,890] {logging_mixin.py:112} INFO - [2020-12-20 15:18:29,890] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=546 +[2020-12-20 15:18:29,904] {scheduler_job.py:153} INFO - Started process (PID=546) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:29,919] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:29,921] {logging_mixin.py:112} INFO - [2020-12-20 15:18:29,920] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:29,966] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:30,067] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.164 seconds +[2020-12-20 15:18:30,903] {logging_mixin.py:112} INFO - [2020-12-20 15:18:30,902] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=551 +[2020-12-20 15:18:30,913] {scheduler_job.py:153} INFO - Started process (PID=551) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:30,922] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:30,924] {logging_mixin.py:112} INFO - [2020-12-20 15:18:30,923] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:30,954] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:31,085] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.173 seconds +[2020-12-20 15:18:31,961] {logging_mixin.py:112} INFO - [2020-12-20 15:18:31,960] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=556 +[2020-12-20 15:18:31,982] {scheduler_job.py:153} INFO - Started process (PID=556) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:31,992] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:31,995] {logging_mixin.py:112} INFO - [2020-12-20 15:18:31,994] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:32,031] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:32,139] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.157 seconds +[2020-12-20 15:18:32,983] {logging_mixin.py:112} INFO - [2020-12-20 15:18:32,983] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=561 +[2020-12-20 15:18:32,993] {scheduler_job.py:153} INFO - Started process (PID=561) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:33,002] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:33,004] {logging_mixin.py:112} INFO - [2020-12-20 15:18:33,004] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:33,036] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:33,134] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.141 seconds +[2020-12-20 15:18:34,009] {logging_mixin.py:112} INFO - [2020-12-20 15:18:34,008] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=566 +[2020-12-20 15:18:34,021] {scheduler_job.py:153} INFO - Started process (PID=566) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:34,032] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:34,034] {logging_mixin.py:112} INFO - [2020-12-20 15:18:34,033] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:34,071] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:34,163] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.142 seconds +[2020-12-20 15:18:35,034] {logging_mixin.py:112} INFO - [2020-12-20 15:18:35,034] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=571 +[2020-12-20 15:18:35,044] {scheduler_job.py:153} INFO - Started process (PID=571) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:35,055] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:35,058] {logging_mixin.py:112} INFO - [2020-12-20 15:18:35,057] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:35,100] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:35,212] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.168 seconds +[2020-12-20 15:18:36,085] {logging_mixin.py:112} INFO - [2020-12-20 15:18:36,085] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=576 +[2020-12-20 15:18:36,097] {scheduler_job.py:153} INFO - Started process (PID=576) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:36,111] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:36,115] {logging_mixin.py:112} INFO - [2020-12-20 15:18:36,114] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:36,208] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:36,804] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.706 seconds +[2020-12-20 15:18:37,162] {logging_mixin.py:112} INFO - [2020-12-20 15:18:37,161] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=581 +[2020-12-20 15:18:37,202] {scheduler_job.py:153} INFO - Started process (PID=581) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:37,233] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:37,237] {logging_mixin.py:112} INFO - [2020-12-20 15:18:37,237] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:37,298] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:37,482] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.280 seconds +[2020-12-20 15:18:38,456] {logging_mixin.py:112} INFO - [2020-12-20 15:18:38,456] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=586 +[2020-12-20 15:18:38,507] {scheduler_job.py:153} INFO - Started process (PID=586) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:38,565] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:38,571] {logging_mixin.py:112} INFO - [2020-12-20 15:18:38,570] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:38,694] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:39,161] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.654 seconds +[2020-12-20 15:18:39,372] {logging_mixin.py:112} INFO - [2020-12-20 15:18:39,371] {settings.py:253} INFO - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=3600, pid=591 +[2020-12-20 15:18:39,400] {scheduler_job.py:153} INFO - Started process (PID=591) to work on /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:39,422] {scheduler_job.py:1560} INFO - Processing file /usr/local/airflow/dags/dummy_dag.py for tasks to queue +[2020-12-20 15:18:39,426] {logging_mixin.py:112} INFO - [2020-12-20 15:18:39,426] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:39,487] {scheduler_job.py:1572} INFO - DAG(s) dict_keys(['example_dag']) retrieved from /usr/local/airflow/dags/dummy_dag.py +[2020-12-20 15:18:39,662] {scheduler_job.py:161} INFO - Processing /usr/local/airflow/dags/dummy_dag.py took 0.262 seconds diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..c2e208a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,273 @@ +version: "3.7" +services: + hivemetastore: + image: postgres:11.5 + hostname: hivemetastore + environment: + POSTGRES_PASSWORD: new_password + expose: + - 5432 + volumes: + - ./docker/hive/init.sql:/docker-entrypoint-initdb.d/init.sql + healthcheck: + test: ["CMD-SHELL", "pg_isready -U postgres"] + interval: 20s + timeout: 10s + retries: 5 + networks: + spark_net: + ipv4_address: 172.28.1.4 + extra_hosts: + - "master:172.28.1.1" + - "worker1:172.28.1.2" + - "worker2:172.28.1.3" + - "zeppelin:172.28.1.5" + - "livy:172.28.1.6" + + master: + # image: panovvv/hadoop-hive-spark:2.5 + build: + context: . + dockerfile: ./docker/master/Dockerfile + hostname: master + # depends_on: + # - hivemetastore + environment: + HADOOP_NODE: namenode + HIVE_CONFIGURE: yes, please + SPARK_PUBLIC_DNS: localhost + SPARK_LOCAL_IP: 172.28.1.1 + SPARK_MASTER_HOST: 172.28.1.1 + SPARK_LOCAL_HOSTNAME: master + expose: + - 1-65535 + ports: + # Spark Master Web UI + - 8080:8080 + # Spark job Web UI: increments for each successive job + - 4040:4040 + - 4041:4041 + - 4042:4042 + - 4043:4043 + # Spark History server + - 18080:18080 + # YARN UI + - 8088:8088 + # Hadoop namenode UI + - 9870:9870 + # Hadoop secondary namenode UI + - 9868:9868 + # Hive JDBC + - 10000:10000 + volumes: + - ./data:/data + networks: + spark_net: + ipv4_address: 172.28.1.1 + extra_hosts: + - "worker1:172.28.1.2" + - "worker2:172.28.1.3" + - "hivemetastore:172.28.1.4" + - "zeppelin:172.28.1.5" + - "livy:172.28.1.6" + + worker1: + image: panovvv/hadoop-hive-spark:2.5 +# build: '../hadoop-hive-spark-docker' + hostname: worker1 + # depends_on: + # - hivemetastore + environment: + SPARK_MASTER_ADDRESS: spark://master:7077 + SPARK_WORKER_PORT: 8881 + SPARK_WORKER_WEBUI_PORT: 8081 + SPARK_PUBLIC_DNS: localhost + SPARK_LOCAL_HOSTNAME: worker1 + SPARK_LOCAL_IP: 172.28.1.2 + SPARK_MASTER_HOST: 172.28.1.1 + HADOOP_NODE: datanode + expose: + - 1-65535 + ports: + # Hadoop datanode UI + - 9864:9864 + #Spark worker UI + - 8081:8081 + volumes: + - ./data:/data + networks: + spark_net: + ipv4_address: 172.28.1.2 + extra_hosts: + - "master:172.28.1.1" + - "worker2:172.28.1.3" + - "hivemetastore:172.28.1.4" + - "zeppelin:172.28.1.5" + - "livy:172.28.1.6" + + worker2: + image: panovvv/hadoop-hive-spark:2.5 +# build: '../hadoop-hive-spark-docker' + hostname: worker2 + # depends_on: + # - hivemetastore + environment: + SPARK_MASTER_ADDRESS: spark://master:7077 + SPARK_WORKER_PORT: 8882 + SPARK_WORKER_WEBUI_PORT: 8082 + SPARK_PUBLIC_DNS: localhost + SPARK_LOCAL_HOSTNAME: worker2 + SPARK_LOCAL_IP: 172.28.1.3 + SPARK_MASTER_HOST: 172.28.1.1 + HADOOP_NODE: datanode + HADOOP_DATANODE_UI_PORT: 9865 + expose: + - 1-65535 + ports: + # Hadoop datanode UI + - 9865:9865 + # Spark worker UI + - 8082:8082 + volumes: + - ./data:/data + networks: + spark_net: + ipv4_address: 172.28.1.3 + extra_hosts: + - "master:172.28.1.1" + - "worker1:172.28.1.2" + - "hivemetastore:172.28.1.4" + - "zeppelin:172.28.1.5" + - "livy:172.28.1.6" + + livy: + image: panovvv/livy:2.5 +# build: '../livy-docker' + hostname: livy + depends_on: + - master + - worker1 + - worker2 + volumes: + - ./livy_batches:/livy_batches + - ./data:/data + environment: + - SPARK_MASTER=yarn + # Intentionally not specified - if it's set here, then we can't override it + # via REST API ("conf"={} map) + # Can be client or cluster +# - SPARK_DEPLOY_MODE=client + + - LOCAL_DIR_WHITELIST=/data/batches/ + - ENABLE_HIVE_CONTEXT=false + # Defaults are fine for variables below. Uncomment to change them. +# - LIVY_HOST=0.0.0.0 +# - LIVY_PORT=8998 + expose: + - 1-65535 + ports: + - 8998:8998 + networks: + spark_net: + ipv4_address: 172.28.1.6 + extra_hosts: + - "master:172.28.1.1" + - "worker1:172.28.1.2" + - "worker2:172.28.1.3" + - "hivemetastore:172.28.1.4" + - "zeppelin:172.28.1.5" + + zeppelin: + image: panovvv/zeppelin-bigdata:2.5 +# build: '../zeppelin-bigdata-docker' + hostname: zeppelin + depends_on: + - master + - worker1 + - worker2 + - livy + volumes: + - ./zeppelin_notebooks:/zeppelin_notebooks + - ./data:/data + environment: + ZEPPELIN_PORT: 8890 + ZEPPELIN_NOTEBOOK_DIR: '/zeppelin_notebooks' + expose: + - 8890 + ports: + - 8890:8890 + networks: + spark_net: + ipv4_address: 172.28.1.5 + extra_hosts: + - "master:172.28.1.1" + - "worker1:172.28.1.2" + - "worker2:172.28.1.3" + - "hivemetastore:172.28.1.4" + - "livy:172.28.1.6" + postgres: + image: postgres:9.6 + environment: + - POSTGRES_USER=airflow + - POSTGRES_PASSWORD=airflow + - POSTGRES_DB=airflow + ports: + - "5433:5432" + logging: + options: + max-size: 10m + max-file: "3" + scheduler: + container_name: "scheduler" + build: + context: . + dockerfile: ./docker/airflow/Dockerfile + command: scheduler + restart: always + depends_on: + - postgres + env_file: + - ./docker/airflow/.env + volumes: + - ./airflow/dags:/usr/local/airflow/dags + - ./airflow/plugins:/usr/local/airflow/plugins + - ./airflow/logs:/usr/local/airflow/logs + webserver: + container_name: "webserver" + # image: puckel/docker-airflow:1.10.9 + build: + context: . + dockerfile: ./docker/airflow/Dockerfile + restart: always + depends_on: + - postgres + - scheduler + environment: + - LOAD_EX=n + - EXECUTOR=Local + - PYSPARK_PYTHON=/usr/bin/python3 + volumes: + - ./airflow/dags:/usr/local/airflow/dags + - ./airflow/plugins:/usr/local/airflow/plugins + - ./airflow/logs:/usr/local/airflow/logs + ports: + - "9001:8080" + command: webserver + healthcheck: + test: ["CMD-SHELL", "[ -f /usr/local/airflow/airflow-webserver.pid ]"] + interval: 30s + timeout: 30s + retries: 3 + +networks: + spark_net: + ipam: + driver: default + config: + - subnet: 172.28.0.0/16 + + + + + + diff --git a/docker/airflow/.env b/docker/airflow/.env new file mode 100644 index 0000000..79e1ce5 --- /dev/null +++ b/docker/airflow/.env @@ -0,0 +1,4 @@ +#.env + +AIRFLOW__CORE__SQL_ALCHEMY_CONN=postgresql+psycopg2://airflow:airflow@postgres/airflow +AIRFLOW__CORE__EXECUTOR=LocalExecutor \ No newline at end of file diff --git a/docker/airflow/Dockerfile b/docker/airflow/Dockerfile new file mode 100644 index 0000000..de70452 --- /dev/null +++ b/docker/airflow/Dockerfile @@ -0,0 +1,92 @@ +FROM bitnami/spark:2.4.4 +LABEL Alan + +# Never prompts the user for choices on installation/configuration of packages +ENV DEBIAN_FRONTEND noninteractive +ENV TERM linux + +# Airflow +ARG AIRFLOW_VERSION=1.10.9 +ARG AIRFLOW_USER_HOME=/usr/local/airflow +ARG AIRFLOW_DEPS="" +ARG PYTHON_DEPS="" +ENV AIRFLOW_HOME=${AIRFLOW_USER_HOME} + +# Define en_US. +ENV LANGUAGE en_US.UTF-8 +ENV LANG en_US.UTF-8 +ENV LC_ALL en_US.UTF-8 +ENV LC_CTYPE en_US.UTF-8 +ENV LC_MESSAGES en_US.UTF-8 +ENV LC_ALL en_US.UTF-8 + +USER root + +RUN set -ex \ + && buildDeps=' \ + freetds-dev \ + python-dev \ + python3-dev \ + libkrb5-dev \ + libsasl2-dev \ + libssl-dev \ + libffi-dev \ + libpq-dev \ + git \ + libxslt-dev \ + build-essential \ + libblas-dev \ + liblapack-dev \ + libpq-dev \ + git \ + ' \ + && apt-get update -yqq \ + && apt-get upgrade -yqq \ + && apt-get install -yqq --no-install-recommends \ + $buildDeps \ + freetds-bin \ + build-essential \ + default-libmysqlclient-dev \ + apt-utils \ + curl \ + rsync \ + netcat \ + locales \ + && sed -i 's/^# en_US.UTF-8 UTF-8$/en_US.UTF-8 UTF-8/g' /etc/locale.gen \ + && locale-gen \ + && update-locale LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 \ + && useradd -ms /bin/bash -d ${AIRFLOW_USER_HOME} airflow \ + && pip install -U pip setuptools wheel \ + && pip install pytz \ + && pip install pyOpenSSL \ + && pip install ndg-httpsclient \ + && pip install pyasn1 \ + && pip install SQLAlchemy==1.3.15 \ + && pip install apache-airflow[crypto,celery,postgres,hive,jdbc,mysql,ssh${AIRFLOW_DEPS:+,}${AIRFLOW_DEPS}]==${AIRFLOW_VERSION} \ + && pip install 'redis==3.2' \ + && if [ -n "${PYTHON_DEPS}" ]; then pip install ${PYTHON_DEPS}; fi \ + && apt-get purge --auto-remove -yqq $buildDeps \ + && apt-get autoremove -yqq --purge \ + && apt-get clean \ + && rm -rf \ + /var/lib/apt/lists/* \ + /tmp/* \ + /var/tmp/* \ + /usr/share/man \ + /usr/share/doc \ + /usr/share/doc-base + +COPY docker/airflow/entrypoint.sh /entrypoint.sh + +COPY airflow/config/airflow.cfg ${AIRFLOW_USER_HOME}/airflow.cfg + +RUN chown -R airflow: ${AIRFLOW_USER_HOME} +RUN chmod -R o+rx $SPARK_HOME/jars + +RUN echo "EXPORT HADOOP_OPTIONAL_TOOLS=hadoop-aws" >> $HADOOP_CONF_DIR/hadoop-env.sh + +EXPOSE 8080 5555 8793 + +USER airflow +WORKDIR ${AIRFLOW_HOME} +ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file diff --git a/docker/airflow/conf/hadoop/core-site.xml b/docker/airflow/conf/hadoop/core-site.xml new file mode 100644 index 0000000..c89698f --- /dev/null +++ b/docker/airflow/conf/hadoop/core-site.xml @@ -0,0 +1,32 @@ + + + + + + + + fs.defaultFS + hdfs://master:9000 + + + + fs.default.name + hdfs://master:9000 + + + + + hadoop.tmp.dir + + + + + hadoop.proxyuser.root.groups + * + + + hadoop.proxyuser.root.hosts + * + + diff --git a/docker/airflow/conf/hadoop/hadoop-env.sh b/docker/airflow/conf/hadoop/hadoop-env.sh new file mode 100644 index 0000000..7988543 --- /dev/null +++ b/docker/airflow/conf/hadoop/hadoop-env.sh @@ -0,0 +1,3 @@ +# The java implementation to use. By default, this environment +# variable is REQUIRED on ALL platforms except OS X! +export JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk \ No newline at end of file diff --git a/docker/airflow/conf/hadoop/hdfs-site.xml b/docker/airflow/conf/hadoop/hdfs-site.xml new file mode 100644 index 0000000..0d7121d --- /dev/null +++ b/docker/airflow/conf/hadoop/hdfs-site.xml @@ -0,0 +1,24 @@ + + + + + + + + dfs.namenode.name.dir + /dfs/name + + + + dfs.datanode.data.dir + /dfs/data + + + + + dfs.replication + 2 + + + \ No newline at end of file diff --git a/docker/airflow/conf/hadoop/mapred-site.xml b/docker/airflow/conf/hadoop/mapred-site.xml new file mode 100644 index 0000000..5e3c8d0 --- /dev/null +++ b/docker/airflow/conf/hadoop/mapred-site.xml @@ -0,0 +1,31 @@ + + + + + + + + mapreduce.framework.name + yarn + + + + + + yarn.app.mapreduce.am.resource.memory-mb + 512 + + + + mapreduce.map.resource.memory-mb + 512 + + + + mapreduce.reduce.resource.memory-mb + 2048 + + + diff --git a/docker/airflow/conf/hadoop/workers b/docker/airflow/conf/hadoop/workers new file mode 100644 index 0000000..bab9635 --- /dev/null +++ b/docker/airflow/conf/hadoop/workers @@ -0,0 +1,2 @@ +worker1 +worker2 \ No newline at end of file diff --git a/docker/airflow/conf/hadoop/yarn-site.xml b/docker/airflow/conf/hadoop/yarn-site.xml new file mode 100644 index 0000000..8eff675 --- /dev/null +++ b/docker/airflow/conf/hadoop/yarn-site.xml @@ -0,0 +1,80 @@ + + + + + + + + + yarn.resourcemanager.hostname + master + + + + + yarn.nodemanager.aux-services + mapreduce_shuffle + + + yarn.nodemanager.aux-services.mapreduce.shuffle.class + org.apache.hadoop.mapred.ShuffleHandler + + + + + + + yarn.nodemanager.resource.memory-mb + 8192 + + + + + yarn.scheduler.maximum-allocation-mb + 4096 + + + yarn.scheduler.minimum-allocation-mb + 512 + + + + + yarn.scheduler.maximum-allocation-vcores + 4 + + + yarn.scheduler.minimum-allocation-vcores + 1 + + + + + yarn.resourcemanager.scheduler.class + + org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler + + + + + yarn.nodemanager.vmem-check-enabled + false + + + diff --git a/docker/airflow/conf/spark/spark-defaults.conf b/docker/airflow/conf/spark/spark-defaults.conf new file mode 100644 index 0000000..b657d01 --- /dev/null +++ b/docker/airflow/conf/spark/spark-defaults.conf @@ -0,0 +1,26 @@ +# Default system properties included when running spark-submit. +# This is useful for setting default environmental settings. + +# Port settings +spark.ui.port 4040 +spark.driver.port 7001 +spark.blockManager.port 7002 +spark.port.maxRetries 4 +spark.history.ui.port 18080 + +# Run Spark jobs in YARN +spark.master yarn +spark.yarn.jars hdfs://master:9000/spark-jars/* + +# Spark history server +spark.eventLog.enabled true +spark.eventLog.dir hdfs:///log/spark +spark.history.fs.logDirectory hdfs:///log/spark + +# Spark with Hive +# TODO enable when they remove HIVE_STATS_JDBC_TIMEOUT +# https://github.com/apache/spark/commit/1d95dea30788b9f64c5e304d908b85936aafb238#diff-842e3447fc453de26c706db1cac8f2c4 +# https://issues.apache.org/jira/browse/SPARK-13446 +#spark.sql.catalogImplementation hive +#spark.sql.hive.metastore.version 2.3.0 +#spark.sql.hive.metastore.jars /usr/hive/lib/*:/usr/hadoop/etc/hadoop/*:/usr/hadoop/share/hadoop/common/*:/usr/hadoop/share/hadoop/common/lib/*:/usr/hadoop/share/hadoop/common/sources/*:/usr/hadoop/share/hadoop/hdfs/*:/usr/hadoop/share/hadoop/hdfs/lib/*:/usr/hadoop/share/hadoop/hdfs/sources/*:/usr/hadoop/share/hadoop/mapreduce/*:/usr/hadoop/share/hadoop/mapreduce/lib/*:/usr/hadoop/share/hadoop/mapreduce/sources/*:/usr/hadoop/share/hadoop/yarn/*:/usr/hadoop/share/hadoop/yarn/lib/*:/usr/hadoop/share/hadoop/yarn/sources/*:/usr/hadoop/share/hadoop/yarn/timelineservice/*:/usr/hadoop/share/hadoop/client/*:/usr/hadoop/share/hadoop/tools/lib/*:/usr/hadoop/share/hadoop/tools/sources/* \ No newline at end of file diff --git a/docker/airflow/entrypoint.sh b/docker/airflow/entrypoint.sh new file mode 100644 index 0000000..00c7954 --- /dev/null +++ b/docker/airflow/entrypoint.sh @@ -0,0 +1,94 @@ +#!/usr/bin/env bash + +AIRFLOW_HOME="/usr/local/airflow" +CMD="airflow" +TRY_LOOP="20" + +: ${REDIS_HOST:="redis"} +: ${REDIS_PORT:="6379"} + +: ${POSTGRES_HOST:="postgres"} +: ${POSTGRES_PORT:="5432"} +: ${POSTGRES_USER:="airflow"} +: ${POSTGRES_PASSWORD:="airflow"} +: ${POSTGRES_DB:="airflow"} + +: ${FERNET_KEY:=$(python -c "from cryptography.fernet import Fernet; FERNET_KEY = Fernet.generate_key().decode(); print(FERNET_KEY)")} + +# Load DAGs exemples (default: Yes) +if [ "$LOAD_EX" = "n" ]; then + sed -i "s/load_examples = True/load_examples = False/" "$AIRFLOW_HOME"/airflow.cfg +fi + +# Install custome python package if requirements.txt is present +if [ -e "/requirements.txt" ]; then + $(which pip) install --user -r /requirements.txt +fi + +# Update airflow config - Fernet key +sed -i "s|\$FERNET_KEY|$FERNET_KEY|" "$AIRFLOW_HOME"/airflow.cfg + +# Wait for Postresql +if [ "$1" = "webserver" ] || [ "$1" = "worker" ] || [ "$1" = "scheduler" ] ; then + i=0 + while ! nc -z $POSTGRES_HOST $POSTGRES_PORT >/dev/null 2>&1 < /dev/null; do + i=$((i+1)) + if [ "$1" = "webserver" ]; then + echo "$(date) - waiting for ${POSTGRES_HOST}:${POSTGRES_PORT}... $i/$TRY_LOOP" + if [ $i -ge $TRY_LOOP ]; then + echo "$(date) - ${POSTGRES_HOST}:${POSTGRES_PORT} still not reachable, giving up" + exit 1 + fi + fi + sleep 10 + done +fi + +# Update configuration depending the type of Executor +if [ "$EXECUTOR" = "Celery" ] +then + # Wait for Redis + if [ "$1" = "webserver" ] || [ "$1" = "worker" ] || [ "$1" = "scheduler" ] || [ "$1" = "flower" ] ; then + j=0 + while ! nc -z $REDIS_HOST $REDIS_PORT >/dev/null 2>&1 < /dev/null; do + j=$((j+1)) + if [ $j -ge $TRY_LOOP ]; then + echo "$(date) - $REDIS_HOST still not reachable, giving up" + exit 1 + fi + echo "$(date) - waiting for Redis... $j/$TRY_LOOP" + sleep 5 + done + fi + sed -i "s#celery_result_backend = db+postgresql://airflow:airflow@postgres/airflow#celery_result_backend = db+postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB#" "$AIRFLOW_HOME"/airflow.cfg + sed -i "s#sql_alchemy_conn = postgresql+psycopg2://airflow:airflow@postgres/airflow#sql_alchemy_conn = postgresql+psycopg2://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB#" "$AIRFLOW_HOME"/airflow.cfg + sed -i "s#broker_url = redis://redis:6379/1#broker_url = redis://$REDIS_HOST:$REDIS_PORT/1#" "$AIRFLOW_HOME"/airflow.cfg + if [ "$1" = "webserver" ]; then + echo "Initialize database..." + $CMD initdb + exec $CMD webserver + else + sleep 10 + exec $CMD "$@" + fi +elif [ "$EXECUTOR" = "Local" ] +then + sed -i "s/executor = CeleryExecutor/executor = LocalExecutor/" "$AIRFLOW_HOME"/airflow.cfg + sed -i "s#sql_alchemy_conn = postgresql+psycopg2://airflow:airflow@postgres/airflow#sql_alchemy_conn = postgresql+psycopg2://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB#" "$AIRFLOW_HOME"/airflow.cfg + sed -i "s#broker_url = redis://redis:6379/1#broker_url = redis://$REDIS_HOST:$REDIS_PORT/1#" "$AIRFLOW_HOME"/airflow.cfg + echo "Initialize database..." + $CMD initdb + exec $CMD webserver & + exec $CMD scheduler +# By default we use SequentialExecutor +else + if [ "$1" = "version" ]; then + exec $CMD version + exit + fi + sed -i "s/executor = CeleryExecutor/executor = SequentialExecutor/" "$AIRFLOW_HOME"/airflow.cfg + sed -i "s#sql_alchemy_conn = postgresql+psycopg2://airflow:airflow@postgres/airflow#sql_alchemy_conn = sqlite:////usr/local/airflow/airflow.db#" "$AIRFLOW_HOME"/airflow.cfg + echo "Initialize database..." + $CMD initdb + exec $CMD webserver +fi \ No newline at end of file diff --git a/docker/hive/init.sql b/docker/hive/init.sql new file mode 100644 index 0000000..cc1ad45 --- /dev/null +++ b/docker/hive/init.sql @@ -0,0 +1 @@ +CREATE DATABASE "hivemetastoredb"; \ No newline at end of file diff --git a/docker/master/Dockerfile b/docker/master/Dockerfile new file mode 100644 index 0000000..9b5b9c4 --- /dev/null +++ b/docker/master/Dockerfile @@ -0,0 +1,21 @@ +FROM panovvv/hadoop-hive-spark:2.5 +LABEL maintainer "Alan " + +# COPY . / +# COPY . entrypoint.sh / +# RUN chmod +x /master.sh +# RUN chmod +x /entrypoint.sh + +RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python +RUN python3 -m ensurepip +RUN pip3 install --no-cache --upgrade pip setuptools + +RUN apk add --no-cache bash git openssh +COPY requirements.txt /opt/requirements.txt +RUN pip install -r /opt/requirements.txt +COPY . /opt + +# Expose port +# EXPOSE 8080 7077 8998 + +# CMD ["/bin/bash", "/master.sh", "/entrypoint.sh"] \ No newline at end of file diff --git a/docker/master/entrypoint.sh b/docker/master/entrypoint.sh new file mode 100644 index 0000000..4e2a4d7 --- /dev/null +++ b/docker/master/entrypoint.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Configure Livy based on environment variables +if [[ -n "${SPARK_MASTER}" ]]; then + echo "livy.spark.master=${SPARK_MASTER}" >> "${LIVY_CONF_DIR}/livy.conf" +fi +if [[ -n "${SPARK_DEPLOY_MODE}" ]]; then + echo "livy.spark.deploy-mode=${SPARK_DEPLOY_MODE}" >> "${LIVY_CONF_DIR}/livy.conf" +fi +if [[ -n "${LOCAL_DIR_WHITELIST}" ]]; then + echo "livy.file.local-dir-whitelist=${LOCAL_DIR_WHITELIST}" >> "${LIVY_CONF_DIR}/livy.conf" +fi +if [[ -n "${ENABLE_HIVE_CONTEXT}" ]]; then + echo "livy.repl.enable-hive-context=${ENABLE_HIVE_CONTEXT}" >> "${LIVY_CONF_DIR}/livy.conf" +fi +if [[ -n "${LIVY_HOST}" ]]; then + echo "livy.server.host=${LIVY_HOST}" >> "${LIVY_CONF_DIR}/livy.conf" +fi +if [[ -n "${LIVY_PORT}" ]]; then + echo "livy.server.port=${LIVY_PORT}" >> "${LIVY_CONF_DIR}/livy.conf" +fi + +"$LIVY_HOME/bin/livy-server" $@ \ No newline at end of file diff --git a/docker/master/master.sh b/docker/master/master.sh new file mode 100644 index 0000000..cb76cb5 --- /dev/null +++ b/docker/master/master.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +export SPARK_HOME=/spark + +export SPARK_MASTER_HOST=`hostname` + +. "/spark/sbin/spark-config.sh" + +. "/spark/bin/load-spark-env.sh" + +mkdir -p $SPARK_MASTER_LOG + +ln -sf /dev/stdout $SPARK_MASTER_LOG/spark-master.out + +cd /spark/bin && /spark/sbin/../bin/spark-class org.apache.spark.deploy.master.Master \ + --ip $SPARK_MASTER_HOST --port $SPARK_MASTER_PORT --webui-port $SPARK_MASTER_WEBUI_PORT >> $SPARK_MASTER_LOG/spark-master.out \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 074087fc1391d0523d537e36bf46149cf82fa6c1..3cc737484a9f3e9626a275175a6870cde5c319ea 100644 GIT binary patch delta 12 TcmeysdX9C&BF4=}7