TableInputFormat is ignoring input scan's stop row setting ----------------------------------------------------------
Key: HBASE-2082 URL: https://issues.apache.org/jira/browse/HBASE-2082 Project: Hadoop HBase Issue Type: Bug Components: mapreduce Affects Versions: 0.20.2 Reporter: Scott Wang In the getSplits() function of TableInputFormatBase, there is a line to compare the region's stop key and the given scan's stop key. If the region's stop key is smaller, then use the region's stop key instead of the one given by user. But the last region will not have a stop key, so comparing a null key to the given stop key is always smaller, and the user's stop key is simply ignored. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.