summaryrefslogtreecommitdiffstats
path: root/Features/trash_xlator.md
blob: 3e38e872cf7558044666350a396f744e36f0ab50 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
Trash Translator
=================

Trash translator will allow users to access deleted or truncated files. Every brick will maintain a hidden .trashcan directory , which will be used to store the files deleted or truncated from the respective brick .The aggreagate of all those .trashcan directory can be accesed from the mount point.In order to avoid name collisions , a time stamp is appended to the original file name while it is being moved to trash directory.

##Implications and Usage
Apart from the primary use-case of accessing files deleted or truncated by user , the trash translator can be helpful for internal operations such as self-heal and rebalance . During self-heal and rebalance it is possible to lose crucial data.In those circumstances the trash translator can assist in recovery of the lost data. The trash translator is designed to intercept unlink, truncate and ftruncate fops, store a copy of the current file in the trash directory, and then perform the fop on the original file. For the internal operations , the files are stored under 'internal_op' folder inside trash directory.

##Volume Options
1. *gluster volume set <VOLNAME> features.trash <on | off>*

    This command can be used to enable trash translator in a volume. If set to on, trash directory will be created in every brick inside the volume during volume start command. By default translator is loaded during volume start but remains non-functional. Disabling trash with the help of this option will not remove the trash directory or even its contents from the volume.

2. *gluster volume set <VOLNAME> features.trash-dir <name>*

    This command is used to reconfigure the trash directory to a user specified name. The argument is a valid directory name. Directory will be created inside every brick under this name. If not specified by the user, the trash translator will create the trash directory with the default name “.trashcan”. This can be used only when trash-translator is on.

3. *gluster volume set <VOLNAME> features.trash-max-filesize <size>*

    This command can be used to filter files entering trash directory based on their size. Files above trash_max_filesize are deleted/truncated directly. Value for size may be followed by mutliplicative suffixes KB (=1024), MB (=1024*1024 and GB. Default size is set to 5MB. As of now any value specified higher than 1GB will be changed to 1GB at the maximum level.

4. *gluster volume set <VOLNAME> features.trash-eliminate-path <path1> [ , <path2> , . . . ]*

    This command can be used to set the eliminate pattern for the trash translator. Files residing under this pattern will not be moved to trash directory during deletion/truncation. Path must be a valid one present in volume.

5. *gluster volume set <VOLNAME> features.trash-internal-op <on | off>*

    This command can be used to enable trash for internal operations like self-heal and re-balance. By default set to off.

##Testing
Following steps give illustrates a simple scenario of deletion of file from directory

1. Create a distributed volume with two bricks and start it.

        gluster volume create test rhs:/home/brick

        gluster volume start test

2. Enable trash translator

        gluster volume set test feature.trash on

3. Mount glusterfs client  as follows.

        mount -t glusterfs  rhs:test /mnt

4. Create a directory and file in the mount.

        mkdir mnt/dir

        echo abc > mnt/dir/file

5. Delete the file from the mount.

        rm mnt/dir/file -rf

6. Checkout inside the trash directory.

        ls mnt/.trashcan

We can find the deleted file inside the trash directory with timestamp appending on its filename.

For example,

        [root@rh-host ~]#mount -t glusterfs rh-host:/test /mnt/test
        [root@rh-host ~]#mkdir /mnt/test/abc
        [root@rh-host ~]#touch /mnt/test/abc/file
        [root@rh-host ~]#rm /mnt/test/abc/filer
        remove regular empty file ‘/mnt/test/abc/file’? y
        [root@rh-host ~]#ls /mnt/test/abc
        [root@rh-host ~]#
        [root@rh-host ~]#ls /mnt/test/.trashcan/abc/
        file2014-08-21_123400

##Points to be remembered
[1] As soon as the volume is started, trash directory will be created inside the volume and will be visible through mount. Disabling trash will not have any impact on its visibilty from the mount.
[2] Eventhough deletion of trash-directory is not permitted, currently residing trash contents will be removed on issuing delete on it and only an empty trash-directory exists.

##Known issues
[1] Since trash translator resides on the server side, DHT translator is unaware of rename and truncate operations being done by this translator which will eventually moves the files to trash directory. Unless and until a complete-path-based lookup comes on trashed files, those may not be visible from the mount.