forked from hms-dbmi/hail-on-AWS-spot-instances
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_EMR_spot.yaml
21 lines (20 loc) · 1.47 KB
/
config_EMR_spot.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
config:
EMR_RELEASE: "emr-6.2.0" #Release of EMR that maps to SPARK versions (6.2.0 == Spark 3.0.1)
EMR_CLUSTER_NAME: "tdeboer-hail" # Give a name to your EMR cluster
EC2_NAME_TAG: "tdeboer-hail-EMR" # Adds a tag to the individual EC2 instances
OWNER_TAG: "tdeboer-ilmn" # EC2 owner tag
PROJECT_TAG: "GRE_on_ICA" # Project tag
REGION: "us-east-1"
MASTER_INSTANCE_TYPE: "m4.large"
WORKER_INSTANCE_TYPE: "r4.4xlarge"
WORKER_COUNT: "4" # Number of worker nodes
WORKER_BID_PRICE: "0.90" # Required for spot instances
MASTER_HD_SIZE: "250" # Size in GB - For large data sets, more HD space may be required
WORKER_HD_SIZE: "500" # Size in GB - For large data sets, more HD space may be required
SUBNET_ID: "" # This field can be either left blank or for further security you can specify your private subnet ID in the form: subnet-1a2b3c4d
S3_BUCKET: "s3://ilmn-hail/" # Specify your S3 bucket for EMR log storage and bootstrapping file
BOOTSTRAP_S3_URI: "s3://ilmn-hail/bootstrap_hail/bootstrap.sh"
KEY_NAME: "hail-ES-GRE" # Input your key name ONLY! DO NOT include the .pem extension
PATH_TO_KEY: "/data/" # Full path to the FOLDER where the .pem file resides
WORKER_SECURITY_GROUP: "sg-0df1e5704ca2a8196" # If empty creates a new group by default. You can also add a specific SG. See the SG link in the FAQs section
MASTER_SECURITY_GROUP: "sg-0bab1202c0aa453b3" # If empty creates a new group by default. You can also add a specific SG. See the SG link in the FAQs section