一致性哈希:MurmurHash

功能:

  • hash 獲取指定數(shù)據(jù)的一致性hash值
源碼:

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.UnsupportedEncodingException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;

/**
 * This is a very fast, non-cryptographic hash suitable for general hash-based
 * lookup. See http://murmurhash.googlepages.com/ for more details.
 * <p/>
 * <p>
 * The C version of MurmurHash 2.0 found at that site was ported to Java by
 * Andrzej Bialecki (ab at getopt org).
 * </p>
 */
public class MurmurHash {
    
    private static final String UTF_8 = "UTF-8";

    public static long hash64A(byte[] data, int seed) {
        return hash64A(ByteBuffer.wrap(data), seed);
    }

    public static long hash64A(ByteBuffer buf, int seed) {
        ByteOrder byteOrder = buf.order();
        buf.order(ByteOrder.LITTLE_ENDIAN);

        long m = 0xc6a4a7935bd1e995L;
        int r = 47;

        long h = seed ^ (buf.remaining() * m);

        long k;
        while (buf.remaining() >= 8) {
            k = buf.getLong();

            k *= m;
            k ^= k >>> r;
            k *= m;

            h ^= k;
            h *= m;
        }

        if (buf.remaining() > 0) {
            ByteBuffer finish = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
            // for big-endian version, do this first:
            // finish.position(8-buf.remaining());
            finish.put(buf).rewind();
            h ^= finish.getLong();
            h *= m;
        }

        h ^= h >>> r;
        h *= m;
        h ^= h >>> r;

        buf.order(byteOrder);
        return h;
    }

    public long hash(byte[] key) {
        return hash64A(key, 0x1234ABCD);
    }

    public long hash(String key) {
        return hash(encode(key));
    }

    private byte[] encode(String data) {
        try {
            return data.getBytes(UTF_8);
        } catch (UnsupportedEncodingException e) {
            throw new IllegalArgumentException(e);
        }
    }
}
用法:

public static void main(String[] args) {
        // 根據(jù)uid做分庫分表
        String uid = "09cd3de4a570dc31e86234d04afbca7d";
        
        MurmurHash hash = new MurmurHash();
        long h = hash.hash(uid) / 10;
        //long h = 2209705902952448L;
        
        // DB
        long dbIndex = (h & 255) >>> 4;
        System.out.println(dbIndex);
        
        // TABLE
        long tableIndex = h & 255;
        System.out.println(tableIndex);
    }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末纽窟,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子森枪,更是在濱河造成了極大的恐慌,老刑警劉巖县袱,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異筋遭,居然都是意外死亡暴拄,警方通過查閱死者的電腦和手機漓滔,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門响驴,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人豁鲤,你說我怎么就攤上這事鲸沮。” “怎么了讼溺?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長竖席。 經(jīng)常有香客問我敬肚,道長毕荐,這世上最難降的妖魔是什么艳馒? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮第美,結(jié)果婚禮上陆爽,老公的妹妹穿的比我還像新娘什往。我一直安慰自己慌闭,他們只是感情好躯舔,可當我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布省古。 她就那樣靜靜地躺著,像睡著了一般惜互。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上训堆,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天臀栈,我揣著相機與錄音挠乳,去河邊找鬼。 笑死睡扬,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的卖怜。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼奄抽,長吁一口氣:“原來是場噩夢啊……” “哼甩鳄!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起妙啃,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎馆匿,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體渐北,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡铭拧,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年盆昙,在試婚紗的時候發(fā)現(xiàn)自己被綠了焊虏。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡炼团,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出瘟芝,到底是詐尸還是另有隱情褥琐,我是刑警寧澤锌俱,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布敌呈,位于F島的核電站,受9級特大地震影響吭练,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜鲫咽,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一谷异、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧歹嘹,春花似錦、人聲如沸荞下。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽抽诉。三九已至陨簇,卻和暖如春迹淌,著一層夾襖步出監(jiān)牢的瞬間己单,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工纹笼, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留苟跪,地道東北人。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓笋额,卻偏偏與公主長得像,于是被迫代替她去往敵國和親兄猩。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容