DatabricksCopyIntoOperator¶
使用 DatabricksCopyIntoOperator
使用 COPY INTO 命令将数据导入 Databricks 表格。
使用操作符¶
操作符使用配置的端点将数据从指定位置加载到表格中。唯一需要的参数是:
table_name
- 表格名称的字符串file_location
- 要加载的数据的 URI 字符串file_format
- 指定要加载的数据文件格式的字符串。支持的格式包括CSV
,JSON
,AVRO
,ORC
,PARQUET
,TEXT
,BINARYFILE
。sql_endpoint_name
(要使用的 Databricks SQL 端点名称) 或http_path
(Databricks SQL 端点或 Databricks 集群的 HTTP 路径) 二者之一。
其他参数是可选的,可以在类文档中找到。
示例¶
导入 CSV 数据¶
以下是将 CSV 数据导入表格的 DatabricksCopyIntoOperator 的使用示例:
# Example of importing data using COPY_INTO SQL command
import_csv = DatabricksCopyIntoOperator(
task_id="import_csv",
databricks_conn_id=connection_id,
sql_endpoint_name=sql_endpoint_name,
table_name="my_table",
file_format="CSV",
file_location="abfss://[email protected]/my-data/csv",
format_options={"header": "true"},
force_copy=True,
)