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 | 29 | 30 | 31 |
Tags
- 종류
- linux
- 운영체제
- 정리
- TIL
- 파이썬
- S3
- 데브코스
- sql
- redshift
- Docker
- Django
- Go
- 컴퓨터네트워크
- 컴퓨터 네트워크
- http
- 데이터엔지니어링
- AWS
- dockerfile
- 데이터 웨어하우스
- 데이터 엔지니어링
- PYTHON
- airflow
- 가상환경
- TCP
- 데이터 파이프라인
- 자료구조
- airflow.cfg
- HADOOP
- 데이터베이스
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