Sreedev Kodichath 58e33cc8da v0.3 (#61)
- [x] parallelization
    - [x] (scanning) + (processing sw & processing hw & formatting & printing)
- [x] reduce cloning values on the heap
- [x] add a partial hashing mode (--strict)
- [x] add unit tests
- [x] add silent mode
- [x] update documentation
- [x] remove color output
- [x] progress bar improvements
    - [x] use progress bar groups
- [x] remove broken json rendering
- [x] add benchmarks
2025-07-13 19:03:14 -04:00
2024-07-04 23:23:01 -04:00
2023-08-10 19:51:57 -04:00
2025-07-13 19:03:14 -04:00
2025-07-13 19:03:14 -04:00
2025-07-12 00:24:25 +00:00
2025-07-13 19:03:14 -04:00
2025-07-13 19:03:14 -04:00
2023-01-13 01:09:31 -05:00
2022-12-24 19:18:17 -05:00
2025-07-13 19:03:14 -04:00
2025-07-13 19:03:14 -04:00

Deduplicator

Find, Sort, Filter & Delete duplicate files

Usage

find,filter and delete duplicate files

Usage: deduplicator [OPTIONS] [scan_dir_path]

Arguments:
  [scan_dir_path]  Run Deduplicator on dir different from pwd (e.g., ~/Pictures )

Options:
  -t, --types <TYPES>          Filetypes to deduplicate [default = all]
  -i, --interactive            Delete files interactively
  -m, --min-size <MIN_SIZE>    Minimum filesize of duplicates to scan (e.g., 100B/1K/2M/3G/4T) [default: 1b]
  -D, --max-depth <MAX_DEPTH>  Max Depth to scan while looking for duplicates
  -d, --min-depth <MIN_DEPTH>  Min Depth to scan while looking for duplicates
  -f, --follow-links           Follow links while scanning directories
  -s, --strict                 Guarantees that two files are duplicate (performs a full hash)
  -p, --progress               Show Progress spinners & metrics
  -h, --help                   Print help
  -V, --version                Print version

Examples

# Scan for duplicates recursively from the current dir, only look for png, jpg & pdf file types & interactively delete files
deduplicator -t pdf,jpg,png -i

# Scan for duplicates recursively from the ~/Pictures dir, only look for png, jpeg, jpg & pdf file types & interactively delete files
deduplicator ~/Pictures/ -t png,jpeg,jpg,pdf -i

# Scan for duplicates in the ~/Pictures without recursing into subdirectories
deduplicator ~/Pictures --max-depth 0

# look for duplicates in the ~/.config directory while also recursing into symbolic link paths
deduplicator ~/.config --follow-links

# scan for duplicates that are greater than 100mb in the ~/Media directory
deduplicator ~/Media --min-size 100mb

Demo

record

Installation

Currently, you can only install deduplicator using cargo package manager.

Cargo

GxHash relies on aes hardware acceleration, so please set RUSTFLAGS to "-C target-feature=+aes" or "-C target-cpu=native" before installing.

install from crates.io

$ RUSTFLAGS="-C target-cpu=native" cargo install deduplicator

install from git

$ RUSTFLAGS="-C target-cpu=native" cargo install deduplicator --git https://github.com/sreedevk/deduplicator

Performance

Deduplicator uses size comparison and GxHash to quickly check a large number of files to find duplicates. its also heavily parallelized. The default behavior of deduplicator is to only hash the first page (4K) of the file. This is to ensure that performance is the default priority. You can modify this behavior by using the --strict flag which will hash the whole file and ensure that 2 files are indeed duplicates. I'll add benchmarks in future versions.

Benchmarks

I've used hyperfine to run deduplicator on files generated by the rake file at rakelib/benchmark.rake. The Benchmarking accuracy can further be improved by isolating runs inside restricted docker containers. I'll include that in the future. For now, here's the hyperfine output on my i7-12800H laptop with 32G of RAM.

Fewer Large Files

# hyperfine -N --warmup 80 './target/release/deduplicator bench_artifacts'
Benchmark 1: ./target/release/deduplicator bench_artifacts
  Time (mean ± σ):       2.5 ms ±   0.4 ms    [User: 2.2 ms, System: 4.8 ms]
  Range (min … max):     1.9 ms …   6.8 ms    1322 runs

# dust 'bench_artifacts'
 37M   ┌── file_1_fwds.bin   │██                                                                                                                              │   1%
201M   ├── file_0_fwds.bin   │██████████                                                                                                                      │   8%
390M   ├── file_0_fwdcbss.bin│████████████████████                                                                                                            │  15%
390M   ├── file_0_fwscas.bin │████████████████████                                                                                                            │  15%
390M   ├── file_0_fwss.bin   │████████████████████                                                                                                            │  15%
390M   ├── file_1_fwdcbss.bin│████████████████████                                                                                                            │  15%
390M   ├── file_1_fwscas.bin │████████████████████                                                                                                            │  15%
390M   ├── file_1_fwss.bin   │████████████████████                                                                                                            │  15%
2.5G ┌─┴ bench_artifacts     │███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ │ 100%

Many Small Files

# hyperfine --warmup 20 './target/release/deduplicator bench_artifacts'
Benchmark 1: ./target/release/deduplicator bench_artifacts
  Time (mean ± σ):      22.3 ms ±   1.7 ms    [User: 35.8 ms, System: 46.3 ms]
  Range (min … max):    18.9 ms …  27.2 ms    112 runs

# dust 'bench_artifacts'
3.9M   ┌── file_992_fwss.bin   │█                                                                                                                                             │   0%
3.9M   ├── file_993_fwdcbss.bin│█                                                                                                                                             │   0%
3.9M   ├── file_993_fwscas.bin │█                                                                                                                                             │   0%
3.9M   ├── file_993_fwss.bin   │█                                                                                                                                             │   0%
3.9M   ├── file_994_fwdcbss.bin│█                                                                                                                                             │   0%
3.9M   ├── file_994_fwscas.bin │█                                                                                                                                             │   0%
3.9M   ├── file_994_fwss.bin   │█                                                                                                                                             │   0%
3.9M   ├── file_995_fwdcbss.bin│█                                                                                                                                             │   0%
3.9M   ├── file_995_fwscas.bin │█                                                                                                                                             │   0%
3.9M   ├── file_995_fwss.bin   │█                                                                                                                                             │   0%
3.9M   ├── file_996_fwdcbss.bin│█                                                                                                                                             │   0%
3.9M   ├── file_996_fwscas.bin │█                                                                                                                                             │   0%
3.9M   ├── file_996_fwss.bin   │█                                                                                                                                             │   0%
3.9M   ├── file_997_fwdcbss.bin│█                                                                                                                                             │   0%
3.9M   ├── file_997_fwscas.bin │█                                                                                                                                             │   0%
3.9M   ├── file_997_fwss.bin   │█                                                                                                                                             │   0%
3.9M   ├── file_998_fwdcbss.bin│█                                                                                                                                             │   0%
3.9M   ├── file_998_fwscas.bin │█                                                                                                                                             │   0%
3.9M   ├── file_998_fwss.bin   │█                                                                                                                                             │   0%
3.9M   ├── file_999_fwdcbss.bin│█                                                                                                                                             │   0%
3.9M   ├── file_999_fwscas.bin │█                                                                                                                                             │   0%
3.9M   ├── file_999_fwss.bin   │█                                                                                                                                             │   0%
3.9M   ├── file_99_fwdcbss.bin │█                                                                                                                                             │   0%
3.9M   ├── file_99_fwscas.bin  │█                                                                                                                                             │   0%
3.9M   ├── file_99_fwss.bin    │█                                                                                                                                             │   0%
3.9M   ├── file_9_fwdcbss.bin  │█                                                                                                                                             │   0%
3.9M   ├── file_9_fwscas.bin   │█                                                                                                                                             │   0%
3.9M   ├── file_9_fwss.bin     │█                                                                                                                                             │   0%
 11G ┌─┴ bench_artifacts       │█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ │ 100%

proposed

  • parallelization
    • (scanning + processing sw + processing hw) & formatting & printing
    • scanning + processing sw + processing hw + formatting + printing
  • max file path size should use the last set of duplicates
  • add more unit tests
    • test against different filesystems
    • test against different file name encodings
  • restore json output (was removed in 0.3)
  • fix memory leak on very large filesystems
    • maybe use a bloom filter
    • reduce FileInfo size
  • output in a tree format
  • tui
  • change the default hashing method to include the first & last page of a file (8K)

v0.3

  • parallelization
    • (scanning) + (processing sw & processing hw & formatting & printing)
  • reduce cloning values on the heap
  • add a partial hashing mode (--strict)
  • add unit tests
  • add silent mode
  • update documentation
  • remove color output
  • progress bar improvements
    • use progress bar groups
  • remove broken json rendering
  • add benchmarks
Languages
Rust 92.2%
Ruby 7.8%