@na
I think thats expected behaaviour. For your scenario I would better suggest to go for DistCp between Snapshot Difference.
distcp -update -diff -delete /source /destination
How to Use This Feature
To use this feature, you should first make sure all assumptions are met. Typical steps are described as follows:
- Create snapshot s0 in the source directory.
- Issue a default
distcp
command that copies everything from s0 to the target directory (command line is like distcp -update <sourceDir>/.snapshot/s0 <targetDir>
). - Create snapshot s0 in the target dir.
- Make some changes in the source dir.
- Create a new snapshot s1, and issue a
distcp
command like distcp -update -diff s0 s1 <sourceDir> <targetDir>
to copy all changes between s0 and s1 to the target directory. - Create a snapshot with the same name s1 in the target dir.
- Repeat steps 4 to 6 with a new snapshot name—for example, s2.
LinkHope this helps you.