jenkins-bot has submitted this change and it was merged.

Change subject: Tune nfs mount options
......................................................................


Tune nfs mount options

default:
  $ dd if=/dev/zero of=/vagrant/testio bs=16k count=16k
  268435456 bytes (268 MB) copied, 16.0032 s, 16.8 MB/s

  $ dd if=/vagrant/testio of=/dev/null bs=16k count=16k
  268435456 bytes (268 MB) copied, 6.36017 s, 42.2 MB/s

noatime,rsize=16384,wsize=16384:
  $ dd if=/dev/zero of=/vagrant/testio bs=16k count=16k
  268435456 bytes (268 MB) copied, 10.5531 s, 25.4 MB/s

  $ dd if=/vagrant/testio of=/dev/null bs=16k count=16k
  268435456 bytes (268 MB) copied, 6.30286 s, 42.6 MB/s

noatime,rsize=32767,wsize=32767:
  $ dd if=/dev/zero of=/vagrant/testio bs=32k count=8k
  268435456 bytes (268 MB) copied, 8.80528 s, 30.5 MB/s

  $ dd if=/vagrant/testio of=/dev/null bs=32k count=8k
  268435456 bytes (268 MB) copied, 6.2102 s, 43.2 MB/s

Change-Id: I0581463dc219c2dd454fd436c7abe40be68cc6e3
---
M Vagrantfile
1 file changed, 1 insertion(+), 0 deletions(-)

Approvals:
  Ori.livneh: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/Vagrantfile b/Vagrantfile
index 3c6f9bd..00a28d0 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -81,6 +81,7 @@
 
     if settings[:nfs_shares]
         root_share_options[:type] = :nfs
+        root_share_options[:mount_options] = 
['noatime','rsize=32767','wsize=32767','async']
         config.nfs.map_uid = Process.uid
         config.nfs.map_gid = Process.gid
     else

-- 
To view, visit https://gerrit.wikimedia.org/r/155866
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I0581463dc219c2dd454fd436c7abe40be68cc6e3
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/vagrant
Gerrit-Branch: master
Gerrit-Owner: BryanDavis <[email protected]>
Gerrit-Reviewer: Ori.livneh <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to