Skip to main content

High-throughput parallel file system cleaner

Project description

BeeperPurge 🧹

Python Tests on Release branch (main) codecov

High-throughput parallel file system cleaner designed for efficiently eliminating millions of old files as close to simultaneously as possible.

Features

  • 🚀 Parallel processing with multi-threading
  • 🎯 Precision targeting of files by age
  • 🔍 Dry-run mode for operation verification
  • 📝 Kubernetes-friendly JSON logging
  • 🔒 Safe handling of sensitive file systems
  • ⚙️ Configurable age thresholds
  • 🐳 Production-ready container with security best practices

Installation and Running

Running as a Kubernetes Cron Job (Recommended)

To automate regular cleanups using beeper-purge in Kubernetes, you can configure a Kubernetes CronJob that runs at a specified interval. This example mounts an existing PersistentVolumeClaim (PVC) to the cron job container.

Create a CronJob Manifest: Replace /data with your target path in the volume and adjust schedule and other parameters as needed.

apiVersion: batch/v1
kind: CronJob
metadata:
  name: beeper-purge-cron
spec:
  schedule: "0 0 * * *"  # Run daily at midnight
  jobTemplate:
    spec:
      template:
        spec:
          containers:
            - name: beeper-purge
              image: ghcr.io/RiveryIO/beeper-purge:latest
              args: 
                - "/data"
                - "--max-age-hours"
                - "36"
              volumeMounts:
                - name: data-volume
                  mountPath: /data
          restartPolicy: OnFailure
          volumes:
            - name: data-volume
              persistentVolumeClaim:
                claimName: your-existing-pvc-name  # Replace with your PVC name

Using Docker

docker pull ghcr.io/RiveryIO/beeper-purge:latest

# Always verify targets first with dry run
docker run -v /path/to/clean:/data ghcr.io/RiveryIO/beeper-purge:latest \
    /data --dry-run --max-age-hours 36

# Execute purge operation
docker run -v /path/to/clean:/data ghcr.io/RiveryIO/beeper-purge:latest \
    /data --max-age-hours 36

Using pip

pip install beeper-purge

Usage

# Show help
beeperpurge --help

# Reconnaissance (dry run)
beeperpurge /path/to/clean --dry-run --max-age-hours 36

# Execute purge
beeperpurge /path/to/clean --max-age-hours 36 --workers 16

# Show version
beeperpurge --version

Operational Metrics

$ beeperpurge /data --dry-run
{
    "timestamp": "2024-11-02T10:15:30,123",
    "level": "INFO",
    "message": "Starting purge operation",
    "extra_fields": {
        "root_path": "/data",
        "dry_run": true,
        "max_workers": 16
    }
}
...
{
    "timestamp": "2024-11-02T10:15:35,456",
    "level": "INFO",
    "message": "Operation completed",
    "extra_fields": {
        "files_processed": 1000000,
        "files_targeted": 150000,
        "duration_seconds": 5.33,
        "elimination_rate": 187617
    }
}

Safety Protocols

  • 🛡️ Dry-run mode for target verification
  • 🔗 No symlink following
  • 🚨 Comprehensive error handling
  • 👤 Non-root container execution
  • ✅ Extensive test coverage

Performance Specifications

Scalability

  • Efficiently handles millions of files
  • Memory usage scales linearly with worker count
  • I/O optimized operations

Recommended Configurations

  • Standard systems: 8-16 workers
  • High-performance systems: 16-32 workers
  • Adjust based on:
    • Available CPU cores
    • I/O capabilities
    • File system response times

Development

Setup

# Clone repository
git clone https://github.com/RiveryIO/BeeperPurge.git
cd beeperpurge

# Create virtual environment
python -m venv venv
source venv/bin/activate  # or `venv\Scripts\activate` on Windows

# Install development dependencies
pip install -e ".[dev]"

Testing

# Full test suite
pytest

# Coverage analysis
pytest --cov=beeper_purge

# Specific test execution
pytest tests/test_cleaner.py

Container Build

docker build -t beeper-purge .

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feat/enhancement). Valid branch prefixes are feat,fix,chore.
  3. Commit your changes (git commit -m 'Add enhancement')
  4. Push to the branch (git push origin feat/enhancement)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

beeperpurge-1.0.19.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

beeperpurge-1.0.19-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file beeperpurge-1.0.19.tar.gz.

File metadata

  • Download URL: beeperpurge-1.0.19.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for beeperpurge-1.0.19.tar.gz
Algorithm Hash digest
SHA256 99c72d2aa851fcec415c6a4861be42e38628e4a8d37ad8842799d792998698f3
MD5 74d7525c76dc5582f4d2b7a83c533f5e
BLAKE2b-256 46c0a9be37eded0eac81e308104b11ad27a6e10c4ee5c22d7512fd09d4e6e841

See more details on using hashes here.

File details

Details for the file beeperpurge-1.0.19-py3-none-any.whl.

File metadata

  • Download URL: beeperpurge-1.0.19-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for beeperpurge-1.0.19-py3-none-any.whl
Algorithm Hash digest
SHA256 c2cd6faf79d1a75e00cf49ac49ec8bbc54c4739b649161697933a3b2ba8e8a8f
MD5 90d89b7f1e07e8615d8e2e6d6b106037
BLAKE2b-256 b918ea2249fa0d49d93d74b3edda543859a31c716141286645b0505e2347d7e8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page