Create 64-core masters for huge clusters

This commit is contained in:
gmarek 2017-07-17 15:02:16 +02:00
parent 4f6af5faa4
commit af6480210e

View File

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