summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd/src/glusterd-geo-rep.c
diff options
context:
space:
mode:
authorKotresh HR <khiremat@redhat.com>2015-01-06 20:26:39 +0530
committerKrishnan Parthasarathi <kparthas@redhat.com>2015-02-16 04:22:18 -0800
commit8618abaaf07a96c0384db9bd1e7dbbe663f4f24c (patch)
tree8982056824e7e084f84e2a6bfebdf8e7ac8ca5cd /xlators/mgmt/glusterd/src/glusterd-geo-rep.c
parent04c4ec96b88ee6392812a511de32b48bbe63a421 (diff)
glusterd/geo-rep: Allow replace/remove brick if geo-rep is stopped.
Replace brick: If geo-replication was configured on a volume, replace brick used to fail. This patch allows replace brick to go through if all geo-rep sessions corresponding to that volume is stopped. Remove brick: There was no check for geo-replication for remove brick. Enforce 'remove brick commit' to fail if geo-rep session corresponding to volume is running. Allow 'remove brick commit' only if all of the geo-rep sessions corresponding to that volume is stopped. Code is re-organized for better readability. Change-Id: I02282c2764d8b81e319489c977847e6e437511a4 BUG: 1179638 Signed-off-by: Kotresh HR <khiremat@redhat.com> Reviewed-on: http://review.gluster.org/9402 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Aravinda VK <avishwan@redhat.com> Reviewed-by: ajeet jha <ajha@redhat.com> Reviewed-by: Avra Sengupta <asengupt@redhat.com> Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com> Tested-by: Krishnan Parthasarathi <kparthas@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-geo-rep.c')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-geo-rep.c65
1 files changed, 62 insertions, 3 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-geo-rep.c b/xlators/mgmt/glusterd/src/glusterd-geo-rep.c
index c53f027def1..31dd5a481d4 100644
--- a/xlators/mgmt/glusterd/src/glusterd-geo-rep.c
+++ b/xlators/mgmt/glusterd/src/glusterd-geo-rep.c
@@ -17,6 +17,7 @@
#include "xdr-generic.h"
#include "glusterd.h"
#include "glusterd-op-sm.h"
+#include "glusterd-geo-rep.h"
#include "glusterd-store.h"
#include "glusterd-utils.h"
#include "glusterd-volgen.h"
@@ -1327,8 +1328,9 @@ out:
return ret;
}
-int
-glusterd_check_gsync_running (glusterd_volinfo_t *volinfo, gf_boolean_t *flag)
+void
+glusterd_check_geo_rep_configured (glusterd_volinfo_t *volinfo,
+ gf_boolean_t *flag)
{
GF_ASSERT (volinfo);
@@ -1339,7 +1341,7 @@ glusterd_check_gsync_running (glusterd_volinfo_t *volinfo, gf_boolean_t *flag)
else
*flag = _gf_false;
- return 0;
+ return;
}
/*
@@ -1497,6 +1499,63 @@ out:
return ret;
}
+/* glusterd_check_geo_rep_running:
+ * Checks if any geo-rep session is running for the volume.
+ *
+ * RETURN VALUE:
+ * Sets param.active to true if any geo-rep session is active.
+ * This function sets op_errstr during some error and when any geo-rep
+ * session is active. It is caller's responsibility to free op_errstr
+ * in above cases.
+ */
+
+int
+glusterd_check_geo_rep_running (gsync_status_param_t *param, char **op_errstr)
+{
+ char msg[2048] = {0,};
+ gf_boolean_t enabled = _gf_false;
+ int ret = 0;
+ xlator_t *this = NULL;
+
+ this = THIS;
+ GF_ASSERT (this);
+ GF_ASSERT (param);
+ GF_ASSERT (param->volinfo);
+ GF_ASSERT (op_errstr);
+
+ glusterd_check_geo_rep_configured (param->volinfo, &enabled);
+
+ if (enabled) {
+ ret = dict_foreach (param->volinfo->gsync_slaves,
+ _get_slave_status, param);
+ if (ret) {
+ gf_log (this->name, GF_LOG_ERROR,
+ "_get_slave_satus failed");
+ snprintf (msg, sizeof(msg), GEOREP" Unable to"
+ " get the status of active "GEOREP""
+ " session for the volume '%s'.\n"
+ " Please check the log file for"
+ " more info.", param->volinfo->volname);
+ *op_errstr = gf_strdup (msg);
+ ret = -1;
+ goto out;
+ }
+
+ if (param->is_active) {
+ snprintf (msg, sizeof(msg), GEOREP" sessions"
+ " are active for the volume %s.\nStop"
+ " "GEOREP " sessions involved in this"
+ " volume. Use 'volume "GEOREP
+ " status' command for more info.",
+ param->volinfo->volname);
+ *op_errstr = gf_strdup (msg);
+ goto out;
+ }
+ }
+ out:
+ return ret;
+}
+
static int
glusterd_op_verify_gsync_running (glusterd_volinfo_t *volinfo,
char *slave, char *conf_path,