Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- http
- redshift
- Django
- 데브코스
- 데이터 엔지니어링
- 파이썬
- 컴퓨터네트워크
- Go
- PYTHON
- 운영체제
- 종류
- 가상환경
- airflow.cfg
- 컴퓨터 네트워크
- TCP
- Docker
- HADOOP
- AWS
- S3
- 데이터베이스
- linux
- 데이터엔지니어링
- 자료구조
- dockerfile
- 데이터 웨어하우스
- 정리
- sql
- airflow
- 데이터 파이프라인
- TIL
Archives
- Today
- Total
목록task decorator (1)
홍카나의 공부방
[Airflow] Task Decorator 간단 사용법
from airflow import DAG import pendulum from airflow.decorators import task with DAG( dag_id="example_python_operator", schedule="0 9 * * *", start_date=pendulum.datetime(2023, 11, 1, tz="Asia/Seoul"), catchup=False, tags=["example"], ) as dag: # [START howto_operator_python] @task(task_id="python_task_1") def print_context(some_input): print(some_input) python_task_1 = print_context("task decor..
Data Engineering/Airflow
2023. 11. 16. 14:40