Rubyコマンドラインインターフェイスを使用してAmazonElasticMapReduce(Amazon EMR)でストリーミングジョブを作成する場合、EC2スポットインスタンス(マスターを除く)のみを使用するように指定するにはどうすればよいですか?以下のコマンドは機能していますが、少なくとも1つのコアインスタンスを使用するように「強制」されています...
./elastic-mapreduce --create --stream \
--name n2_3 \
--input s3://mr/neuron/2 \
--output s3://mr-out/neuron/2 \
--mapper s3://mr/map.rb \
--reducer s3://mr/noop_reduce.rb \
--instance-group master --instance-type m1.small --instance-count 1 \
--instance-group core --instance-type m1.small --instance-count 1 \
--instance-group task --instance-type m1.small --instance-count 18 --bid-price 0.028
ありがとう