BosCollege-SimpleDB-線性哈希索引

Author: Sixing Yan

在SimpleDB-3.00中呢燥,相對(duì)于原有的靜態(tài)哈希索引技術(shù),我們將實(shí)現(xiàn)一種動(dòng)態(tài)哈希索引技術(shù)充易,線性哈希索引技術(shù)菇民。相關(guān)算法的可以參考這篇文章

該哈希索引的核心思想是持钉,當(dāng)一個(gè)哈希桶被填滿時(shí)衡招,將該哈希桶分裂成 新&舊哈希桶,其中將有一般左右的數(shù)據(jù)從舊哈希桶移動(dòng)到新哈希桶每强。查詢時(shí)始腾,通過(guò)對(duì)比哈希鍵(key)的值與分裂點(diǎn)游標(biāo),判斷當(dāng)前桶是否已經(jīng)被分裂空执,如果被分裂浪箭,則用“升級(jí)的”哈希函數(shù)重新計(jì)算鍵值,找到目標(biāo)數(shù)據(jù)所在的哈希桶辨绊。

在具體實(shí)現(xiàn)中奶栖,相比于靜態(tài)索引僅需一個(gè)(種)索引文件,線性哈希索引需要兩個(gè)(種)索引文件门坷。兩個(gè)索引文件分別是:存儲(chǔ)線性哈希函數(shù)參數(shù)的索引文件宣鄙,存儲(chǔ)具體數(shù)據(jù)映射地址的哈希桶。


linear structure.jpg

根據(jù)這篇文章示意的函數(shù)算法默蚌, 我們可以在SimpleDB-3.00中實(shí)現(xiàn)線性哈希索引技術(shù)冻晤,該類的工作流程如下。

linear hash.jpg

首先绸吸,初始實(shí)例化一個(gè)LinearHashIndex類鼻弧,除了(保留地)為當(dāng)前索引名(idxname),涉及的表的Schema信息(sch)以及當(dāng)前的事務(wù)(tx)惯裕,還需要初始化線性哈希方程initLinearHash温数。
初始化線性哈希方程時(shí),

  • 檢查方程文件是否存在(tx.size("lnrhshcat") == 0)蜻势,如果不存在則新建撑刺。
    使用tableMgr來(lái)新建一個(gè)table結(jié)構(gòu)的文件,每一條記錄即是一個(gè)索引的哈希函數(shù)的參數(shù)
  • 接著檢查該索引的哈希方程是否存在(flag != true)握玛,如果不存在則新建(createFunction())够傍。
    通過(guò)遍歷方程文件來(lái)查找是否有符合條件的函數(shù)甫菠,如果沒(méi)有 則向方程文件插入一條記錄。同時(shí)新建默認(rèn)個(gè)數(shù)的哈希桶文件冕屯,該桶文件使用table結(jié)構(gòu)寂诱。
public class LinearHashIndex {
    public static int DFLT_COUNT = 25;
    public static int DFLT_SIZE = 100;
    public static int DFLT_ROUND = 1;
    public static int DFLT_SPLIT = 0;

    private String idxname;
    private Schema sch;
    private Transaction tx;
    private Constant searchkey = null;
    private TableScan ts = null;

    private int round; // 第幾回合
    private int split; // 分裂點(diǎn)坐標(biāo)
    private int size; // function的最大bucket數(shù)量
    private int count; // 目前有多少個(gè)bucket
    private RID funcRid;
    private TableInfo funcTi;

    /**
     * Opens a hash index for the specified index.
     * @param idxname the name of the index
     * @param sch the schema of the index records
     * @param tx the calling transaction
     */
    public LinearHashIndex(String idxname, Schema sch, Transaction tx) {
        this.idxname = idxname;
        this.sch = sch;
        this.tx = tx;
        initLinearHash();}

    public void initLinearHash() {
        String functbl = this.idxname + "func";
        Schema funcsch = new Schema();
        funcsch.addStringField("funcname", MAX_NAME);
        funcsch.addIntField("round");
        funcsch.addIntField("size");
        funcsch.addIntField("count");
        funcsch.addIntField("split");

        if (tx.size("lnrhshcat") == 0) // if the function file no exists
            // create linear-hash file
            SimpleDB.mdmgr().tblmgr.createTable("lnrhshcat", funcsch, this.tx);// tablemgr
        // open linear-hash file
        this.funcTi = new TableInfo(functbl, funcsch);
        // get the related record
        RecordFile fcatfile = new RecordFile(this.funcTi, tx);
        Boolean flag = false;
        while (fcatfile.next())
            if (fcatfile.getString("funcname").equals(tblname)) {
                flag = true;
                this.size = fcatfile.getInt("size");
                this.count = fcatfile.getInt("count");
                this.split = fcatfile.getInt("split");
                this.round = fcatfile.getInt("round");
                break;
            }
        if (flag != true) // if there no exist the related record
            createFunction(funcTi);}

