[2020-12-26 00:02:57,163] {{standard_task_runner.py:78}} INFO - Job 274: Subtask get_airflow_cfg_task | |
[2020-12-26 00:02:57,583] {{logging_mixin.py:112}} INFO - | |
[core] | |
# 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, Google Cloud Storage or Elastic Search. | |
# Set this to True if you want to enable remote logging. | |
remote_logging = True | |
# Users must supply an Airflow connection id that provides access to the storage | |
# location. | |
remote_log_conn_id = aws_default | |
remote_base_log_folder = cloudwatch://arn:aws:logs:::log-group:airflow-logs:* | |
encrypt_s3_logs = False | |
# Logging level | |
logging_level = INFO | |
# Logging level for Flask-appbuilder UI | |
fab_logging_level = WARN | |
# Logging class | |
# Specify the class that will specify the logging configuration | |
# This class has to be on the python classpath | |
# Example: logging_config_class = my.path.default_local_settings.LOGGING_CONFIG | |
logging_config_class = log_config.LOGGING_CONFIG | |
... | |
# 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 | |
... | |
[aws_mwaa] | |
redirect_url = https://console.aws.amazon.com/ | |
session_duration_minutes = 720 | |
[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 | |
# Default timezone to display all dates in the RBAC UI, can be UTC, system, or | |
# any IANA timezone string (e.g. Europe/Amsterdam). If left empty the | |
# default value of core/default_timezone will be used | |
# Example: default_ui_timezone = America/New_York | |
default_ui_timezone = UTC | |
# 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 | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment