일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- everybody wants you
- 우한 코로나
- red hearse
- 웨일즈
- 봉준호감독통역
- 중국외교부
- 코로나
- sharonchoi
- 확진자수
- 우한코로나
- 봉준호감독통역사
- 코로나19
- 우한코로나바이러스
- 미중
- parasite
- 어서와한국은처음이지
- 신종코로나
- 진짜영웅
- 전염병
- 필리핀사망
- 창궐
- 최성재
- 코로나바이러스
- 우한
- 치앙마이
- cnn
- 조현병
- 정은경 본부장님
- wuhan
- Bolton
- 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 ..