summaryrefslogtreecommitdiffstats
path: root/xlators/cluster/afr/src/afr.c
diff options
context:
space:
mode:
authorVikas Gorur <vikas@gluster.com>2009-09-17 05:56:32 +0000
committerAnand V. Avati <avati@dev.gluster.com>2009-09-22 06:13:34 -0700
commit35f96c039e8961e48af46af43b6ecf7a335feb15 (patch)
treed73021e62255efd6d7d8f83820c472467409fda4 /xlators/cluster/afr/src/afr.c
parentd2b7e65ec0c35c4ee16f28f449553d90fb88fa6a (diff)
cluster/afr: Add new option "data-self-heal-algorithm"
option: data-self-heal-algorithm type: string default: "full" This option allows the user to specify the algorithm to be used for data self-heal. Currently supported values are "full" and "diff". Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr.c')
-rw-r--r--xlators/cluster/afr/src/afr.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/xlators/cluster/afr/src/afr.c b/xlators/cluster/afr/src/afr.c
index 6b7b007ae..5c2320715 100644
--- a/xlators/cluster/afr/src/afr.c
+++ b/xlators/cluster/afr/src/afr.c
@@ -2341,6 +2341,7 @@ init (xlator_t *this)
char * read_subvol = NULL;
char * fav_child = NULL;
char * self_heal = NULL;
+ char * algo = NULL;
char * change_log = NULL;
int32_t lock_server_count = 1;
@@ -2389,6 +2390,14 @@ init (xlator_t *this)
}
}
+ priv->data_self_heal_algorithm = "full";
+
+ dict_ret = dict_get_str (this->options, "data-self-heal-algorithm",
+ &algo);
+ if (dict_ret == 0) {
+ priv->data_self_heal_algorithm = strdup (algo);
+ }
+
dict_ret = dict_get_str (this->options, "metadata-self-heal",
&self_heal);
if (dict_ret == 0) {
@@ -2662,6 +2671,9 @@ struct volume_options options[] = {
{ .key = {"data-self-heal"},
.type = GF_OPTION_TYPE_BOOL
},
+ { .key = {"data-self-heal-algorithm"},
+ .type = GF_OPTION_TYPE_STR
+ },
{ .key = {"metadata-self-heal"},
.type = GF_OPTION_TYPE_BOOL
},