diff --git a/CHANGES.txt b/CHANGES.txt index 16c2c36c0b0..60162dd3138 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -90,13 +90,13 @@ Release 0.19.0 - Unreleased HBASE-1041 Migration throwing NPE HBASE-1042 OOME but we don't abort; two part commit. HBASE-927 We don't recover if HRS hosting -ROOT-/.META. goes down + HBASE-1029 REST wiki documentation incorrect HBASE-1043 Removing @Override attributes where they are no longer needed. (Ryan Smith via Jim Kellerman) HBASE-927 We don't recover if HRS hosting -ROOT-/.META. goes down - (fix bug in createTable which caused tests to fail) HBASE-1039 Compaction fails if bloomfilters are enabled - IMPROVEMENTS HBASE-901 Add a limit to key length, check key and value length on client side HBASE-890 Alter table operation and also related changes in REST interface diff --git a/src/java/org/apache/hadoop/hbase/client/HTable.java b/src/java/org/apache/hadoop/hbase/client/HTable.java index 54300209e4f..15b23531b8e 100644 --- a/src/java/org/apache/hadoop/hbase/client/HTable.java +++ b/src/java/org/apache/hadoop/hbase/client/HTable.java @@ -487,7 +487,7 @@ public class HTable { * at a specified timestamp * * @param row row key - * @param ts timestamp + * @param timestamp timestamp * @param numVersions number of versions to return * @return RowResult is empty if row does not exist. * @throws IOException diff --git a/src/java/org/apache/hadoop/hbase/rest/package.html b/src/java/org/apache/hadoop/hbase/rest/package.html new file mode 100644 index 00000000000..b63a7a467dc --- /dev/null +++ b/src/java/org/apache/hadoop/hbase/rest/package.html @@ -0,0 +1,112 @@ + + + + + +
+Provides an HBase + +REST service. + +This directory contains a REST service implementation for an Hbase RPC +service. + ++By default, an instance of the REST servlet runs in the master UI; just browse +to [WWW] http://MASTER_HOST:MASTER_PORT/api/ (Results are returned as xml by +default so you may have to look at source to see results). + +If you intend to use the hbase REST API heavily, to run an instance of the RES +T server outside of the master, do the following: +
+cd $HBASE_HOME +bin/hbase rest start ++The default port is 60050. + + +
+For examples and more details, please visit +HBaseRest Wiki page. +
+ +