[
https://issues.apache.org/jira/browse/HBASE-22861?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16913206#comment-16913206
]
Hudson commented on HBASE-22861:
--------------------------------
Results for branch branch-1.4
[build #971 on
builds.a.o|https://builds.apache.org/job/HBase%20Nightly/job/branch-1.4/971/]:
(x) *{color:red}-1 overall{color}*
----
details (if available):
(x) {color:red}-1 general checks{color}
-- For more information [see general
report|https://builds.apache.org/job/HBase%20Nightly/job/branch-1.4/971//General_Nightly_Build_Report/]
(x) {color:red}-1 jdk7 checks{color}
-- For more information [see jdk7
report|https://builds.apache.org/job/HBase%20Nightly/job/branch-1.4/971//JDK7_Nightly_Build_Report/]
(/) {color:green}+1 jdk8 hadoop2 checks{color}
-- For more information [see jdk8 (hadoop2)
report|https://builds.apache.org/job/HBase%20Nightly/job/branch-1.4/971//JDK8_Nightly_Build_Report_(Hadoop2)/]
(/) {color:green}+1 source release artifact{color}
-- See build output for details.
> [WAL] Merged region should get its WAL according to WALProvider.
> ----------------------------------------------------------------
>
> Key: HBASE-22861
> URL: https://issues.apache.org/jira/browse/HBASE-22861
> Project: HBase
> Issue Type: Bug
> Components: wal
> Affects Versions: 1.4.10, 1.3.5
> Reporter: Reid Chan
> Assignee: Reid Chan
> Priority: Major
> Fix For: 1.5.0, 1.3.6, 1.4.11
>
>
> This one is similar to HBASE-22774.
> Merging regions works fine by default because all regions shared one wal. But
> if multiwal is enabled, merged region should get its wal according to wal
> grouping strategy.
> {code:title=HRegion.java|borderStyle=solid}
> HRegion createMergedRegionFromMerges(final HRegionInfo mergedRegionInfo,
> final HRegion region_b) throws IOException {
> HRegion r = HRegion.newHRegion(this.fs.getTableDir(),
> this.getWAL(), // Here should use rsService.getWAL(mergedRegionInfo),
> then wal provider and strategy if there is will take effect.
> fs.getFileSystem(), this.getBaseConf(), mergedRegionInfo,
> this.getTableDesc(), this.rsServices);
> ...
> return r;
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.3.2#803003)