Can we add more Amazon Elastic Mapreduce instances into an existing Amazon Elastic Mapreduce instances?

后端 未结 2 925
孤城傲影
孤城傲影 2021-02-06 18:34

I am new to Amazon Services and facing some issues.

Suppose I am running some Job Flow on Amazon Elastic Mapreduce with total 3 instances. While running my job flow on i

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-06 18:55

    Yes, you can do this with the command line tool

    to add more instances to the core group:

    elastic-mapreduce --modify-instance-group CORE --instance-count 40
    

    To create a task group (no datanodes), with 40 instances:

    elastic-mapreduce --add-instance-group TASK --instance-count 40 --instance-type c1.medium
    

提交回复
热议问题