190130
From ecaa0f10820f4b6e803021919ce59a43aedf356b Mon Sep 17 00:00:00 2001
190130
From: Ravishankar N <ravishankar@redhat.com>
190130
Date: Thu, 4 Jun 2020 16:15:35 +0530
190130
Subject: [PATCH 402/449] afr: wake up index healer threads
190130
190130
...whenever shd is re-enabled after disabling or there is a change in
190130
`cluster.heal-timeout`, without needing to restart shd or waiting for the
190130
current `cluster.heal-timeout` seconds to expire.
190130
190130
> Upstream patch link:https://review.gluster.org/#/c/glusterfs/+/23288/
190130
> Change-Id: Ia5ebd7c8e9f5b54cba3199c141fdd1af2f9b9bfe
190130
> fixes: bz#1744548
190130
> Reported-by: Glen Kiessling <glenk1973@hotmail.com>
190130
> Signed-off-by: Ravishankar N <ravishankar@redhat.com>
190130
190130
BUG: 1764091
190130
Change-Id: I42aa0807f09b5a09510fe9efb4a1697dad3410a3
190130
Signed-off-by: Ravishankar N <ravishankar@redhat.com>
190130
Reviewed-on: https://code.engineering.redhat.com/gerrit/202368
190130
Tested-by: RHGS Build Bot <nigelb@redhat.com>
190130
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
190130
---
190130
 tests/bugs/replicate/bug-1744548-heal-timeout.t | 42 +++++++++++++++++++++++++
190130
 xlators/cluster/afr/src/afr-common.c            |  6 ++--
190130
 xlators/cluster/afr/src/afr-self-heald.c        | 14 ++++++---
190130
 xlators/cluster/afr/src/afr-self-heald.h        |  3 --
190130
 xlators/cluster/afr/src/afr.c                   | 10 ++++++
190130
 xlators/cluster/afr/src/afr.h                   |  2 ++
190130
 6 files changed, 66 insertions(+), 11 deletions(-)
190130
 create mode 100644 tests/bugs/replicate/bug-1744548-heal-timeout.t
190130
190130
diff --git a/tests/bugs/replicate/bug-1744548-heal-timeout.t b/tests/bugs/replicate/bug-1744548-heal-timeout.t
190130
new file mode 100644
190130
index 0000000..3cb73bc
190130
--- /dev/null
190130
+++ b/tests/bugs/replicate/bug-1744548-heal-timeout.t
190130
@@ -0,0 +1,42 @@
190130
+#!/bin/bash
190130
+
190130
+. $(dirname $0)/../../include.rc
190130
+. $(dirname $0)/../../volume.rc
190130
+. $(dirname $0)/../../afr.rc
190130
+
190130
+cleanup;
190130
+
190130
+TEST glusterd;
190130
+TEST pidof glusterd;
190130
+TEST $CLI volume create $V0 replica 3 $H0:$B0/${V0}{0,1,2}
190130
+TEST $CLI volume heal $V0 disable
190130
+TEST $CLI volume start $V0
190130
+EXPECT_WITHIN $PROCESS_UP_TIMEOUT "1" brick_up_status $V0 $H0 $B0/${V0}0
190130
+EXPECT_WITHIN $PROCESS_UP_TIMEOUT "1" brick_up_status $V0 $H0 $B0/${V0}1
190130
+EXPECT_WITHIN $PROCESS_UP_TIMEOUT "1" brick_up_status $V0 $H0 $B0/${V0}2
190130
+TEST ! $CLI volume heal $V0
190130
+
190130
+# Enable shd and verify that index crawl is triggered immediately.
190130
+TEST $CLI volume profile $V0 start
190130
+TEST $CLI volume profile $V0 info clear
190130
+TEST $CLI volume heal $V0 enable
190130
+TEST $CLI volume heal $V0
190130
+# Each brick does 3 opendirs, corresponding to dirty, xattrop and entry-changes
190130
+COUNT=`$CLI volume profile $V0 info incremental |grep OPENDIR|awk '{print $8}'|tr -d '\n'`
190130
+TEST [ "$COUNT" == "333" ]
190130
+
190130
+# Check that a change in heal-timeout is honoured immediately.
190130
+TEST $CLI volume set $V0 cluster.heal-timeout 5
190130
+sleep 10
190130
+COUNT=`$CLI volume profile $V0 info incremental |grep OPENDIR|awk '{print $8}'|tr -d '\n'`
190130
+# Two crawls must have happened.
190130
+TEST [ "$COUNT" == "666" ]
190130
+
190130
+# shd must not heal if it is disabled and heal-timeout is changed.
190130
+TEST $CLI volume heal $V0 disable
190130
+TEST $CLI volume profile $V0 info clear
190130
+TEST $CLI volume set $V0 cluster.heal-timeout 6
190130
+sleep 6
190130
+COUNT=`$CLI volume profile $V0 info incremental |grep OPENDIR|awk '{print $8}'|tr -d '\n'`
190130
+TEST [ -z $COUNT ]
190130
+cleanup;
190130
diff --git a/xlators/cluster/afr/src/afr-common.c b/xlators/cluster/afr/src/afr-common.c
190130
index 3690b84..eef7fd2 100644
190130
--- a/xlators/cluster/afr/src/afr-common.c
190130
+++ b/xlators/cluster/afr/src/afr-common.c
190130
@@ -5613,10 +5613,8 @@ afr_notify(xlator_t *this, int32_t event, void *data, void *data2)
190130
          * b) Already heard from everyone, but we now got a child-up
