0
votes

I'm trying to create an EMR cluster for Apache Flink and the first option I can choose looks like this:

enter image description here

The Apache Flink is not mentioned in any of the options. Which one should I choose?

2

2 Answers

2
votes

Try using the CLI:

aws emr create-cluster --name "Cluster with Flink" --release-label emr-5.14.0 \
--applications Name=Flink --ec2-attributes KeyName=myKey \
--instance-type m4.large --instance-count 3 --use-default-roles
2
votes

It's hidden away in the UI. You need to click "go to advanced options". Then you can select Flink.

enter image description here