Skip to content

Instantly share code, notes, and snippets.

@snoremac
Last active January 2, 2016 08:09
Show Gist options
  • Save snoremac/8274280 to your computer and use it in GitHub Desktop.
Save snoremac/8274280 to your computer and use it in GitHub Desktop.
Launch a 10 node EMR cluster with keep-alive from the spot market.
# Launch a cluster from the spot market.
#
# This time we specify --alive to keep the cluster running until we
# manually terminate it.
elastic-mapreduce \
--create \
--name "Common Crawl word count" \
--alive \
--enable-debugging \
--ami-version latest \
--instance-group master --instance-count 1 --instance-type m2.2xlarge \
--instance-group core --instance-count 10 --instance-type cc2.8xlarge --bid-price 0.40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment