반응형
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
- c#
- numpy
- google apps script
- django
- string
- PostgreSQL
- Github
- gas
- Tkinter
- Apache
- 파이썬
- Excel
- Google Spreadsheet
- hive
- dataframe
- Kotlin
- PySpark
- Google Excel
- Python
- math
- matplotlib
- PANDAS
- Presto
- list
- GIT
- Java
- array
- Redshift
- SQL
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