razvan
razvan

Reputation: 589

Apache Flink EMR

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?

Upvotes: 0

Views: 324

Answers (2)

Jack
Jack

Reputation: 1941

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

enter image description here

Upvotes: 2

Till Rohrmann
Till Rohrmann

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

Related Questions