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 |
Tags
- linux
- 운영체제
- 정리
- 데이터베이스
- dockerfile
- 가상환경
- 종류
- redshift
- 데이터 엔지니어링
- S3
- airflow
- sql
- 데이터 파이프라인
- 컴퓨터 네트워크
- http
- 데이터엔지니어링
- PYTHON
- TCP
- 자료구조
- HADOOP
- airflow.cfg
- Django
- Go
- 파이썬
- Docker
- AWS
- 컴퓨터네트워크
- 데브코스
- 데이터 웨어하우스
- TIL
Archives
- Today
- Total
목록PythonOperator (1)
홍카나의 공부방
[DE 데브코스] 06.05 TIL - Airflow 예제
Hello World DAG 만들어보기 Python Operator를 이용하여 Airflow dag를 만들어본다. from airflow.operators.python import PythonOperator from datetime import datetime from airflow import DAG dag = DAG( dag_id ="helloWorld", start_date = datetime(2021,8,26), catchup=False, tags = ['example'], schedule = '0 2 * * *' ) def print_hello(): print("hello!") return "hello!" def print_world(): print("world!") return "world!"..
Data Engineering/프로그래머스 데브코스
2023. 6. 6. 15:38