Author: apurtell
Date: Tue Nov 10 04:56:17 2009
New Revision: 834341
URL: http://svn.apache.org/viewvc?rev=834341&view=rev
Log:
HBASE-1968 Give clients access to the write buffer
Modified:
hadoop/hbase/branches/0.20/CHANGES.txt
hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/client/HTable.java
Modified: hadoop/hbase/branches/0.20/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/hbase/branches/0.20/CHANGES.txt?rev=834341&r1=834340&r2=834341&view=diff
==============================================================================
--- hadoop/hbase/branches/0.20/CHANGES.txt (original)
+++ hadoop/hbase/branches/0.20/CHANGES.txt Tue Nov 10 04:56:17 2009
@@ -41,19 +41,22 @@
not usable) if the designated regionServer dies before the
assignment is complete (Yannis Pavlidis via Stack)
HBASE-1962 Bulk loading script makes regions incorrectly (loadtable.rb)
- HBASE-1966 Apply the fix from site/ to remove the forrest dependency on
java5
- HBASE-1967 [Transactional] client.TestTransactions.testPutPutScan fails
sometimes
- Temporary fix
+ HBASE-1966 Apply the fix from site/ to remove the forrest dependency on
+ java5
+ HBASE-1967 [Transactional] client.TestTransactions.testPutPutScan fails
+ sometimes - Temporary fix
IMPROVEMENTS
HBASE-1899 Use scanner caching in shell count
HBASE-1903 Enable DEBUG by default
HBASE-1918 Don't do DNS resolving in .META. scanner for each row
- HBASE-1921 When the Master's session times out and there's only one,
cluster is wedged
+ HBASE-1921 When the Master's session times out and there's only one,
+ cluster is wedged
HBASE-1947 If HBase starts/stops often in less than 24 hours,
you end up with lots of store files
HBASE-1867 Tool to regenerate an hbase table from the data files
HBASE-1829 Make use of start/stop row in TableInputFormat
+ HBASE-1968 Give clients access to the write buffer
Release 0.20.1 - Released October 12th, 2009
INCOMPATIBLE CHANGES
Modified:
hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/client/HTable.java
URL:
http://svn.apache.org/viewvc/hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/client/HTable.java?rev=834341&r1=834340&r2=834341&view=diff
==============================================================================
---
hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/client/HTable.java
(original)
+++
hadoop/hbase/branches/0.20/src/java/org/apache/hadoop/hbase/client/HTable.java
Tue Nov 10 04:56:17 2009
@@ -709,6 +709,14 @@
}
}
+ /**
+ * Get the write buffer
+ * @return the current write buffer
+ */
+ public ArrayList<Put> getWriteBuffer() {
+ return writeBuffer;
+ }
+
// Old API. Pre-hbase-880, hbase-1304.
/**