Author: apurtell
Date: Tue Jul 21 00:24:34 2009
New Revision: 796086
URL: http://svn.apache.org/viewvc?rev=796086&view=rev
Log:
HBASE-1359
Added:
hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/org/apache/hadoop/hbase/migration/package-info.java
Removed:
hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/org/apache/hadoop/hbase/migration/nineteen/package-info.java
Modified:
hadoop/hbase/trunk_on_hadoop-0.18.3/CHANGES.txt
hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/overview.html
Modified: hadoop/hbase/trunk_on_hadoop-0.18.3/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/hbase/trunk_on_hadoop-0.18.3/CHANGES.txt?rev=796086&r1=796085&r2=796086&view=diff
==============================================================================
--- hadoop/hbase/trunk_on_hadoop-0.18.3/CHANGES.txt (original)
+++ hadoop/hbase/trunk_on_hadoop-0.18.3/CHANGES.txt Tue Jul 21 00:24:34 2009
@@ -276,6 +276,7 @@
HBASE-1668 hbase-1609 broke TestHRegion.testScanSplitOnRegion unit test
HBASE-1669 need dynamic extensibility of HBaseRPC code maps and interface
lists (Clint Morgan via Stack)
+ HBASE-1359 After a large truncating table HBase becomes unresponsive
IMPROVEMENTS
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
Added:
hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/org/apache/hadoop/hbase/migration/package-info.java
URL:
http://svn.apache.org/viewvc/hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/org/apache/hadoop/hbase/migration/package-info.java?rev=796086&view=auto
==============================================================================
---
hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/org/apache/hadoop/hbase/migration/package-info.java
(added)
+++
hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/org/apache/hadoop/hbase/migration/package-info.java
Tue Jul 21 00:24:34 2009
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2009The Apache Software Foundation
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+/**
+Provides classes from old hbase versions used migrating data.
+Nineteen package has classes from hbase 0.19.
+*/
+package org.apache.hadoop.hbase.migration.nineteen;
Modified: hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/overview.html
URL:
http://svn.apache.org/viewvc/hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/overview.html?rev=796086&r1=796085&r2=796086&view=diff
==============================================================================
--- hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/overview.html (original)
+++ hadoop/hbase/trunk_on_hadoop-0.18.3/src/java/overview.html Tue Jul 21
00:24:34 2009
@@ -50,11 +50,13 @@
<a href="http://wiki.apache.org/hadoop/Hbase/FAQ#6">FAQ: Why do I see
"java.io.IOException...(Too many open files)" in my logs?</a>
for how to up the limit. Also, as of 0.18.x hadoop, datanodes have an
upper-bound
on the number of threads they will support
(<code>dfs.datanode.max.xcievers</code>).
- Default is 256. If loading lots of data into hbase, up this limit on
your
- hadoop cluster.
+ Default is 256. Up this limit on your hadoop cluster.
<li>The clocks on cluster members should be in basic alignments. Some
skew is tolerable but
wild skew can generate odd behaviors. Run <a
href="http://en.wikipedia.org/wiki/Network_Time_Protocol">NTP</a>
on your cluster, or an equivalent.</li>
+ <li>HBase servers put up 10 listeners for incoming connections by
default. Up this
+ number if you have a dataset of any substance by setting
hbase.regionserver.handler.count
+ in your hbase-site.xml.</li>
<li>This is a list of patches we recommend you apply to your running
Hadoop cluster:
<ul>
<li><a
hef="https://issues.apache.org/jira/browse/HADOOP-4681">HADOOP-4681
<i>"DFSClient block read failures cause open DFSInputStream to become
unusable"</i></a>. This patch will help with the ever-popular, "No live nodes
contain current block".