Reputation: 589
I'm trying to create an EMR cluster for Apache Flink and the first option I can choose looks like this:
The Apache Flink is not mentioned in any of the options. Which one should I choose?
Upvotes: 0
Views: 324
Reputation: 1941
It's hidden away in the UI. You need to click "go to advanced options". Then you can select Flink.
Upvotes: 2
Reputation: 13346
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
Upvotes: 2