diff options
| author | Raghavendra Gowdappa <rgowdapp@redhat.com> | 2019-02-12 18:33:44 +0530 | 
|---|---|---|
| committer | Raghavendra G <rgowdapp@redhat.com> | 2019-09-26 09:33:38 +0000 | 
| commit | 80cb838773f3574f68b1fa821fcb712ada350309 (patch) | |
| tree | 1cc06e3444ad2db4b7599a8b622a49b8963a3a96 /tests | |
| parent | c4d926900dc36f71c04b3f65ceca5150ce0e8c81 (diff) | |
read-ahead/io-cache: turn off by default
We've found perf xlators io-cache and read-ahead not adding any
performance improvement. At best read-ahead is redundant due to kernel
read-ahead and at worst io-cache is degrading the performance for
workloads that doesn't involve re-read. Given that VFS already have
both these functionalities, this patch makes these two
translators turned off by default for native fuse mounts.
For non-native fuse mounts like gfapi (NFS-ganesha/samba) we can have
these xlators on by having custom profiles.
Change-Id: Ie7535788909d4c741844473696f001274dc0bb60
Signed-off-by: Raghavendra Gowdappa <rgowdapp@redhat.com>
fixes: bz#1676479
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/basic/ec/self-heal.t | 2 | ||||
| -rw-r--r-- | tests/basic/glusterd/volfile_server_switch.t | 2 | 
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/basic/ec/self-heal.t b/tests/basic/ec/self-heal.t index d217559db1a..6329bb60248 100644 --- a/tests/basic/ec/self-heal.t +++ b/tests/basic/ec/self-heal.t @@ -131,6 +131,8 @@ TEST $CLI volume create $V0 redundancy 2 $H0:$B0/${V0}{0..5}  TEST $CLI volume set $V0 client-log-level DEBUG  #Write-behind has a bug where lookup can race over write which leads to size mismatch on the mount after a 'cp'  TEST $CLI volume set $V0 performance.write-behind off +#md-cache can return stale stat due to default timeout being 1 sec +TEST $CLI volume set $V0 performance.stat-prefetch off  EXPECT "Created" volinfo_field $V0 'Status'  TEST $CLI volume start $V0  EXPECT_WITHIN $PROCESS_UP_TIMEOUT "Started" volinfo_field $V0 'Status' diff --git a/tests/basic/glusterd/volfile_server_switch.t b/tests/basic/glusterd/volfile_server_switch.t index 309060919b7..e11cfed509a 100644 --- a/tests/basic/glusterd/volfile_server_switch.t +++ b/tests/basic/glusterd/volfile_server_switch.t @@ -34,7 +34,7 @@ TEST glusterfs --volfile-id=/$V0 --volfile-server=$H1 --volfile-server=$H2 --vol  TEST kill_glusterd 1 -TEST $CLI_2 volume set $V0 performance.io-cache off +TEST $CLI_2 volume set $V0 performance.write-behind off  # make sure by this time directory will be created  # TODO: suggest ideal time to wait  | 
