Internships/ProjectIdeas/DiskBackupTool: Difference between revisions

From QEMU
(Created page with ''''Summary:''' Write a tool that performs both full and incremental disk backups QEMU has added command primitives that can be combined to perform both full and incremental disk…')
 
No edit summary
Line 1: Line 1:
===Disk Backup Tool===
'''Summary:''' Write a tool that performs both full and incremental disk backups
'''Summary:''' Write a tool that performs both full and incremental disk backups



Revision as of 17:05, 23 January 2017

Disk Backup Tool

Summary: Write a tool that performs both full and incremental disk backups

QEMU has added command primitives that can be combined to perform both full and incremental disk backups while the virtual machine is running. A full backup copies the entire contents of the disk. An incremental backup copies only regions that have been modified. Orchestrating a multi-disk backup to local or remote storage is non-trivial and there is no example code showing how to do it from start to finish.

It would be helpful to have a "reference implementation" that performs backups using QEMU's QMP commands. Backup software and management stack developers wishing to add QEMU backup support could look at this tool's code as an example. Users who run QEMU directly could us this tool as their backup software.

You need to be able to read C since that's what most of QEMU is written in. This project will expose you to backup and data recovery, as well as developing command-line tools in Python.

See the links to familiarize yourself with disk image files, backups, and snapshots.

Links:

Details:

  • Skill level: intermediate
  • Language: Python
  • Mentors: Stefan Hajnoczi <stefanha@redhat.com> (stefanha on IRC)