Skip to content

Commit 0490c2c

Browse files
lukeseawalkertilne
authored andcommitted
Restore noatime option for NFS filesystem
According to the documentation below noatime is going to have a positive impact on the performances avoiding write operations when accessing files on a mounted NFS filesystem: * https://www.cyberciti.biz/faq/linux-unix-tuning-nfs-server-client-performance * https://tldp.org/LDP/solrhe/Securing-Optimizing-Linux-RH-Edition-v1.3/chap6sec73.html Signed-off-by: Luca Carrogu <[email protected]>
1 parent 7131bf2 commit 0490c2c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ This file is used to list changes made in each version of the AWS ParallelCluste
99
**ENHANCEMENTS**
1010
- Retry failed installations of aws-parallelcluster package on head node of clusters using AWS Batch as the scheduler.
1111

12+
**CHANGES**
13+
- Restore ``noatime`` option, which has positive impact on the performances of NFS filesystem
14+
1215
**BUG FIXES**
1316
- Pin to version 1.247347.6b250880 of the CloudWatch agent due to performance impact of current latest version.
1417

attributes/default.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@
400400
end
401401

402402
# Default NFS mount options
403-
default['cfncluster']['nfs']['hard_mount_options'] = 'hard,_netdev'
403+
default['cfncluster']['nfs']['hard_mount_options'] = 'hard,_netdev,noatime'
404404

405405
# Lustre defaults (for CentOS >=7.7 and Ubuntu)
406406
default['cfncluster']['lustre']['public_key'] = value_for_platform(

0 commit comments

Comments
 (0)