    public void createFunction(TableInfo funcTi) {
        // a record of parameter into tblcat
        RecordFile fcatfile = new RecordFile(funcTi, tx);
        fcatfile.insert();
        fcatfile.setInt("funcname", funcTi.fileName());
        fcatfile.setInt("round", DFLT_ROUND);
        fcatfile.setInt("size", DFLT_SIZE);
        fcatfile.setInt("count", DFLT_COUNT);
        fcatfile.setInt("split", DFLT_SPLIT);
        fcatfile.close();
        // record the information of current function
        this.funcRid = fcatfile.currentRid();
        this.count = DFLT_COUNT;
        this.size = DFLT_SIZE;
        this.round = DFLT_ROUND;
        this.split = DFLT_SPLIT;
        //initial default buckets
        for (int bkt = 0; bkt < this.count; i++)
            SimpleDB.mdmgr().tblmgr.createTable(this.idxname + bkt, this.sch, this.tx) // tablemgr}
    ...
}
public class LinearHashIndex {
    public static int DFLT_COUNT = 25;
    public static int DFLT_SIZE = 100;
    public static int DFLT_ROUND = 1;
    public static int DFLT_SPLIT = 0;

    private String idxname;
    private Schema sch;
    private Transaction tx;
    private Constant searchkey = null;
    private TableScan ts = null;

    private int round; // 第幾回合
    private int split; // 分裂點(diǎn)坐標(biāo)
    private int size; // function的最大bucket數(shù)量
    private int count; // 目前有多少個(gè)bucket
    private RID funcRid;
    private TableInfo funcTi;

    ...
    public void beforeFirst(Constant searchkey) {
        close(); // end up the scan on the last file
        this.searchkey = searchkey;
        int bucket = linearHash();
        String tblname = idxname + bucket;
        TableInfo ti = new TableInfo(tblname, sch); // this will open a bucket
        this.ts = new TableScan(ti, tx);
    }
    
    private int linearHash() {
        int key = this.searchkey.hashCode();
        int bktnum = hash(key, this.round);
        if (bktnum < this.split)
            bktnum = hash(key, this.round + 1);
        return bktnum;}

    private int hash(int key, int round) {return key % (this.count * round);}
      ...
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市安聘,隨后出現(xiàn)的幾起案子痰洒,更是在濱河造成了極大的恐慌,老刑警劉巖浴韭,帶你破解...
    沈念sama閱讀 206,482評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件丘喻,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡念颈,警方通過(guò)查閱死者的電腦和手機(jī)泉粉,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)榴芳,“玉大人嗡靡,你說(shuō)我怎么就攤上這事】吒校” “怎么了讨彼?”我有些...
    開(kāi)封第一講書人閱讀 152,762評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)肌括。 經(jīng)常有香客問(wèn)我点骑,道長(zhǎng),這世上最難降的妖魔是什么谍夭? 我笑而不...
    開(kāi)封第一講書人閱讀 55,273評(píng)論 1 279
  • 正文 為了忘掉前任黑滴,我火速辦了婚禮,結(jié)果婚禮上紧索,老公的妹妹穿的比我還像新娘袁辈。我一直安慰自己,他們只是感情好珠漂,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評(píng)論 5 373
  • 文/花漫 我一把揭開(kāi)白布晚缩。 她就那樣靜靜地躺著,像睡著了一般媳危。 火紅的嫁衣襯著肌膚如雪荞彼。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書人閱讀 49,046評(píng)論 1 285
  • 那天待笑,我揣著相機(jī)與錄音鸣皂,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛寞缝,可吹牛的內(nèi)容都是我干的癌压。 我是一名探鬼主播,決...
    沈念sama閱讀 38,351評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼荆陆,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼滩届!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起被啼,我...
    開(kāi)封第一講書人閱讀 36,988評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤帜消,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后趟据,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體券犁,經(jīng)...
    沈念sama閱讀 43,476評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評(píng)論 2 324
  • 正文 我和宋清朗相戀三年汹碱,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片荞估。...
    茶點(diǎn)故事閱讀 38,064評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡咳促,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出勘伺,到底是詐尸還是另有隱情跪腹,我是刑警寧澤,帶...
    沈念sama閱讀 33,712評(píng)論 4 323
  • 正文 年R本政府宣布飞醉,位于F島的核電站冲茸,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏缅帘。R本人自食惡果不足惜轴术,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望钦无。 院中可真熱鬧逗栽,春花似錦、人聲如沸失暂。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,264評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)弟塞。三九已至凭峡,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間决记,已是汗流浹背摧冀。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 31,486評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人按价。 一個(gè)月前我還...
    沈念sama閱讀 45,511評(píng)論 2 354
  • 正文 我出身青樓惭适,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親楼镐。 傳聞我的和親對(duì)象是個(gè)殘疾皇子癞志,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評(píng)論 2 345

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