Deployment and run
seatunnel For Flink relies on the Java runtime environment and Flink . For detailed seatunnel installation steps, refer to installing seatunnel
The following focuses on how different platforms run:
First edit the
config/seatunnel-env.shin theseatunneldirectory after decompression, and specify the required environment configurationFLINK_HOME
Run seatunnel on Flink Standalone cluster
bin/start-seatunnel-flink.sh \
--config config-path
# -p 2 specifies that the parallelism of flink job is 2. You can also specify more parameters, use flink run -h to view
bin/start-seatunnel-flink.sh \
-p 2 \
--config config-path
Run seatunnel on Yarn cluster
bin/start-seatunnel-flink.sh \
-m yarn-cluster \
--config config-path
# -ynm seatunnel specifies the name displayed in the yarn webUI as seatunnel, you can also specify more parameters, use flink run -h to view
bin/start-seatunnel-flink.sh \
-m yarn-cluster \
-ynm seatunnel \
--config config-path
Refer to: Flink Yarn Setup