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