From 7707a7201670a0ebf86c02ad807d1d40e99deb70 Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 6 Jun 2018 16:24:14 -0700 Subject: [PATCH 1/3] Added comment on maxTasksPerNode --- docs/80-performance-tuning.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/80-performance-tuning.md b/docs/80-performance-tuning.md index fd4aa9ea..18b47c9e 100644 --- a/docs/80-performance-tuning.md +++ b/docs/80-performance-tuning.md @@ -24,6 +24,8 @@ Here's an example of how you may want to set your JSON configuration file: } ``` +Note: `maxTasksPerNode` property cannot be changed after the cluster has been provision. The cluster must be tear down and reprovision with the new `maxTasksPerNode` property. + ### Nested doParallel To take advantage of all the cores on each node, you can nest a *foreach* loop using *doParallel* package inside the outer *foreach* loop that uses doAzureParallel. From 72e35797a5592bdd555827887f2b2647eccc4496 Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 6 Jun 2018 16:30:20 -0700 Subject: [PATCH 2/3] Added bolded note --- docs/80-performance-tuning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/80-performance-tuning.md b/docs/80-performance-tuning.md index 18b47c9e..657be0fd 100644 --- a/docs/80-performance-tuning.md +++ b/docs/80-performance-tuning.md @@ -24,7 +24,7 @@ Here's an example of how you may want to set your JSON configuration file: } ``` -Note: `maxTasksPerNode` property cannot be changed after the cluster has been provision. The cluster must be tear down and reprovision with the new `maxTasksPerNode` property. +**Note**: `maxTasksPerNode` property cannot be changed after the cluster has been provision. The cluster must be tear down and reprovision with the new `maxTasksPerNode` property. ### Nested doParallel To take advantage of all the cores on each node, you can nest a *foreach* loop using *doParallel* package inside the outer *foreach* loop that uses doAzureParallel. From 2680199e6d7f0d340e9aa6e059997168c2c696a5 Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 6 Jun 2018 16:58:02 -0700 Subject: [PATCH 3/3] After comments --- docs/80-performance-tuning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/80-performance-tuning.md b/docs/80-performance-tuning.md index 657be0fd..5ad5e412 100644 --- a/docs/80-performance-tuning.md +++ b/docs/80-performance-tuning.md @@ -24,7 +24,7 @@ Here's an example of how you may want to set your JSON configuration file: } ``` -**Note**: `maxTasksPerNode` property cannot be changed after the cluster has been provision. The cluster must be tear down and reprovision with the new `maxTasksPerNode` property. +**Note**: `maxTasksPerNode` property cannot be changed after the cluster has been provisioned. The cluster must be torn down and reprovisioned with the new `maxTasksPerNode` property. ### Nested doParallel To take advantage of all the cores on each node, you can nest a *foreach* loop using *doParallel* package inside the outer *foreach* loop that uses doAzureParallel.