You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. Dobry Wieczor. I am researching how to implement a series of steps to deduplicate files by their compressed versions while matching on their original content hash. There are two big goals
Skip any necessity to decompress the files in treeA first to run fclones to match them to treeB
Skip the computationally intensive steps of compression in treeB and directly deduplicate it with t
Deduplicate with a hard-link to treeA/dir1/file1.txt.zst directly
dir2/file2.txt » Size MM
Calculate & Store Hash YY in HashCacheB.txt
Size does not match Compress » file2.txt.zst
No
dir3/file3.txt » Size P
Calculate & Store Hash ZZ in HashCacheB.txt
Hash does not match Compress » file3.txt.zst
No
Later, a new treeC is processed with some files matching in either A, B, or both. Combine the data from HashA and HashB during skip compression and deduplication steps.
Is there any way to use fclones for this (or any other deduplication tools?) to develop this custom system?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello. Dobry Wieczor. I am researching how to implement a series of steps to deduplicate files by their compressed versions while matching on their original content hash. There are two big goals
Here is a visual example:
Later, a new treeB is processed with some files matching and some not.
Later, a new treeC is processed with some files matching in either A, B, or both. Combine the data from HashA and HashB during skip compression and deduplication steps.
Is there any way to use fclones for this (or any other deduplication tools?) to develop this custom system?
Beta Was this translation helpful? Give feedback.
All reactions