glusterd: disallow increasing replica count for arbiter volumes
Problem: add-brick command to increase replica count in an arbiter volume succeeds, causing undesirable effects like the 4th brick being loaded with the arbiter xlator, the 3rd one losing the arbiter xlator (when the brick process is restarted), arbitration logic in afr going for a toss etc. Fix: Arbiter configuration should always be a replica 3 volume (of which 3rd brick is arbiter). Hence disallow increasing replica count for arbiter volume configurations. Change-Id: I9fe4edac880d0f711e6d44324ad5562974e53e51 BUG: 1429200 Signed-off-by: Ravishankar N <ravishankar@redhat.com> Reviewed-on: https://review.gluster.org/16845 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: Atin Mukherjee <amukherj@redhat.com>
This commit is contained in:
parent
804a65f07e
commit
b7ba77ab3f
@ -60,5 +60,11 @@ EXPECT "1048576" stat -c %s $M0/file2
|
||||
EXPECT "0" stat -c %s $B0/${V0}2/file1
|
||||
EXPECT "0" stat -c %s $B0/${V0}2/file2
|
||||
|
||||
#Increasing replica count of arbiter volumes must not be allowed.
|
||||
TEST ! $CLI volume add-brick $V0 replica 4 $H0:$B0/${V0}3
|
||||
TEST ! $CLI volume add-brick $V0 replica 4 arbiter 1 $H0:$B0/${V0}3
|
||||
|
||||
#Adding another distribute leg should succeed.
|
||||
TEST $CLI volume add-brick $V0 replica 3 arbiter 1 $H0:$B0/${V0}{3..5}
|
||||
TEST force_umount $M0
|
||||
cleanup;
|
||||
|
@ -1722,6 +1722,16 @@ glusterd_op_stage_add_brick (dict_t *dict, char **op_errstr, dict_t *rsp_dict)
|
||||
*op_errstr = gf_strdup (msg);
|
||||
goto out;
|
||||
}
|
||||
/* Do not allow increasing replica count for arbiter volumes. */
|
||||
if (replica_count && volinfo->arbiter_count) {
|
||||
ret = -1;
|
||||
snprintf (msg, sizeof (msg), "Increasing replica count "
|
||||
"for arbiter volumes is not supported.");
|
||||
gf_msg (THIS->name, GF_LOG_ERROR, 0,
|
||||
GD_MSG_BRICK_ADD_FAIL, "%s", msg);
|
||||
*op_errstr = gf_strdup (msg);
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
is_force = dict_get_str_boolean (dict, "force", _gf_false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user