From 5c65850c99829668ac199a49a0760443db74b581 Mon Sep 17 00:00:00 2001 From: Kotresh H R Date: Fri, 2 May 2014 13:09:03 +0530 Subject: geo-rep/glusterd: Pause and Resume feature for geo-replication This patch introduces pause and resume cli command for geo-replication. Signed-off-by: Kotresh H R Change-Id: I4f5e58e9175fe85077d56088473252391fb57de7 BUG: 1093602 Signed-off-by: Kotresh H R Reviewed-on: http://review.gluster.org/7643 Tested-by: Gluster Build System Reviewed-by: Atin Mukherjee Reviewed-by: Avra Sengupta Reviewed-by: Venky Shankar Tested-by: Venky Shankar --- cli/src/cli-cmd-parser.c | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'cli/src/cli-cmd-parser.c') diff --git a/cli/src/cli-cmd-parser.c b/cli/src/cli-cmd-parser.c index a41c0800ac1..287943777df 100644 --- a/cli/src/cli-cmd-parser.c +++ b/cli/src/cli-cmd-parser.c @@ -1802,7 +1802,9 @@ force_push_pem_parse (const char **words, int wordcount, if ((strcmp ((char *)words[wordcount-2], "start")) && (strcmp ((char *)words[wordcount-2], "stop")) && (strcmp ((char *)words[wordcount-2], "create")) && - (strcmp ((char *)words[wordcount-2], "push-pem"))) { + (strcmp ((char *)words[wordcount-2], "push-pem")) && + (strcmp ((char *)words[wordcount-2], "pause")) && + (strcmp ((char *)words[wordcount-2], "resume"))) { ret = -1; goto out; } @@ -1852,7 +1854,8 @@ cli_cmd_gsync_set_parse (const char **words, int wordcount, dict_t **options) unsigned cmdi = 0; char *opwords[] = { "create", "status", "start", "stop", "config", "force", "delete", - "push-pem", "detail", NULL }; + "push-pem", "detail", "pause", + "resume", NULL }; char *w = NULL; GF_ASSERT (words); @@ -1869,6 +1872,8 @@ cli_cmd_gsync_set_parse (const char **words, int wordcount, dict_t **options) * volume geo-replication [$m] $s config [[!]$opt [$val]] * volume geo-replication $m $s start|stop [force] * volume geo-replication $m $s delete + * volume geo-replication $m $s pause [force] + * volume geo-replication $m $s resume [force] */ if (wordcount < 3) @@ -1960,6 +1965,16 @@ cli_cmd_gsync_set_parse (const char **words, int wordcount, dict_t **options) } else if (strcmp (w, "delete") == 0) { type = GF_GSYNC_OPTION_TYPE_DELETE; + if (!masteri || !slavei) + goto out; + } else if (strcmp (w, "pause") == 0) { + type = GF_GSYNC_OPTION_TYPE_PAUSE; + + if (!masteri || !slavei) + goto out; + } else if (strcmp (w, "resume") == 0) { + type = GF_GSYNC_OPTION_TYPE_RESUME; + if (!masteri || !slavei) goto out; } else -- cgit