50dc83
From 99f86ae7d45667d86b1b6f9f9540ec2889c6c4ce Mon Sep 17 00:00:00 2001
50dc83
From: Ravishankar N <ravishankar@redhat.com>
50dc83
Date: Wed, 8 May 2019 04:51:27 -0400
50dc83
Subject: [PATCH 181/192] afr: log before attempting data self-heal.
50dc83
50dc83
Upstream patch: https://review.gluster.org/#/c/glusterfs/+/22685/
50dc83
50dc83
I was working on a blog about troubleshooting AFR issues and I wanted to copy
50dc83
the messages logged by self-heal for my blog. I then realized that AFR-v2 is not
50dc83
logging *before* attempting data heal while it logs it for metadata and entry
50dc83
heals.
50dc83
50dc83
I [MSGID: 108026] [afr-self-heal-entry.c:883:afr_selfheal_entry_do]
50dc83
0-testvol-replicate-0: performing entry selfheal on
50dc83
d120c0cf-6e87-454b-965b-0d83a4c752bb
50dc83
I [MSGID: 108026] [afr-self-heal-common.c:1741:afr_log_selfheal]
50dc83
0-testvol-replicate-0: Completed entry selfheal on
50dc83
d120c0cf-6e87-454b-965b-0d83a4c752bb. sources=[0] 2  sinks=1
50dc83
I [MSGID: 108026] [afr-self-heal-common.c:1741:afr_log_selfheal]
50dc83
0-testvol-replicate-0: Completed data selfheal on
50dc83
a9b5f183-21eb-4fb3-a342-287d3a7dddc5. sources=[0] 2  sinks=1
50dc83
I [MSGID: 108026] [afr-self-heal-metadata.c:52:__afr_selfheal_metadata_do]
50dc83
0-testvol-replicate-0: performing metadata selfheal on
50dc83
a9b5f183-21eb-4fb3-a342-287d3a7dddc5
50dc83
I [MSGID: 108026] [afr-self-heal-common.c:1741:afr_log_selfheal]
50dc83
0-testvol-replicate-0: Completed metadata selfheal on
50dc83
a9b5f183-21eb-4fb3-a342-287d3a7dddc5. sources=[0] 2  sinks=1
50dc83
50dc83
Adding it in this patch. Now there is a 'performing' and a corresponding
50dc83
'Completed' message for every type of heal.
50dc83
50dc83
BUG: 1710701
50dc83
Change-Id: I91e29dd05af1c78dbc447d1a02dda32b03d64aef
50dc83
fixes: bz#1710701
50dc83
Signed-off-by: Ravishankar N <ravishankar@redhat.com>
50dc83
Reviewed-on: https://code.engineering.redhat.com/gerrit/173108
50dc83
Tested-by: RHGS Build Bot <nigelb@redhat.com>
50dc83
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
50dc83
---
50dc83
 xlators/cluster/afr/src/afr-self-heal-data.c | 3 +++
50dc83
 1 file changed, 3 insertions(+)
50dc83
50dc83
diff --git a/xlators/cluster/afr/src/afr-self-heal-data.c b/xlators/cluster/afr/src/afr-self-heal-data.c
50dc83
index 18a0334..cdff4a5 100644
50dc83
--- a/xlators/cluster/afr/src/afr-self-heal-data.c
50dc83
+++ b/xlators/cluster/afr/src/afr-self-heal-data.c
50dc83
@@ -324,6 +324,9 @@ afr_selfheal_data_do(call_frame_t *frame, xlator_t *this, fd_t *fd, int source,
50dc83
     call_frame_t *iter_frame = NULL;
50dc83
     unsigned char arbiter_sink_status = 0;
50dc83
 
50dc83
+    gf_msg(this->name, GF_LOG_INFO, 0, AFR_MSG_SELF_HEAL_INFO,
50dc83
+           "performing data selfheal on %s", uuid_utoa(fd->inode->gfid));
50dc83
+
50dc83
     priv = this->private;
50dc83
     if (priv->arbiter_count) {
50dc83
         arbiter_sink_status = healed_sinks[ARBITER_BRICK_INDEX];
50dc83
-- 
50dc83
1.8.3.1
50dc83