Create 64-core masters for huge clusters

pull/6/head
gmarek 2017-07-17 15:02:16 +02:00
parent 4f6af5faa4
commit af6480210e
1 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,9 @@ function get-master-size {
if [[ "${NUM_NODES}" -gt "500" ]]; then
suggested_master_size=32
fi
if [[ "${NUM_NODES}" -gt "3000" ]]; then
suggested_master_size=64
fi
echo "${suggested_master_size}"
}