190130
          *    event.
190130
          */
190130
-        if (have_heard_from_all && priv->shd.iamshd) {
190130
-            for (i = 0; i < priv->child_count; i++)
190130
-                if (priv->child_up[i])
190130
-                    afr_selfheal_childup(this, i);
190130
+        if (have_heard_from_all) {
190130
+            afr_selfheal_childup(this, priv);
190130
         }
190130
     }
190130
 out:
190130
diff --git a/xlators/cluster/afr/src/afr-self-heald.c b/xlators/cluster/afr/src/afr-self-heald.c
190130
index 7eb1207..95ac5f2 100644
190130
--- a/xlators/cluster/afr/src/afr-self-heald.c
190130
+++ b/xlators/cluster/afr/src/afr-self-heald.c
190130
@@ -1258,12 +1258,18 @@ out:
190130
     return ret;
190130
 }
190130
 
190130
-int
190130
-afr_selfheal_childup(xlator_t *this, int subvol)
190130
+void
190130
+afr_selfheal_childup(xlator_t *this, afr_private_t *priv)
190130
 {
190130
-    afr_shd_index_healer_spawn(this, subvol);
190130
+    int subvol = 0;
190130
 
190130
-    return 0;
190130
+    if (!priv->shd.iamshd)
190130
+        return;
190130
+    for (subvol = 0; subvol < priv->child_count; subvol++)
190130
+        if (priv->child_up[subvol])
190130
+            afr_shd_index_healer_spawn(this, subvol);
190130
+
190130
+    return;
190130
 }
190130
 
190130
 int
190130
diff --git a/xlators/cluster/afr/src/afr-self-heald.h b/xlators/cluster/afr/src/afr-self-heald.h
190130
index 7de7c43..1990539 100644
190130
--- a/xlators/cluster/afr/src/afr-self-heald.h
190130
+++ b/xlators/cluster/afr/src/afr-self-heald.h
190130
@@ -60,9 +60,6 @@ typedef struct {
190130
 } afr_self_heald_t;
190130
 
190130
 int
190130
-afr_selfheal_childup(xlator_t *this, int subvol);
190130
-
190130
-int
190130
 afr_selfheal_daemon_init(xlator_t *this);
190130
 
190130
 int
190130
diff --git a/xlators/cluster/afr/src/afr.c b/xlators/cluster/afr/src/afr.c
190130
index 33258a0..8f9e71f 100644
190130
--- a/xlators/cluster/afr/src/afr.c
190130
+++ b/xlators/cluster/afr/src/afr.c
190130
@@ -141,6 +141,7 @@ reconfigure(xlator_t *this, dict_t *options)
190130
     afr_private_t *priv = NULL;
190130
     xlator_t *read_subvol = NULL;
190130
     int read_subvol_index = -1;
190130
+    int timeout_old = 0;
190130
     int ret = -1;
190130
     int index = -1;
190130
     char *qtype = NULL;
190130
@@ -150,6 +151,7 @@ reconfigure(xlator_t *this, dict_t *options)
190130
     char *locking_scheme = NULL;
190130
     gf_boolean_t consistent_io = _gf_false;
190130
     gf_boolean_t choose_local_old = _gf_false;
190130
+    gf_boolean_t enabled_old = _gf_false;
190130
 
190130
     priv = this->private;
190130
 
190130
@@ -255,11 +257,13 @@ reconfigure(xlator_t *this, dict_t *options)
190130
     GF_OPTION_RECONF("ensure-durability", priv->ensure_durability, options,
190130
                      bool, out);
190130
 
190130
+    enabled_old = priv->shd.enabled;
190130
     GF_OPTION_RECONF("self-heal-daemon", priv->shd.enabled, options, bool, out);
190130
 
190130
     GF_OPTION_RECONF("iam-self-heal-daemon", priv->shd.iamshd, options, bool,
190130
                      out);
190130
 
190130
+    timeout_old = priv->shd.timeout;
190130
     GF_OPTION_RECONF("heal-timeout", priv->shd.timeout, options, int32, out);
190130
 
190130
     GF_OPTION_RECONF("consistent-metadata", priv->consistent_metadata, options,
190130
@@ -283,6 +287,12 @@ reconfigure(xlator_t *this, dict_t *options)
190130
         consistent_io = _gf_false;
190130
     priv->consistent_io = consistent_io;
190130
 
190130
+    if (priv->shd.enabled) {
190130
+        if ((priv->shd.enabled != enabled_old) ||
190130
+            (timeout_old != priv->shd.timeout))
190130
+            afr_selfheal_childup(this, priv);
190130
+    }
190130
+
190130
     ret = 0;
190130
 out:
190130
     return ret;
190130
diff --git a/xlators/cluster/afr/src/afr.h b/xlators/cluster/afr/src/afr.h
190130
index e731cfa..18f1a6a 100644
190130
--- a/xlators/cluster/afr/src/afr.h
190130
+++ b/xlators/cluster/afr/src/afr.h
190130
@@ -1332,4 +1332,6 @@ afr_lookup_has_quorum(call_frame_t *frame, xlator_t *this,
190130
 void
190130
 afr_mark_new_entry_changelog(call_frame_t *frame, xlator_t *this);
190130
 
190130
+void
190130
+afr_selfheal_childup(xlator_t *this, afr_private_t *priv);
190130
 #endif /* __AFR_H__ */
190130
-- 
190130
1.8.3.1
190130