반응형
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
- PySpark
- 파이썬
- Github
- list
- hive
- Tkinter
- dataframe
- Apache
- Google Spreadsheet
- Python
- PANDAS
- string
- Redshift
- Google Excel
- numpy
- math
- c#
- django
- google apps script
- matplotlib
- GIT
- PostgreSQL
- Kotlin
- SQL
- Java
- Presto
- Excel
- array
- gas
Archives
- Today
- Total
목록PostgresOperator (1)
달나라 노트
Airflow Operator : PostgresOperator (PostgreSQL query 실행)
Airflow의 PostgresOperator는 PostgreSQL database와 communication하는 것을 가능하게 해주는 operator입니다.간단하게 말하면 PostgreSQL database에 query를 날려서 query를 수행시킬 수 있다는 것인데, AWS의 Redshift 등이 대표적입니다. 예시를 봅시다. from airflow import DAGdag = DAG( dag_id='test_dag', start_date=datetime.datetime(2022, 9, 27), schedule_interval='0 20 * * *')from airflow.providers.postgres.operators.postgres import PostgresOperator ..
Airflow/Airflow Operator
2025. 10. 18. 12:47