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

感情迁移 提交于 2019-12-03 03:58:38

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

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.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!