Package org.apache.hadoop.hbase.migration.nineteen

Examples of org.apache.hadoop.hbase.migration.nineteen.HStoreKey


    this.encodedRegionName = Integer.parseInt(in.readUTF());
    fileid = in.readLong();
    boolean tmp = in.readBoolean();
    // If true, set region to top.
    region = tmp? Range.top: Range.bottom;
    midkey = new HStoreKey();
    midkey.readFields(in);
  }
View Full Code Here


    this.encodedRegionName = Integer.parseInt(in.readUTF());
    fileid = in.readLong();
    boolean tmp = in.readBoolean();
    // If true, set region to top.
    region = tmp? Range.top: Range.bottom;
    midkey = new HStoreKey();
    midkey.readFields(in);
  }
View Full Code Here

    // This is not actual midkey for this half-file; its just border
    // around which we split top and bottom.  Have to look in files to find
    // actual last and first keys for bottom and top halves.  Half-files don't
    // have an actual midkey themselves. No midkey is how we indicate file is
    // not splittable.
    this.midkey = new HStoreKey((HStoreKey)mk);
    this.midkey.setHRegionInfo(hri);
    // Is it top or bottom half?
    this.top = Reference.isTopFileRegion(r);
  }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.migration.nineteen.HStoreKey

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.