From 7e98a0e0b1e346f89047b57e495f66f1b4223997 Mon Sep 17 00:00:00 2001 From: Aravinda VK Date: Wed, 18 Feb 2015 19:07:23 +0530 Subject: feature/glusterfind: A tool to find incremental changes Documentation is available in patch: http://review.gluster.org/#/c/9800/ A tool which helps to get list of modified files or list of all files in GlusterFS Volume using Changelog or find command. Usage ===== glusterfind --help Create: ------- glusterfind create --help The tool creates status file $GLUSTERD_WORKDIR/SESSION/VOLUME/status and records current timestamp to initiate the session. This timestamp will be used as start time for next runs. As part of create also generates ssh key and distributes to all peers. and enables build.pgfid and changelog using volume set command. Pre: ---- glusterfind pre --help This command is used to generate the list of files modified after session creation time or after last run. To get list of all files/dirs in Volume, run pre command with `--full` argument. The tool gets all nodes details using gluster volume info and runs node agent for each brick in respective nodes via ssh command. Once these node agents generate the output file, tool copies to local using scp. Merges all the output files to generate the final output file. Post: ----- glusterfind post --help After consuming the list, this sub command is called to update the session time based on pre command status file. List: ----- glusterfind list --help To view all the sessions Delete: ------- glusterfind delete --help Delete session. Known Issues ------------ 1. Deleted files will not get listed, since we can't convert GFID to Path if file/dir is deleted. 2. Only new name will get listed if Renamed. 3. All hardlinks will get listed. Change-Id: I82991feb0aea85cb6ec035fddbf80a2b276e86b0 BUG: 1193893 Signed-off-by: Aravinda VK Reviewed-on: http://review.gluster.org/9682 Tested-by: Gluster Build System Reviewed-by: Venky Shankar Reviewed-by: Prashanth Pai Reviewed-by: Kotresh HR Reviewed-by: Vijay Bellur --- .gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index acead3677ae..c8c07f9517d 100644 --- a/.gitignore +++ b/.gitignore @@ -56,8 +56,6 @@ extras/systemd/glusterd.service extras/who-wrote-glusterfs/gitdm geo-replication/.tox geo-replication/src/gsyncd -geo-replication/src/gsyncd -geo-replication/src/peer_add_secret_pub geo-replication/src/peer_gsec_create geo-replication/src/peer_mountbroker geo-replication/src/set_geo_rep_pem_keys.sh @@ -86,3 +84,6 @@ xlators/features/glupy/src/__init__.py xlators/features/glupy/src/setup.py xlators/mount/fuse/utils/mount.glusterfs xlators/mount/fuse/utils/mount_glusterfs +extras/peer_add_secret_pub +tools/glusterfind/glusterfind +tools/glusterfind/src/tool.conf -- cgit