diff --git a/CHANGES.txt b/CHANGES.txt index dd50bc60062..e48398f7a98 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -124,6 +124,8 @@ Release 0.21.0 - Unreleased HBASE-2022 NPE in housekeeping kills RS HBASE-2033 Shell scan 'limit' is off by one HBASE-2040 Fixes to group commit + HBASE-2047 Example command in the "Getting Started" + documentation doesn't work (Benoit Sigoure via JD) IMPROVEMENTS HBASE-1760 Cleanup TODOs in HTable @@ -227,6 +229,7 @@ Release 0.21.0 - Unreleased via J-D) HBASE-2031 When starting HQuorumPeer, try to match on more than 1 address HBASE-2043 Shell's scan broken + HBASE-2044 HBASE-1822 removed not-deprecated APIs NEW FEATURES HBASE-1901 "General" partitioner for "hbase-48" bulk (behind the api, write diff --git a/src/java/overview.html b/src/java/overview.html index 9c5ac4c2201..1a762886cca 100644 --- a/src/java/overview.html +++ b/src/java/overview.html @@ -293,7 +293,8 @@ doesn't take ZooKeeper with it.
For more information about setting up a ZooKeeper cluster on your own, see the ZooKeeper Getting Started Guide. -HBase currently uses ZooKeeper version 3.2.0, so any cluster setup with a 3.x.x version of ZooKeeper should work.
+HBase currently uses ZooKeeper version 3.2.0, so any cluster setup with a +3.x.x version of ZooKeeper should work.Of note, if you have made HDFS client configuration on your Hadoop cluster, HBase will not see this configuration unless you do one of the following:
@@ -338,10 +339,10 @@ hbase> # To create a table named "mylittletable" with a column family of "myl hbase> create "mylittletable", "mylittlecolumnfamily" hbase> # To see the schema for you just created "mylittletable" table and its single "mylittlecolumnfamily", type hbase> describe "mylittletable" -hbase> # To add a row whose id is "x", to the column "mylittlecolumnfamily:x" with a value of 'x', do -hbase> put "mylittletable", "x" +hbase> # To add a row whose id is "myrow", to the column "mylittlecolumnfamily:x" with a value of 'v', do +hbase> put "mylittletable", "myrow", "mylittlecolumnfamily:x", "v" hbase> # To get the cell just added, do -hbase> get "mylittletable", "x" +hbase> get "mylittletable", "myrow" hbase> # To scan you new table, do hbase> scan "mylittletable"