HBASE-1727 HTD and HCD versions need update
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@799992 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
24de2aec2f
commit
662b0a0eee
|
@ -309,6 +309,7 @@ Release 0.20.0 - Unreleased
|
||||||
HBASE-1725 Old TableMap interface's definitions are not generic enough
|
HBASE-1725 Old TableMap interface's definitions are not generic enough
|
||||||
(Doğacan Güney via Stack)
|
(Doğacan Güney via Stack)
|
||||||
HBASE-1732 Flag to disable regionserver restart
|
HBASE-1732 Flag to disable regionserver restart
|
||||||
|
HBASE-1727 HTD and HCD versions need update
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||||
|
|
|
@ -54,6 +54,7 @@ public class HColumnDescriptor implements ISerializable, WritableComparable<HCol
|
||||||
// Time-to-live feature. Version 4 was when we moved to byte arrays, HBASE-82.
|
// Time-to-live feature. Version 4 was when we moved to byte arrays, HBASE-82.
|
||||||
// Version 5 was when bloom filter descriptors were removed.
|
// Version 5 was when bloom filter descriptors were removed.
|
||||||
// Version 6 adds metadata as a map where keys and values are byte[].
|
// Version 6 adds metadata as a map where keys and values are byte[].
|
||||||
|
// Version 7 -- add new compression and hfile blocksize to HColumnDescriptor (HBASE-1217)
|
||||||
private static final byte COLUMN_DESCRIPTOR_VERSION = (byte)7;
|
private static final byte COLUMN_DESCRIPTOR_VERSION = (byte)7;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -51,8 +51,8 @@ ISerializable {
|
||||||
// Changes prior to version 3 were not recorded here.
|
// Changes prior to version 3 were not recorded here.
|
||||||
// Version 3 adds metadata as a map where keys and values are byte[].
|
// Version 3 adds metadata as a map where keys and values are byte[].
|
||||||
// Version 4 adds indexes
|
// Version 4 adds indexes
|
||||||
// FIXME version 5 should remove indexes
|
// Version 5 removed transactional pollution -- e.g. indexes
|
||||||
public static final byte TABLE_DESCRIPTOR_VERSION = 4;
|
public static final byte TABLE_DESCRIPTOR_VERSION = 5;
|
||||||
|
|
||||||
private byte [] name = HConstants.EMPTY_BYTE_ARRAY;
|
private byte [] name = HConstants.EMPTY_BYTE_ARRAY;
|
||||||
private String nameAsString = "";
|
private String nameAsString = "";
|
||||||
|
|
Loading…
Reference in New Issue