[
https://issues.apache.org/jira/browse/HBASE-12608?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14259477#comment-14259477
]
Hudson commented on HBASE-12608:
--------------------------------
SUCCESS: Integrated in HBase-TRUNK #5967 (See
[https://builds.apache.org/job/HBase-TRUNK/5967/])
HBASE-12608 region_mover.rb does not log moving region count correctly when
loading regions (cuijianwei) (stack: rev
8aadc5de1ee2292d8361bda9b6d18dc85add33f6)
* bin/region_mover.rb
> region_mover.rb does not log moving region count correctly when loading
> regions
> -------------------------------------------------------------------------------
>
> Key: HBASE-12608
> URL: https://issues.apache.org/jira/browse/HBASE-12608
> Project: HBase
> Issue Type: Improvement
> Components: shell
> Affects Versions: 0.98.8
> Reporter: cuijianwei
> Assignee: cuijianwei
> Priority: Minor
> Fix For: 1.0.0, 2.0.0, 0.98.10, 1.1.0
>
> Attachments: HBASE-12608-trunk.patch
>
>
> region_mover.rb does not seem to log moving region count correctly by the
> following code:
> {code}
> ...
> if currentServer and currentServer == servername
> $LOG.info("Region " + r.getRegionNameAsString() + " (" + count.to_s +
> " of " + regions.length.to_s + ") already on target server=" +
> servername)
> counter = counter + 1
> next
> end
> pool.launch(r,currentServer,count) do |_r,_currentServer,_count|
> $LOG.info("Moving region " + _r.getRegionNameAsString() + " (" +
> (_count + 1).to_s +
> " of " + regions.length.to_s + ") from " + _currentServer.to_s + " to
> server=" +
> servername);
> move(admin, _r, servername, _currentServer)
> end
> counter = counter + 1
> {code}
> It seems we should use 'counter' when logging and remove the duplicated
> variable 'count'.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)