ulimit on Ubuntu
diff --git a/src/main/java/org/apache/hadoop/hbase/mapreduce/HRegionPartitioner.java b/src/main/java/org/apache/hadoop/hbase/mapreduce/HRegionPartitioner.java
index fe4a73f254d..e42d5000e19 100644
--- a/src/main/java/org/apache/hadoop/hbase/mapreduce/HRegionPartitioner.java
+++ b/src/main/java/org/apache/hadoop/hbase/mapreduce/HRegionPartitioner.java
@@ -36,6 +36,11 @@ import org.apache.hadoop.mapreduce.Partitioner;
* Keys are grouped according to the regions that currently exist
* so that each reducer fills a single region so load is distributed.
*
+ * This class is not suitable as partitioner creating hfiles
+ * for incremental bulk loads as region spread will likely change between time of
+ * hfile creation and load time. See {@link LoadIncrementalHFiles}
+ * and Bulk Load.
+ *
* @param The type of the key.
* @param The type of the value.
*/