minio/docs/erasure/README.md
2016-07-26 00:09:57 -07:00

4 KiB

Minio Erasure Code Quickstart Guide Gitter

Minio protects data against hardware failures and silent data corruption using erasure code and checksums. You may lose half the number (N/2) of drives and still be able to recover the data.

1. Prerequisites:

Install Minio - Minio Quickstart Guide

What is Erasure Code?

Erasure code is a mathematical algorithm to reconstruct missing or corrupted data. Minio uses Reed-Solomon code to shard objects into N/2 data and N/2 parity blocks. This means that in a 12 drive setup, an object is sharded across as 6 data and 6 parity blocks. You can lose as many as 6 drives (be it parity or data) and still reconstruct the data reliably from the remaining drives.

Why is Erasure Code useful?

Erasure code protects data from multiple drives failure unlike RAID or replication. Minio encodes each object individually with a high parity count. Storage servers once deployed should not require drive replacement or healing for the lifetime of the server. Minio's erasure coded backend is designed for operational efficiency and takes full advantage of hardware acceleration whenever available.

Erasure

What is Bit Rot protection?

Bit Rot also known as Data Rot or Silent Data Corruption is a serious data loss issue faced by disk drives today. Data on the drive may silently get corrupted without signalling an error has occurred. This makes Bit Rot more dangerous than permanent hard drive failure.

Minio's erasure coded backend uses high speed BLAKE2 hash based checksums to protect against Bit Rot.

Deployment Scenarios

Minio server runs on a variety of hardware, operating systems and virtual/container environments.

Minio erasure code backend is limited by design to a minimum of 6 drives and a maximum of 16 drives. The hard limit of 16 drives comes from operational experience. Failure domain becomes too large beyond 16 drives. If you need to scale beyond 16 drives, you may run multiple instances of Minio server on different ports.

Reference Physical Hardware:

Reference Cloud Hosting Providers:

  • Packet: Packet is the baremetal cloud provider.
  • Digital Ocean: Deploy an SSD cloud server in 55 seconds.
  • OVH: Build your own infrastructure with OVH public cloud.
  • Onlinetech: Secure, compliant enterprise cloud.
  • SSD Nodes: Simple, high performance cloud provider with truly personalized support.

2. Run Minio Server with Erasure Code.

Example: Start Minio server in a 12 drives setup.


$ minio server /mnt/export1/backend /mnt/export2/backend /mnt/export3/backend /mnt/export4/backend /mnt/export5/backend /mnt/export6/backend /mnt/export7/backend /mnt/export8/backend /mnt/export9/backend /mnt/export10/backend /mnt/export11/backend /mnt/export12/backend

3. Test your setup

You may unplug drives randomly and continue to perform I/O on the system.