You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by jd...@apache.org on 2009/12/15 02:31:10 UTC

svn commit: r890599 - in /hadoop/hbase/trunk: CHANGES.txt src/java/overview.html

Author: jdcryans
Date: Tue Dec 15 01:31:09 2009
New Revision: 890599

URL: http://svn.apache.org/viewvc?rev=890599&view=rev
Log:
HBASE-2047  Example command in the "Getting Started" 
            documentation doesn't work (Benoit Sigoure via JD)

Modified:
    hadoop/hbase/trunk/CHANGES.txt
    hadoop/hbase/trunk/src/java/overview.html

Modified: hadoop/hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/CHANGES.txt?rev=890599&r1=890598&r2=890599&view=diff
==============================================================================
--- hadoop/hbase/trunk/CHANGES.txt (original)
+++ hadoop/hbase/trunk/CHANGES.txt Tue Dec 15 01:31:09 2009
@@ -124,6 +124,8 @@
    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 @@
                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

Modified: hadoop/hbase/trunk/src/java/overview.html
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/src/java/overview.html?rev=890599&r1=890598&r2=890599&view=diff
==============================================================================
--- hadoop/hbase/trunk/src/java/overview.html (original)
+++ hadoop/hbase/trunk/src/java/overview.html Tue Dec 15 01:31:09 2009
@@ -293,7 +293,8 @@
 
 <p>For more information about setting up a ZooKeeper cluster on your own, see
 the ZooKeeper <a href="http://hadoop.apache.org/zookeeper/docs/current/zookeeperStarted.html">Getting Started Guide</a>.
-HBase currently uses ZooKeeper version 3.2.0, so any cluster setup with a 3.x.x version of ZooKeeper should work.</p>
+HBase currently uses ZooKeeper version 3.2.0, so any cluster setup with a
+3.x.x version of ZooKeeper should work.</p>
 
 <p>Of note, if you have made <em>HDFS client configuration</em> on your Hadoop cluster, HBase will not
 see this configuration unless you do one of the following:</p>
@@ -338,10 +339,10 @@
 hbase&gt; create "mylittletable", "mylittlecolumnfamily"
 hbase&gt; # To see the schema for you just created "mylittletable" table and its single "mylittlecolumnfamily", type
 hbase&gt; describe "mylittletable"
-hbase&gt; # To add a row whose id is "x", to the column "mylittlecolumnfamily:x" with a value of 'x', do
-hbase&gt; put "mylittletable", "x"
+hbase&gt; # To add a row whose id is "myrow", to the column "mylittlecolumnfamily:x" with a value of 'v', do
+hbase&gt; put "mylittletable", "myrow", "mylittlecolumnfamily:x", "v"
 hbase&gt; # To get the cell just added, do
-hbase&gt; get "mylittletable", "x"
+hbase&gt; get "mylittletable", "myrow"
 hbase&gt; # To scan you new table, do
 hbase&gt; scan "mylittletable"
 </pre>