Last active
April 6, 2020 03:26
-
-
Save DaisukeMiyamoto/16a28fca1c8bdd3c25b6a7bfd393b4c5 to your computer and use it in GitHub Desktop.
config file for AWS ParallelCluster for EFA and FSx for Lustre setting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[aws] | |
aws_region_name = us-east-1 | |
[global] | |
update_check = true | |
sanity_check = true | |
cluster_template = benchmark_efa | |
[aliases] | |
ssh = ssh {CFN_USER}@{MASTER_IP} {ARGS} -i ~/.ssh/<KEYNAME> -o StrictHostKeyChecking=no | |
[cluster benchmark_efa] | |
key_name = <KEYNAME> | |
base_os = centos7 | |
scheduler = sge | |
cluster_type = spot | |
master_instance_type = c5.4xlarge | |
compute_instance_type = c5n.18xlarge | |
disable_hyperthreading = true | |
placement_group = DYNAMIC | |
enable_efa = compute | |
initial_queue_size = 0 | |
max_queue_size = 1000 | |
master_root_volume_size = 100 | |
compute_root_volume_size = 100 | |
vpc_settings = default | |
dcv_settings = dcv | |
ebs_settings = shared | |
fsx_settings = lustre | |
tags = {"Project": "ParallelCluster-Benchmark"} | |
extra_json = { "cluster" : { "ganglia_enabled" : "yes" } } | |
[vpc default] | |
vpc_id = vpc-<VPC> | |
master_subnet_id = subnet-<SUBNET> | |
compute_subnet_id = subnet-<SUBNET> | |
[dcv dcv] | |
enable = master | |
[ebs shared] | |
volume_type = gp2 | |
volume_size = 100 | |
[fsx lustre] | |
shared_dir = /lustre | |
storage_capacity = 4800 | |
deployment_type = SCRATCH_2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment