Input / Output#
Functions to read data from external sources into a DataFrame and methods to write DataFrame results to external systems.
Readers#
|
Read a catalog table into a DataFrame. |
|
Read a Parquet file or directory into a DataFrame. |
|
Read JSON file(s) into a DataFrame. |
|
Read video frames from video URI/path strings, glob patterns, or a video column. |
|
Read data from one or more Kafka topics into a DataFrame. |
|
Read a MaxCompute (ODPS) table into a DataFrame. |
|
Read a Paimon table into a DataFrame. |
|
Read an SLS (Aliyun Log Service) logstore into a DataFrame. |
|
Read an MNS (Alibaba Cloud Message Service) queue into a DataFrame. |
|
Read a Hologres table into a DataFrame. |
|
Read a Milvus vector search source into a DataFrame. |
|
Read data from a generic connector into a DataFrame. |
Writers#
|
Write the DataFrame to a catalog table. |
|
Write the DataFrame to Parquet file(s) at the given path. |
|
Write the DataFrame to JSON file(s) at the given path. |
|
Write the DataFrame to a Kafka topic. |
|
Write the DataFrame to a MaxCompute (ODPS) table. |
|
Write the DataFrame to a Paimon table. |
|
Write the DataFrame to an SLS (Aliyun Log Service) logstore. |
|
Write the DataFrame to a Hologres table. |
|
Write the DataFrame to a Milvus collection. |
|
Write the DataFrame using a generic connector. |
Statement Sets#
Use create_statement_set if you want to output multiple DataFrames in a
single job.
Create a StatementSet from the DataFrame default TableEnvironment. |