Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(sinan): refactor sinan dag #178

Merged
merged 22 commits into from
Mar 28, 2023
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conda/airflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- nodefaults
- conda-forge
dependencies:
- airflow 2.3.3
- airflow 2.5.2
- fiona
- geopandas
- gsheetsdb
Expand Down
8 changes: 4 additions & 4 deletions containers/airflow/airflow.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ execute_tasks_new_python_interpreter = False
donot_pickle = True

# How long before timing out a python file import
dagbag_import_timeout = 30.0
dagbag_import_timeout = 300.0

# Should a traceback be shown in the UI for dagbag import errors,
# instead of just the exception message
Expand Down Expand Up @@ -316,7 +316,7 @@ encrypt_s3_logs = False
# Logging level.
#
# Supported values: ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, ``DEBUG``.
logging_level = INFO
logging_level = DEBUG

# Logging level for celery. If not set, it uses the value of logging_level
#
Expand Down Expand Up @@ -881,7 +881,7 @@ pool = prefork

# The number of seconds to wait before timing out ``send_task_to_executor`` or
# ``fetch_celery_task_state`` operations.
operation_timeout = 1.0
operation_timeout = 5.0

# Celery task will report its status as 'started' when the task is executed by a worker.
# This is used in Airflow to keep track of the running tasks and if a Scheduler is restarted
Expand Down Expand Up @@ -960,7 +960,7 @@ min_file_process_interval = 30

# How often (in seconds) to check for stale DAGs (DAGs which are no longer present in
# the expected files) which should be deactivated.
deactivate_stale_dags_interval = 60
parsing_cleanup_interval = 60

# How often (in seconds) to scan the DAGs directory for new files. Default to 5 minutes.
dag_dir_list_interval = 300
Expand Down
Loading