airflow.providers.google.cloud.transfers.postgres_to_gcs
¶
PostgreSQL 到 GCS 操作符。
模块内容¶
类¶
以 JSON、CSV 或 Parquet 格式将数据从 Postgres 复制到 Google Cloud Storage。 |
- class airflow.providers.google.cloud.transfers.postgres_to_gcs.PostgresToGCSOperator(*, postgres_conn_id='postgres_default', use_server_side_cursor=False, cursor_itersize=2000, **kwargs)[源代码]¶
基类:
airflow.providers.google.cloud.transfers.sql_to_gcs.BaseSQLToGCSOperator
以 JSON、CSV 或 Parquet 格式将数据从 Postgres 复制到 Google Cloud Storage。
另请参阅
有关如何使用此操作符的更多信息,请查看指南: PostgresToGCSOperator
- 参数
postgres_conn_id – 对特定 Postgres Hook 的引用。
use_server_side_cursor – 如果应使用服务器端游标来查询 postgres。有关详细信息,请查看 https://www.psycopg.org/docs/usage.html#server-side-cursors
cursor_itersize – 在服务器端游标的情况下,一次获取多少条记录。