116davinder / apache-kafka-backup-and-restore

It will take backup of given topic and store that into either local filesystem or S3.It will also restore from given local filesystem or S3.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Apache Kafka Backup and Restore

Production Kafka Deployment Using Ansible

General Notes

Requirements

  • confluent_kafka
  • boto3
  • google-cloud-storage
  • pendulum
  • azure-storage-blob
  • minio

Kafka Backup Application

  • It will take backup of given topic and store that into either local filesystem or S3 or Azure.
  • It will auto resume from same point from where it died if given consumer group name is same before and after crash.
  • it will upload current.bin file to s3 which contains messages upto NUMBER_OF_MESSAGE_PER_BACKUP_FILE but will only upload with other backup files.
  • RETRY_UPLOAD_SECONDS controls upload to cloud storage.
  • NUMBER_OF_KAFKA_THREADS is used to parallelise reading from kafka topic. It should not be more than number of partitions.
  • NUMBER_OF_MESSAGE_PER_BACKUP_FILE will try to keep this number consistent in file but if application got restarted then it may be vary for first back file.

Kafka Restore Application

  • it will restore from backup dir into given topic.
  • RETRY_SECONDS controls when to reread FILESYSTEM_BACKUP_DIR for new files.
  • RESTORE_PARTITION_STRATEGY controls, in which partition it will restore messages. if same is mentioned then it will restore into same topic partition but if random is mentioned then it will restore to all partitions randomly.

Known Issues

  • NA

How to Run Applications

Azure Cloud Readme

AWS Cloud Readme

Minio Readme

Local Readme

About

It will take backup of given topic and store that into either local filesystem or S3.It will also restore from given local filesystem or S3.

License:Other


Languages

Language:Python 93.1%Language:Mustache 6.9%