Chapter 26. Manually Recovering File Split-brain
- Run the following command to obtain the path of the file that is in split-brain:
# gluster volume heal VOLNAME info split-brain
From the command output, identify the files for which file operations performed from the client keep failing with Input/Output error. - Close the applications that opened split-brain file from the mount point. If you are using a virtual machine, you must power off the machine.
- Obtain and verify the AFR changelog extended attributes of the file using the
getfattr
command. Then identify the type of split-brain to determine which of the bricks contains the 'good copy' of the file.getfattr -d -m . -e hex <file-path-on-brick>
For example,# getfattr -d -e hex -m. brick-a/file.txt \#file: brick-a/file.txt security.selinux=0x726f6f743a6f626a6563745f723a66696c655f743a733000 trusted.afr.vol-client-2=0x000000000000000000000000 trusted.afr.vol-client-3=0x000000000200000000000000 trusted.gfid=0x307a5c9efddd4e7c96e94fd4bcdcbd1b
The extended attributes withtrusted.afr.VOLNAMEvolname-client-<subvolume-index>
are used by AFR to maintain changelog of the file. The values of thetrusted.afr.VOLNAMEvolname-client-<subvolume-index>
are calculated by the glusterFS client (FUSE or NFS-server) processes. When the glusterFS client modifies a file or directory, the client contacts each brick and updates the changelog extended attribute according to the response of the brick.subvolume-index
is thebrick number - 1
ofgluster volume info VOLNAME
output.For example,# gluster volume info vol Volume Name: vol Type: Distributed-Replicate Volume ID: 4f2d7849-fbd6-40a2-b346-d13420978a01 Status: Created Snapshot Count: 0 Number of Bricks: 4 x 2 = 8 Transport-type: tcp Bricks: brick1: server1:/rhgs/brick1 brick2: server1:/rhgs/brick2 brick3: server1:/rhgs/brick3 brick4: server1:/rhgs/brick4 brick5: server1:/rhgs/brick5 brick6: server1:/rhgs/brick6 brick7: server1:/rhgs/brick7 brick8: server1:/rhgs/brick8 Options Reconfigured: transport.address-family: inet nfs.disable: on
In the example above:Brick | Replica set | Brick subvolume index ---------------------------------------------------------------------------- /rhgs/brick1 | 0 | 0 /rhgs/brick2 | 0 | 1 /rhgs/brick3 | 1 | 2 /rhgs/brick4 | 1 | 3 /rhgs/brick5 | 2 | 4 /rhgs/brick6 | 2 | 5 /rhgs/brick7 | 3 | 6 /rhgs/brick8 | 3 | 7 ```
Each file in a brick maintains the changelog of itself and that of the files present in all the other bricks in it's replica set as seen by that brick.In the example volume given above, all files in brick-a will have 2 entries, one for itself and the other for the file present in it's replica pair. The following is the changelog for brick2,- trusted.afr.vol-client-0=0x000000000000000000000000 - is the changelog for itself (brick1)
- trusted.afr.vol-client-1=0x000000000000000000000000 - changelog for brick2 as seen by brick1
Likewise, all files in brick2 will have the following:- trusted.afr.vol-client-0=0x000000000000000000000000 - changelog for brick1 as seen by brick2
- trusted.afr.vol-client-1=0x000000000000000000000000 - changelog for itself (brick2)
Note
These files do not have entries for themselves, only for the other bricks in the replica. For example,brick1
will only havetrusted.afr.vol-client-1
set andbrick2
will only havetrusted.afr.vol-client-0
set. Interpreting the changelog remains same as explained below.The same can be extended for other replica pairs.Interpreting changelog (approximate pending operation count) valueEach extended attribute has a value which is 24 hexa decimal digits. First 8 digits represent changelog of data. Second 8 digits represent changelog of metadata. Last 8 digits represent Changelog of directory entries.
Pictorially representing the same is as follows:0x 000003d7 00000001 00000000110 | | | | | \_ changelog of directory entries | \_ changelog of metadata \ _ changelog of data
For directories, metadata and entry changelogs are valid. For regular files, data and metadata changelogs are valid. For special files like device files and so on, metadata changelog is valid. When a file split-brain happens it could be either be data split-brain or meta-data split-brain or both.The following is an example of both data, metadata split-brain on the same file:# getfattr -d -m . -e hex /rhgs/brick?/a getfattr: Removing leading '/' from absolute path names \#file: rhgs/brick1/a trusted.afr.vol-client-0=0x000000000000000000000000 trusted.afr.vol-client-1=0x000003d70000000100000000 trusted.gfid=0x80acdbd886524f6fbefa21fc356fed57 \#file: rhgs/brick2/a trusted.afr.vol-client-0=0x000003b00000000100000000 trusted.afr.vol-client-1=0x000000000000000000000000 trusted.gfid=0x80acdbd886524f6fbefa21fc356fed57
Scrutinize the changelogsThe changelog extended attributes on file/rhgs/brick1/a
are as follows:- The first 8 digits of
trusted.afr.vol-client-0 are all zeros (0x00000000................)
,The first 8 digits oftrusted.afr.vol-client-1
are not all zeros (0x000003d7................).So the changelog on/rhgs/brick-a/a
implies that some data operations succeeded on itself but failed on/rhgs/brick2/a
. - The second 8 digits of
trusted.afr.vol-client-0 are all zeros (0x........00000000........)
, and the second 8 digits oftrusted.afr.vol-client-1
are not all zeros (0x........00000001........).So the changelog on/rhgs/brick1/a
implies that some metadata operations succeeded on itself but failed on/rhgs/brick2/a
.
The changelog extended attributes on file/rhgs/brick2/a
are as follows:- The first 8 digits of
trusted.afr.vol-client-0
are not all zeros (0x000003b0................).The first 8 digits oftrusted.afr.vol-client-1
are all zeros (0x00000000................).So the changelog on/rhgs/brick2/a
implies that some data operations succeeded on itself but failed on/rhgs/brick1/a
. - The second 8 digits of
trusted.afr.vol-client-0
are not all zeros (0x........00000001........)The second 8 digits oftrusted.afr.vol-client-1
are all zeros (0x........00000000........).So the changelog on/rhgs/brick2/a
implies that some metadata operations succeeded on itself but failed on/rhgs/brick1/a
.
Here, both the copies have data, metadata changes that are not on the other file. Hence, it is both data and metadata split-brain.Deciding on the correct copyYou must inspect
stat
andgetfattr
output of the files to decide which metadata to retain and contents of the file to decide which data to retain. To continue with the example above, here, we are retaining the data of/rhgs/brick1/a
and metadata of/rhgs/brick2/a
.Resetting the relevant changelogs to resolve the split-brainResolving data split-brainYou must change the changelog extended attributes on the files as if some data operations succeeded on
/rhgs/brick1/a
but failed on /rhgs/brick-b/a. But/rhgs/brick2/a
shouldnot
have any changelog showing data operations succeeded on/rhgs/brick2/a
but failed on/rhgs/brick1/a
. You must reset the data part of the changelog ontrusted.afr.vol-client-0
of/rhgs/brick2/a
.Resolving metadata split-brainYou must change the changelog extended attributes on the files as if some metadata operations succeeded on/rhgs/brick2/a
but failed on/rhgs/brick1/a
. But/rhgs/brick1/a
shouldnot
have any changelog which says some metadata operations succeeded on/rhgs/brick1/a
but failed on/rhgs/brick2/a
. You must reset metadata part of the changelog ontrusted.afr.vol-client-1
of/rhgs/brick1/a
Run the following commands to reset the extended attributes.- On
/rhgs/brick2/a
, fortrusted.afr.vol-client-0 0x000003b00000000100000000
to0x000000000000000100000000
, execute the following command:# setfattr -n trusted.afr.vol-client-0 -v 0x000000000000000100000000 /rhgs/brick2/a
- On
/rhgs/brick1/a
, fortrusted.afr.vol-client-1 0x0000000000000000ffffffff
to0x000003d70000000000000000
, execute the following command:# setfattr -n trusted.afr.vol-client-1 -v 0x000003d70000000000000000 /rhgs/brick1/a
After you reset the extended attributes, the changelogs would look similar to the following:# getfattr -d -m . -e hex /rhgs/brick?/a getfattr: Removing leading '/' from absolute path names \#file: rhgs/brick1/a trusted.afr.vol-client-0=0x000000000000000000000000 trusted.afr.vol-client-1=0x000003d70000000000000000 trusted.gfid=0x80acdbd886524f6fbefa21fc356fed57 \#file: rhgs/brick2/a trusted.afr.vol-client-0=0x000000000000000100000000 trusted.afr.vol-client-1=0x000000000000000000000000 trusted.gfid=0x80acdbd886524f6fbefa21fc356fed57
Resolving Directory entry split-brainAFR has the ability to conservatively merge different entries in the directories when there is a split-brain on directory. If on one brick directory
storage
has entries1
,2
and has entries3
,4
on the other brick then AFR will merge all of the entries in the directory to have1, 2, 3, 4
entries in the same directory. But this may result in deleted files to re-appear in case the split-brain happens because of deletion of files on the directory. Split-brain resolution needs human intervention when there is at least one entry which has same file name but differentgfid
in that directory.For example:Onbrick-a
the directory has 2 entriesfile1
withgfid_x
andfile2
. Onbrick-b
directory has 2 entriesfile1
withgfid_y
andfile3
. Here the gfid's offile1
on the bricks are different. These kinds of directory split-brain needs human intervention to resolve the issue. You must remove eitherfile1
onbrick-a
or thefile1
onbrick-b
to resolve the split-brain.In addition, the correspondinggfid-link
file must be removed. Thegfid-link
files are present in the .glusterfs
directory in the top-level directory of the brick. If the gfid of the file is0x307a5c9efddd4e7c96e94fd4bcdcbd1b
(the trusted.gfid extended attribute received from thegetfattr
command earlier), the gfid-link file can be found at/rhgs/brick1/.glusterfs/30/7a/307a5c9efddd4e7c96e94fd4bcdcbd1b
.Warning
Before deleting thegfid-link
, you must ensure that there are no hard links to the file present on that brick. If hard-links exist, you must delete them. - Trigger self-heal by running the following command:
# ls -l <file-path-on-gluster-mount>
or# gluster volume heal VOLNAME