Binary Reed–Solomon encoding

From HandWiki

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.

BRS coding

Background

RS coding is a fault-tolerant encoding method for a distributed storage environment. Suppose we wish to distribute data across k individual devices for improved storage capacity or bandwidth, for example in a hardware RAID setup. Such a configuration risks significant data loss in the event of device failure. The Reed-Solomon encoding produces a storage coding system which robust to the simultaneous failure of any subset of m nodes. To do this, we adding m additional nodes to the system, for a total of n = k + m storage nodes.

Traditional RS encoding method uses the 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 the system have 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 k blocks, and each block of data has L-bit data, recorded as

[math]\displaystyle{ S=(s_0,s_1,...,s_{k-1}) }[/math]

where [math]\displaystyle{ s_i=s_{i,0}s_{i,1}...s_{i,L-1} }[/math] , [math]\displaystyle{ i=0,1,2,...,k-1 }[/math] .

2、Builds the calibration data block [math]\displaystyle{ M }[/math][math]\displaystyle{ M }[/math] has a total of [math]\displaystyle{ n-k }[/math] blocks:

[math]\displaystyle{ M=(m_0,m_1,...,m_{n-k-1}) }[/math]

where [math]\displaystyle{ m_i=\sum_{j=0}^{k-1}s_j(r_j^i) }[/math] , [math]\displaystyle{ i=0,1,...,n-k-1 }[/math] .

The addition here are all XOR operation,where [math]\displaystyle{ r_j^i }[/math] represents the number of bits of "0" added to the front of the original data block [math]\displaystyle{ s_j }[/math].Thereby forming a parity data block [math]\displaystyle{ m_i }[/math] . [math]\displaystyle{ r_j^i }[/math]is given by the following way:

[math]\displaystyle{ (r_0^a,r_1^a,...,r_{k-1}^a)=(0,a,2a,...(k-1)a) }[/math]

where [math]\displaystyle{ a=0,1,...n-k-1 }[/math] .

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

BRS encoding example

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

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

[math]\displaystyle{ m_0=s_0(0)\oplus s_1(0)\oplus s_2(0) }[/math], so [math]\displaystyle{ m_0=(m_{0,0}m_{0,1}...m_{0,5}) }[/math]

[math]\displaystyle{ m_1=s_0(0)\oplus s_1(1)\oplus s_2(2) }[/math], so [math]\displaystyle{ m_1=(m_{1,0}m_{1,1}...m_{1,7}) }[/math]

[math]\displaystyle{ m_2=s_0(0)\oplus s_1(2)\oplus s_2(4) }[/math], so [math]\displaystyle{ m_2=(m_{2,0}m_{2,1}...m_{2,9}) }[/math]

BRS decoding principle

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

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 [math]\displaystyle{ n=6 }[/math] , [math]\displaystyle{ k=3 }[/math] . Then

[math]\displaystyle{ m_0=s_0+s_1+s_2 }[/math]

[math]\displaystyle{ m_1=s_0+xs_1+x^2s_2 }[/math]

[math]\displaystyle{ m_1=s_0+x^2s_1+x^4s_2 }[/math]

Supposed [math]\displaystyle{ s_0 }[/math] is intact, [math]\displaystyle{ s_1,s_2 }[/math] miss, choose [math]\displaystyle{ m_1 }[/math], [math]\displaystyle{ m_2 }[/math] to repair, make

[math]\displaystyle{ m_1^*=m_1+s_0 }[/math]

[math]\displaystyle{ m_2^*=m_2+s_0 }[/math]

Because [math]\displaystyle{ m_1 }[/math][math]\displaystyle{ m_2 }[/math][math]\displaystyle{ s_0 }[/math] are known, [math]\displaystyle{ m_1^* }[/math][math]\displaystyle{ m_2^* }[/math] are known. So that

[math]\displaystyle{ s_{1,i-2}=m_{2,i}^*+s_{2,i-4} }[/math]

[math]\displaystyle{ s_{2,i-2}=m_{1,i}^*+s_{1,i-1} }[/math]

According to the above iterative formula, each cycle can figure out two bit values ([math]\displaystyle{ s_1,s_2 }[/math] can get a bit). Each of the original data block length ([math]\displaystyle{ L }[/math] bit), so after repeating [math]\displaystyle{ L }[/math] 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, compared 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 method, BRS encoding can be used to replace the CRS encoding in distributed systems.

Usage

There are open source codes to implement BRS encoding written in C and available on GitHub. In the design and implementation of a distributed storage system, we can use BRS encoding to store data and to achieve the system's own fault tolerance.

References