Skip to main content

Airflow operators to backup and restore data using restic

Project description

Restic Airflow

PyPI version PyPI - Python Version PyPI - Downloads License Build Status

Introduction

This repository provides Apache Airflow operators for managing Restic backups. It allows you to integrate Restic backup operations into your Airflow DAGs using Docker-based operators.

Features

  • Docker-based Restic operators for Airflow
  • Support for S3 and local repositories
  • Built-in notification system for task/DAG success and failure
  • Configurable backup retention policies
  • Repository health checking capabilities

Available Operators

  • ResticInitOperator: Initialize a new Restic repository
  • ResticBackupOperator: Create backups with configurable tags and paths
  • ResticForgetAndPruneOperator: Manage backup retention and cleanup
  • ResticCheckOperator: Verify repository integrity
  • ResticUnlockOperator: Remove stale repository locks
  • ResticPruneOperator: Clean up unused data
  • ResticRepositoryExistsOperator: Check if a repository exists

Usage Example

from airflow import DAG
from restic_airflow.operators.restic import ResticBackupOperator

with DAG('backup_dag', ...) as dag:
    backup_task = ResticBackupOperator(
        task_id='backup_data',
        repository='/path/to/repo',
        backup_from_path='/data/to/backup',
        cache_directory='/tmp/restic-cache',
        tags=['daily'],
        password='your-repository-password',
        hostname='backup-host'
    )

See sample.py for a complete DAG example including initialization, backup, health checks, and retention management.

Environment Variables

The operators support configuration through environment variables:

  • RESTIC_PASSWORD: Repository password
  • AWS_ACCESS_KEY_ID: For S3 repositories
  • AWS_SECRET_ACCESS_KEY: For S3 repositories
  • ALERT_EMAIL: Email address for notifications

Notifications

The package includes a notification system that can send emails on:

  • DAG success/failure
  • Individual task success/failure

License

This project is released into the public domain under the Unlicense.

Supported by

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