14f8ab
From 1370db202a2a60810409f74c390448bf8fbd6998 Mon Sep 17 00:00:00 2001
14f8ab
From: Barak Sason Rofman <bsasonro@redhat.com>
14f8ab
Date: Sun, 9 Feb 2020 15:09:30 +0200
14f8ab
Subject: [PATCH 429/449] dht/rebalance - fixing failure occurace due to
14f8ab
 rebalance stop
14f8ab
14f8ab
Probelm description:
14f8ab
When topping rebalance, the following error messages appear in the
14f8ab
rebalance log file:
14f8ab
[2020-01-28 14:31:42.452070] W [dht-rebalance.c:3447:gf_defrag_process_dir] 0-distrep-dht: Found error from gf_defrag_get_entry
14f8ab
[2020-01-28 14:31:42.452764] E [MSGID: 109111] [dht-rebalance.c:3971:gf_defrag_fix_layout] 0-distrep-dht: gf_defrag_process_dir failed for directory: /0/1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/24/25/26/27/28/29/30/31
14f8ab
[2020-01-28 14:31:42.453498] E [MSGID: 109016] [dht-rebalance.c:3906:gf_defrag_fix_layout] 0-distrep-dht: Fix layout failed for /0/1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/24/25/26/27/28/29/30
14f8ab
14f8ab
In order to avoid seing these error messages, a modification to the
14f8ab
error handling mechanism has been made.
14f8ab
In addition, several log messages had been added in order to improve debugging efficiency
14f8ab
14f8ab
backport of https://review.gluster.org/#/c/glusterfs/+/24103/
14f8ab
>fixes: bz#1800956
14f8ab
>Change-Id: Ifc82dae79ab3da9fe22ee25088a2a6b855afcfcf
14f8ab
>Signed-off-by: Barak Sason Rofman <bsasonro@redhat.com>
14f8ab
14f8ab
BUG: 1286171
14f8ab
Change-Id: Ifc82dae79ab3da9fe22ee25088a2a6b855afcfcf
14f8ab
Signed-off-by: Barak Sason Rofman <bsasonro@redhat.com>
14f8ab
Reviewed-on: https://code.engineering.redhat.com/gerrit/202562
14f8ab
Tested-by: RHGS Build Bot <nigelb@redhat.com>
14f8ab
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
14f8ab
---
14f8ab
 xlators/cluster/dht/src/dht-rebalance.c | 8 ++++++++
14f8ab
 1 file changed, 8 insertions(+)
14f8ab
14f8ab
diff --git a/xlators/cluster/dht/src/dht-rebalance.c b/xlators/cluster/dht/src/dht-rebalance.c
14f8ab
index 8f31dca..88b6b54 100644
14f8ab
--- a/xlators/cluster/dht/src/dht-rebalance.c
14f8ab
+++ b/xlators/cluster/dht/src/dht-rebalance.c
14f8ab
@@ -3479,6 +3479,10 @@ gf_defrag_process_dir(xlator_t *this, gf_defrag_info_t *defrag, loc_t *loc,
14f8ab
                                       migrate_data, dir_dfmeta, xattr_req,
14f8ab
                                       &should_commit_hash, perrno);
14f8ab
 
14f8ab
+            if (defrag->defrag_status == GF_DEFRAG_STATUS_STOPPED) {
14f8ab
+                goto out;
14f8ab
+            }
14f8ab
+
14f8ab
             if (ret) {
14f8ab
                 gf_log(this->name, GF_LOG_WARNING,
14f8ab
                        "Found "
14f8ab
@@ -3935,6 +3939,10 @@ gf_defrag_fix_layout(xlator_t *this, gf_defrag_info_t *defrag, loc_t *loc,
14f8ab
             ret = gf_defrag_fix_layout(this, defrag, &entry_loc, fix_layout,
14f8ab
                                        migrate_data);
14f8ab
 
14f8ab
+            if (defrag->defrag_status == GF_DEFRAG_STATUS_STOPPED) {
14f8ab
+                goto out;
14f8ab
+            }
14f8ab
+
14f8ab
             if (ret && ret != 2) {
14f8ab
                 gf_msg(this->name, GF_LOG_ERROR, 0, DHT_MSG_LAYOUT_FIX_FAILED,
14f8ab
                        "Fix layout failed for %s", entry_loc.path);
14f8ab
-- 
14f8ab
1.8.3.1
14f8ab