diff options
author | Sanju Rakonde <srakonde@redhat.com> | 2017-10-07 03:33:40 +0530 |
---|---|---|
committer | jiffin tony Thottan <jthottan@redhat.com> | 2017-10-12 18:49:37 +0000 |
commit | 8aa0c34c5301a15a87c0cb168a89cb291e85d741 (patch) | |
tree | 378d9e6bfb0c8698f14b9bb3ed0ab64891a7ac9a /tests | |
parent | d93c94d460698b9dd3a73c2ba399ff577349180c (diff) |
glusterd:Marking all the brick status as stopped when a process goes down in brick multiplexing
In brick multiplexing environment, if a brick process goes down
i.e., if we kill it with SIGKILL, the status of the brick for which
the process came up for the first time is only changing to stopped.
all other brick statuses are remain started. This is happening because
the process was killed abruptly using SIGKILL signal and signal
handler wasn't invoked and further cleanup wasn't triggered.
When we try to start a volume using force, it shows error saying
"Request timed out", since all the brickinfo->status are still in
started state, we're waiting for one of the brick process to come up
which never going to happen since the brick process was killed.
To resolve this, In the disconnect event, We are checking all the
processes that whether the brick which got disconnected belongs the
process. Once we get the process we are calling a function named
glusterd_mark_bricks_stopped_by_proc() and sending brick_proc_t object as
an argument.
From the glusterd_brick_proc_t we can get all the bricks attached
to that process. but these are duplicated ones. To get the original
brickinfo we are reading volinfo from brick. In volinfo we will have
original brickinfo copies. We are changing brickinfo->status to
stopped for all the bricks.
>Change-Id: Ifb9054b3ee081ef56b39b2903ae686984fe827e7
>BUG: 1499509
>Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
>Reviewed-on: https://review.gluster.org/#/c/18444/
>Smoke: Gluster Build System <jenkins@build.gluster.org>
>CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
>Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
>cherry picked from commit 9422446d72bc054962d72ace9912ecb885946d49)
Change-Id: Ifb9054b3ee081ef56b39b2903ae686984fe827e7
BUG: 1501154
Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs/glusterd/bug-1499509-disconnect-in-brick-mux.t | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/bugs/glusterd/bug-1499509-disconnect-in-brick-mux.t b/tests/bugs/glusterd/bug-1499509-disconnect-in-brick-mux.t new file mode 100644 index 00000000000..3c5bebee0c7 --- /dev/null +++ b/tests/bugs/glusterd/bug-1499509-disconnect-in-brick-mux.t @@ -0,0 +1,27 @@ +#!/bin/bash + +. $(dirname $0)/../../include.rc +. $(dirname $0)/../../volume.rc +. $(dirname $0)/../../cluster.rc + +cleanup + +TEST glusterd +TEST pidof glusterd + +## Enable brick multiplexing +TEST $CLI volume set all cluster.brick-multiplex on + +## creating 1x3 replicated volumes +TEST $CLI volume create $V0 replica 3 $H0:$B0/${V0}_{1..3} +TEST $CLI volume create $V1 replica 3 $H0:$B1/${V1}_{1..3} + +## Start the volume +TEST $CLI volume start $V0 +TEST $CLI volume start $V1 + +kill -9 $(pgrep glusterfsd) + +EXPECT 0 online_brick_count + +cleanup |