In this guide we will start from scratch and go from setting up a Flink Python project to running a Python Table API program.
You can begin by creating a Python project and installing the PyFlink package.
PyFlink is available via PyPI and can be easily installed using pip
.
You can also build PyFlink from source by following the development guide.
The first step in a Flink Python Table API program is to create a BatchTableEnvironment
(or StreamTableEnvironment
if you are writing a streaming job). It is the main entry point
for Python Table API jobs.
The ExecutionEnvironment
(or StreamExecutionEnvironment
if you are writing a streaming job)
can be used to set execution parameters, such as the restart strategy, default parallelism, etc.
The TableConfig
can be used by setting the parameters such as the built-in catalog name, the
threshold where generating code, etc.
Next we will create a source table and a sink table.
You can also use the TableEnvironment.sql_update() method to register a source/sink table defined in DDL:
This registers a table named mySource
and a table named mySink
in the
ExecutionEnvironment
. The table mySource
has only one column: word.
It represents the words read from file /tmp/input
. The table mySink
has two columns:
word and count. It writes data to file /tmp/output
, with \t
as the field delimiter.
Then we need to create a job which reads input from table mySource
, preforms some
operations and writes the results to table mySink
.
The last thing is to start the actual Flink Python Table API job. All operations, such as
creating sources, transformations and sinks only build up a graph of internal operations.
Only when t_env.execute(job_name)
is called, this graph of operations will be thrown on a cluster or
executed on your local machine.
The complete code so far is as follows:
Firstly, you need to prepare input data in the “/tmp/input” file. You can choose the following command line to prepare the input data:
Next, you can run this example on the command line (Note: if the result file “/tmp/output” has already existed, you need to remove the file before running the example):
The command builds and runs the Python Table API program in a local mini cluster. You can also submit the Python Table API program to a remote cluster, you can refer Job Submission Examples for more details.
Finally, you can see the execution result on the command line:
This should get you started with writing your own Flink Python Table API programs. To learn more about the Python Table API, you can refer Flink Python Table API Docs for more details.