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

后端 未结 2 923
孤城傲影
孤城傲影 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:47

    It's important to note that CORE instance-group instances can not be reduced since they participate as data nodes. They can be increased only. TASK instances only do processing and can be increased and reduced.

    0 讨论(0)
  • 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
    
    0 讨论(0)
提交回复
热议问题