Skip to content

Commit

Permalink
incorporated the review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sumittal committed Nov 11, 2023
1 parent d7f9106 commit a8434ee
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions tests/docker/ducktape-deps/apache-flink
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
set -e

# update your system and install Java
sudo apt -y update && sudo apt -y install openjdk-11-jdk

# download the latest version of Apache Flink from the Apache website
wget https://www.apache.org/dyn/closer.lua/flink/flink-1.18.0/flink-1.18.0-bin-scala_2.12.tgz

# extract the Flink tarball
mkdir flink && tar -xzf flink-1.18.0-bin-scala_2.12.tgz -C flink --strip-components 1
sudo mv flink /opt/

# add the Flink bin directory to your PATH environment variable
echo "export PATH=$PATH:/opt/flink/bin" >> ~/.bashrc

# source your .bashrc file
source ~/.bashrc

# verify that Flink is installed correctly by running the following command
flink version
/opt/flink/bin/flink version

0 comments on commit a8434ee

Please sign in to comment.