纠删码更新
当对纠删码一个条带内的数据进行更新时,还需要更新校验块,一般有两种方法:
- 重新编码:这种方法导致更新开销过大
- 增量更新:利用新数据相对于旧数据的增量来更新校验块,相比于重新编码,这种方法减少了更新过程中涉及到的网络IO、硬盘IO、计算开销。原理可以参考该篇论文
代码实现
在Intel提供的ISA-L库中,包含了纠删码相关操作的代码实现,其中有一个函数为ec_encode_data_update() 方法,对于该函数的具体实现可以查阅源码,通过该函数我们可以实现增量更新。
测试代码
/**
* len: the length of data block
* vec_i: the vector index corresponding to the updated data block
* data: single pointer to the updated data block increment
* coding: coding Array of pointers to coded output buffers
**/
void
updateTest(int len, int vec_i, uint8_t *data, uint8_t **coding)
{
std::vector<uin