nl-cache: add group volume set option for ease of use
Change-Id: Id03643a9598da53051a01ca09e1d2a62bc195ab6 Signed-off-by: Poornima G <pgurusid@redhat.com> Reviewed-on: https://review.gluster.org/17495 Smoke: Gluster Build System <jenkins@build.gluster.org> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.org> Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
This commit is contained in:
parent
801697cc08
commit
38780ff2d0
@ -9,7 +9,7 @@ SUBDIRS = init.d systemd benchmarking hook-scripts $(OCF_SUBDIR) LinuxRPM \
|
||||
|
||||
confdir = $(sysconfdir)/glusterfs
|
||||
conf_DATA = glusterfs-logrotate gluster-rsyslog-7.2.conf gluster-rsyslog-5.8.conf \
|
||||
logger.conf.example glusterfs-georep-logrotate group-virt.example group-metadata-cache group-gluster-block
|
||||
logger.conf.example glusterfs-georep-logrotate group-virt.example group-metadata-cache group-gluster-block group-nl-cache
|
||||
|
||||
voldir = $(sysconfdir)/glusterfs
|
||||
vol_DATA = glusterd.vol
|
||||
@ -37,3 +37,5 @@ install-data-local:
|
||||
$(DESTDIR)$(GLUSTERD_WORKDIR)/groups/metadata-cache
|
||||
$(INSTALL_DATA) $(top_srcdir)/extras/group-gluster-block \
|
||||
$(DESTDIR)$(GLUSTERD_WORKDIR)/groups/gluster-block
|
||||
$(INSTALL_DATA) $(top_srcdir)/extras/group-nl-cache \
|
||||
$(DESTDIR)$(GLUSTERD_WORKDIR)/groups/nl-cache
|
||||
|
5
extras/group-nl-cache
Normal file
5
extras/group-nl-cache
Normal file
@ -0,0 +1,5 @@
|
||||
features.cache-invalidation=on
|
||||
features.cache-invalidation-timeout=600
|
||||
performance.nl-cache=on
|
||||
performance.nl-cache-timeout=600
|
||||
network.inode-lru-limit=50000
|
@ -1226,6 +1226,7 @@ exit 0
|
||||
%attr(0644,-,-) %{_sharedstatedir}/glusterd/groups/virt
|
||||
%attr(0644,-,-) %{_sharedstatedir}/glusterd/groups/metadata-cache
|
||||
%attr(0644,-,-) %{_sharedstatedir}/glusterd/groups/gluster-block
|
||||
%attr(0644,-,-) %{_sharedstatedir}/glusterd/groups/nl-cache
|
||||
%dir %attr(0755,-,-) %{_sharedstatedir}/glusterd/glusterfind
|
||||
%dir %attr(0755,-,-) %{_sharedstatedir}/glusterd/glusterfind/.keys
|
||||
%ghost %dir %attr(0755,-,-) %{_sharedstatedir}/glusterd/glustershd
|
||||
@ -1310,6 +1311,9 @@ exit 0
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jun 9 2017 Poornima G <pgurusid@redhat.com>
|
||||
- Install /var/lib/glusterd/groups/nl-cache by default
|
||||
|
||||
* Wed May 10 2017 Pranith Kumar K <pkarampu@redhat.com>
|
||||
- Install /var/lib/glusterd/groups/gluster-block by default
|
||||
|
||||
|
@ -10,9 +10,12 @@ TEST glusterd
|
||||
TEST $CLI volume create $V0 $H0:$B0/${V0}{0..4}
|
||||
EXPECT 'Created' volinfo_field $V0 'Status'
|
||||
|
||||
TEST $CLI volume set $V0 performance.nl-cache on
|
||||
TEST $CLI volume set $V0 features.cache-invalidation on
|
||||
TEST $CLI volume set $V0 features.cache-invalidation-timeout 600
|
||||
TEST $CLI volume set $V0 group nl-cache
|
||||
EXPECT '600' volinfo_field $V0 'performance.nl-cache-timeout'
|
||||
EXPECT 'on' volinfo_field $V0 'performance.nl-cache'
|
||||
EXPECT '600' volinfo_field $V0 'features.cache-invalidation-timeout'
|
||||
EXPECT 'on' volinfo_field $V0 'features.cache-invalidation'
|
||||
EXPECT '50000' volinfo_field $V0 'network.inode-lru-limit'
|
||||
|
||||
TEST $CLI volume start $V0;
|
||||
EXPECT 'Started' volinfo_field $V0 'Status';
|
||||
|
Loading…
x
Reference in New Issue
Block a user