[ https://issues.apache.org/jira/browse/HBASE-1962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12778180#action_12778180 ]
Jonathan Gray commented on HBASE-1962: -------------------------------------- Was this actually committed? Looking at the loadtable script, it has at least one bug but does seem to work otherwise once that is fixed. Right now, in 0.20 branch, the loop over the TreeMap uses: {noformat} for i in map.descendingIterator() {noformat} Unfortunately, TreeMap.descendingIterator() does not exist. This needs to be TreeMap.descendingKeySet().iterator() or the like. @Stack, in the patch in this issue it looks right, but not up in SVN. Also, I don't see SVN commits linked in to the jira. > Bulk loading script makes regions incorrectly (loadtable.rb) > ------------------------------------------------------------ > > Key: HBASE-1962 > URL: https://issues.apache.org/jira/browse/HBASE-1962 > Project: Hadoop HBase > Issue Type: Bug > Reporter: stack > Fix For: 0.20.2, 0.21.0 > > Attachments: 1962.patch, 1962.patch_1, delete_table.rb > > > From mailing list, Murali Krishna found that loadtable.rb is not making > regions correctly from the passed hfiles. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.