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