From a7b399fd0ef928c2cca4092b00edb21e70c59f62 Mon Sep 17 00:00:00 2001 From: Atin Mukherjee Date: Mon, 21 Dec 2015 23:13:43 +0530 Subject: glusterd: import/export brickinfo->uuid Backport of http://review.gluster.org/#/c/13047/ Given a two node cluster with node N1 & N2, if a dummy node N3 is peer probed, the probed node N3 goes for importing volumes from the probing node (N1), but it still doesn't have information about the other node (N2) about its membership (since peer update happens post volume updates) and hence fail to update its brick's uuid. Post that even though N2 updates N3 about its membership the brick's uuid was never generated. Now as a consequence when N3 initiates a detach of N2, it checks whether the node to be detached has any bricks configured by its respective uuid which is NULL in this case and hence it goes ahead and removes the peer which ideally it shouldn't have (refer to glusterd_friend_contains_vol_bricks () for the logic) Fix is to export brick's uuid and import it at the probed node instead of resolving it. Change-Id: I2d88c72175347550a45ab12aff0ae248e56baa87 BUG: 1297305 Signed-off-by: Atin Mukherjee Reviewed-on: http://review.gluster.org/13047 Tested-by: Gluster Build System Tested-by: NetBSD Build System Reviewed-by: Gaurav Kumar Garg Reviewed-by: Avra Sengupta Reviewed-on: http://review.gluster.org/13210 --- .../glusterd/bug-1293414-import-brickinfo-uuid.t | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 tests/bugs/glusterd/bug-1293414-import-brickinfo-uuid.t (limited to 'tests/bugs') diff --git a/tests/bugs/glusterd/bug-1293414-import-brickinfo-uuid.t b/tests/bugs/glusterd/bug-1293414-import-brickinfo-uuid.t new file mode 100755 index 00000000000..9f67e4ccfa0 --- /dev/null +++ b/tests/bugs/glusterd/bug-1293414-import-brickinfo-uuid.t @@ -0,0 +1,31 @@ +#!/bin/bash + +. $(dirname $0)/../../include.rc +. $(dirname $0)/../../volume.rc +. $(dirname $0)/../../cluster.rc + +cleanup; + +TEST launch_cluster 4; + +TEST $CLI_1 peer probe $H2; +EXPECT_WITHIN $PROBE_TIMEOUT 1 peer_count +TEST $CLI_1 volume create $V0 $H1:$B1/$V0 $H2:$B2/$V0 +TEST $CLI_1 volume start $V0 + + +TEST $CLI_1 peer probe $H3; +EXPECT_WITHIN $PROBE_TIMEOUT 2 peer_count + +TEST $CLI_1 peer probe $H4; +EXPECT_WITHIN $PROBE_TIMEOUT 3 peer_count + +# peers hosting bricks can't be detached +TEST ! $CLI_3 peer detach $H1 +TEST ! $CLI_3 peer detach $H2 + + +# peer not hosting bricks should be detachable +TEST $CLI_3 peer detach $H4 +EXPECT_WITHIN $PROBE_TIMEOUT 2 peer_count +cleanup; -- cgit