일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 진짜영웅
- sharonchoi
- Bolton
- 코로나19
- 코로나바이러스
- 창궐
- 중국외교부
- wuhan
- 전염병
- 확진자수
- 우한코로나바이러스
- 어서와한국은처음이지
- #항해플러스후기
- 최성재
- 우한코로나
- 우한
- 치앙마이
- 조현병
- 봉준호감독통역사
- 우한 코로나
- 필리핀사망
- 신종코로나
- 정은경 본부장님
- 봉준호감독통역
- 웨일즈
- everybody wants you
- parasite
- 미중
- red hearse
- 코로나
- Today
- Total
목록개발노트/airflow (2)
오지's blog
https://sftp_multiple_files_download_operator.py/ import os from airflow.exceptions import AirflowException from airflow.models import BaseOperator # from airflow.contrib.hooks import SSHHook from airflow.providers.ssh.hooks.ssh import SSHHook from typing import Any class SFTPMultipleFilesDownloadOperator(BaseOperator): template_fields = ('local_directory', 'remote_filename_pattern', 'remote_hos..
dag_run.logical_date.astimezone(dag.timezone) date_check = PythonOperator(task_id="date_check", python_callable=date_check,dag=dag, op_kwargs={'table_name':'marketing', 'date':'{{dag_run.logical_date.astimezone(dag.timezone) | prev_ds_nodash}}'}) References https://stackoverflow.com/questions/70924756/airflow-wrong-execution-date-for-timezone-aware-dags Airflow wrong execution_date for timezone ..