Binary Reed–Solomon encoding

Binary Reed–Solomon coding (BRS), which belongs to a RS code, is a way of encoding that can fix node data loss in a distributed storage environment. It has maximum distance separable (MDS) encoding properties,Its encoding and decoding rate outperforms conventional RS coding and optimum CRS coding.

Contents

Background

RS coding is a fault-tolerant encoding method in a distributed storage environment, It stores data into blocks, each block is size , and generating coded blocks in data blocks via coding matrix, where . Each coded block is stored in a storage node, when the loss number of encoded blocks is not greater than , the system can fix all the data from any of the coded blocks.

Traditional RS encoding method uses Vandermonde matrix as a coding matrix and its inverse as the decoding matrix. Traditional RS encoding and decoding operations are all carried out on a large finite domain.

Because BRS encoding and decoding employ only shift and XOR operations, they are much faster than traditional RS coding.

The algorithm of BRS coding is proposed by the advanced network technology laboratory of Peking University, and it also released the open source implementation of BRS coding. In the actual environment test, the encoding and decoding speed of BRS is faster than that of CRS. In the design and implementation of distributed storage system, using BRS coding can make makes the system has the characteristics of fault tolerant regeneration.

Principle

BRS encoding principle

The structure of traditional Reed–Solomon codes is based on finite fields, and the BRS code is based on the shift and XOR operation. BRS encoding is based on the Vandermonde matrix, and its specific encoding steps are as follows:

1、Equally divides the original data blocks into blocks, and each block of data has -bit data, recorded as

S=(s_0,s_1,...,s_{k-1})

where s_i=s_{i,0}s_{i,1}...s_{i,L-1} , i=0,1,2,...,k-1 .

2、Builds the calibration data block MM has a total of n-k blocks:

M=(m_0,m_1,...,m_{n-k-1})

where m_i=sum_{j=0}^{k-1}s_j(r_j^i) , i=0,1,...,n-k-1 .

The addition here are all XOR operation,where r_j^i represents the number of bits of “0” added to the front of the original data block s_j . Thereby forming a parity data block m_i . r_j^iis given by the following way:

(r_0^a,r_1^a,...,r_{k-1}^a)=(0,a,2a,...(k-1)a)

where a=0,1,...n-k-1 .

3、Each node stores data, nodes N_i(i=0,1,...,n-1) store the data as s_0,s_1,...,s_{k-1},m_0,m_1,...,m_{n-k-1} .

BRS encoding example

If now n=6,k=3 , there ID_0=(0,0,0)ID_0=(0,1,2)ID_0=(0,2,4) . The original data block are s_i=s_0,s_1,...,s_{L-1} , where i=0,1,...,k-1 , The calibration data for each block are m_i=m_{i,0}m_{i,1}...mx_{i,L+itimes(k-1)-1} ,where i=0,1,...,k-1 .

Calculation of calibration data blocks is as follows, the addition operation represents a bit XOR operation:

m_0=s_0(0)oplus s_1(0)oplus s_2(0), so m_0=(m_{0,0}m_{0,1}...m_{0,5})

m_1=s_0(0)oplus s_1(1)oplus s_2(2), so m_1=(m_{1,0}m_{1,1}...m_{1,7})

m_2=s_0(0)oplus s_1(2)oplus s_2(4), so m_2=(m_{2,0}m_{2,1}...m_{2,9})

BRS decoding principle

In the structure of BRS code, we divide the original data blocks into k blocks. They are S=(s_0,s_1,...,s_{k-1}) . And encoding has been n block calibration data blocks, there are M=(m_0,m_1,...,m_{n-k-1}) .

During the decoding process, there is a necessary condition: The number of undamaged calibration data blocks have to be greater than or equal to the number of the original data blocks that missing, if not, it cannot be repaired.

The following is a decoding process analysis:

Might as well make n=6 , k=3 . Then

m_0=s_0+s_1+s_2

m_1=s_0+xs_1+x^2s_2

m_1=s_0+x^2s_1+x^4s_2

Supposed s_0 is intact, s_1,s_2 miss, choose m_1, m_2 to repair, make

m_1^*=m_1+s_0

m_2^*=m_2+s_0

Because m_1m_2s_0 are known, m_1^*m_2^* are known. So that

s_{1,i-2}=m_{2,i}^*+s_{2,i-4}

s_{2,i-2}=m_{1,i}^*+s_{1,i-1}

According to the above iterative formula, each cycle can figure out two bit values(s_1,s_2 can get a bit). Each of the original data block length(L bit), so after repeating L times, We can work out all the unknown bit in the original data block. by parity of reasoning, we can completed the data decoding.

Performance

Some experiments shows that, considering the encoding rate, BRS encoding rate is about 6-fold as much as RS encoding rate and 1.5-fold as much as CRS encoding rate in the single core processor, which meets the conditions that compare to RS encoding, its encoding speed upgrades no less than 200%.

Under the same conditions, for the different number of deletions, BRS decoding rate is about 4-fold as much as RS encoding rate, about 1.3-fold as much as CRS encoding rate, which meets the conditions that compare to RS encoding, the decoding speed promotes 100%.

Applications

In the current situation, the application of distributed systems is commonly used. Using erasure code to store data in the bottom of the distributed storage system can increase the fault tolerance of the system. at the same time, compare to the traditional replica strategy,erasure code technology can exponentially improve the reliability of the system for the same redundancy.

BRS encoding can be applied to distributed storage systems, for example, BRS encoding can be used as the underlying data encoding while using HDFS. Due to the advantages of performance and similarity of the encoding way, BRS encoding can be used to replace the CRS encoding in distributed systems.

Usage

There are open source code to implement BRS encoding written by C language and are placed in Github, In the design and implementation of distributed storage system, we can use the BRS encoding way to store data, to achieve the system’s own fault tolerance.

Source

http://wikipedia.org/

See Also on BitcoinWiki