crc32算法_每天进步一点的一致Hash算法

一致性Hash算法在分布式系统中用于负载均衡,通过 crc32 算法实现,减少服务器增减带来的缓存失效问题。文章介绍了除余法的局限性和一致性Hash的工作原理,包括虚拟节点的概念,以解决负载不均衡。在动态Cache环境中,良好的哈希算法需具备平衡性、单调性、分散性和负载等特性。
摘要由CSDN通过智能技术生成

概述

一致Hash在分布式应用中,是常见的负载均衡方式,多用于资源请求映射分散到具体某一台节点服务器,使得每一台服务器能固定处理部分请求,同时,能较小的减少由于动态增减服务器节点带来请求的失效,保证系统更好对外提供服务。

从问题的发展引入思考

851bd8706b7b4c1e26f4843da6f4b33e.png

图1.假设现在有200万张图片资源,需要随机的分配到3台服务器

除余法

很多人一下子就想到了除余法,通过给每个图片唯一编号(较少的情况),或者通过hash文件名(假设文件名不重复)得到唯一的数字串,然后除余就能随机存放到服务器。

hash(文件名) % n

正常情况下这个算法已经基本满足,因为每次除余之后必然会得到0,1,2三个数,分别对应三台服务器,下次需要找回这些图片资源只要按同样的方式hash之后就能在对应服务器找到。

但是当图片资源过多无法满足需要增加一台服务器的时候,因为除数的改变,带来余数的改变,也就是服务器数量的改变,带来存储位置的改变,之前存储的图片资源失去了意义,在缓存服务器中,这会导致大量缓存失效,造成缓存的雪崩,为了解决这些问题,一致性hash应运而生。

揭开一致性Hash神秘面纱

首先了解一下

CRC32(循环冗余校验)算法是一种常用的数据校验算法,它可以用于检测数据传输过程中是否出现了错误。 在 C# 中,可以使用 System.Security.Cryptography 命名空间下的 CRC32 类来实现 CRC32 算法。下面是一个简单的示例代码: ```csharp using System; using System.Security.Cryptography; public class CRC32Example { public static string GetCRC32(string input) { byte[] bytes = System.Text.Encoding.UTF8.GetBytes(input); using (var crc32 = new CRC32()) { byte[] hash = crc32.ComputeHash(bytes); return BitConverter.ToString(hash).Replace("-", "").ToLower(); } } } public class CRC32 : HashAlgorithm { private const uint DefaultPolynomial = 0xedb88320u; private const uint DefaultSeed = 0xffffffffu; private uint hash; private readonly uint seed; private readonly uint[] table; private static uint[] defaultTable; public CRC32() { table = InitializeTable(DefaultPolynomial); seed = DefaultSeed; Initialize(); } public CRC32(uint polynomial, uint seed) { table = InitializeTable(polynomial); this.seed = seed; Initialize(); } public override void Initialize() { hash = seed; } protected override void HashCore(byte[] array, int ibStart, int cbSize) { hash = CalculateHash(table, hash, array, ibStart, cbSize); } protected override byte[] HashFinal() { byte[] hashBuffer = UInt32ToBigEndianBytes(~hash); this.HashValue = hashBuffer; return hashBuffer; } public override int HashSize => 32; private static uint[] InitializeTable(uint polynomial) { if (polynomial == DefaultPolynomial && defaultTable != null) return defaultTable; uint[] createTable = new uint[256]; for (int i = 0; i < 256; i++) { uint entry = (uint)i; for (int j = 0; j < 8; j++) if ((entry & 1) == 1) entry = (entry >> 1) ^ polynomial; else entry = entry >> 1; createTable[i] = entry; } if (polynomial == DefaultPolynomial) defaultTable = createTable; return createTable; } private static uint CalculateHash(uint[] table, uint seed, byte[] buffer, int start, int size) { uint crc = seed; for (int i = start; i < size; i++) unchecked { crc = (crc >> 8) ^ table[buffer[i] ^ crc & 0xff]; } return crc; } private static byte[] UInt32ToBigEndianBytes(uint x) { return new byte[] { (byte)((x >> 24) & 0xff), (byte)((x >> 16) & 0xff), (byte)((x >> 8) & 0xff), (byte)(x & 0xff) }; } } ``` 使用示例: ```csharp string input = "Hello, World!"; string crc32 = CRC32Example.GetCRC32(input); Console.WriteLine("CRC32 校验为:" + crc32); ``` 输出结果: ``` CRC32 校验为:6f2f7a8c ``` 以上代码实现了一个简单的 CRC32 算法,可以用于计算任意字符串的校验
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值