[
https://issues.apache.org/jira/browse/HBASE-16224?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15447780#comment-15447780
]
Hudson commented on HBASE-16224:
--------------------------------
FAILURE: Integrated in Jenkins build HBase-Trunk_matrix #1506 (See
[https://builds.apache.org/job/HBase-Trunk_matrix/1506/])
HBASE-16224 Reduce the number of RPCs for the large PUTs (ChiaPing Tsai)
(chenheng: rev c000f29e47b9a6a7ffa71848f0df3d5c1a72312e)
* (edit)
hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MultiRowMutationEndpoint.java
* (edit)
hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
* (add) hbase-client/src/main/java/org/apache/hadoop/hbase/client/RowAccess.java
* (edit)
hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestAsyncProcess.java
* (edit)
hbase-client/src/main/java/org/apache/hadoop/hbase/client/BufferedMutatorImpl.java
> Reduce the number of RPCs for the large PUTs
> --------------------------------------------
>
> Key: HBASE-16224
> URL: https://issues.apache.org/jira/browse/HBASE-16224
> Project: HBase
> Issue Type: Improvement
> Components: Client
> Affects Versions: 2.0.0
> Reporter: ChiaPing Tsai
> Assignee: ChiaPing Tsai
> Priority: Minor
> Fix For: 2.0.0
>
> Attachments: HBASE-16224-v1.patch, HBASE-16224-v2.patch,
> HBASE-16224-v3.patch, HBASE-16224-v4.patch, HBASE-16224-v5.patch,
> HBASE-16224-v6.patch, HBASE-16224-v7.patch, HBASE-16224-v8.patch,
> HBASE-16224-v9.patch, HBASE-16224.branch-1.v9.patch, HBASE-16224.v10.patch,
> IntegrationTestBigLinkedList with chaos monkey (serverKilling) (with backup
> master).txt, IntegrationTestBigLinkedList with chaos monkey
> (serverKilling).txt, IntegrationTestBigLinkedList with chaos monkey
> (slowDeterministic).txt, IntegrationTestBigLinkedList with chaos monkey
> (unbalance).txt, experiment-v9.patch.xlsx, experiment.xlsx
>
>
> This patch is proposed to reduce the number of RPC for the large PUTs
> The number and data size of write thread(SingleServerRequestRunnable) is a
> result of three main factors:
> 1) The flush size taken by BufferedMutatorImpl#backgroundFlushCommits
> 2) The limit of task number
> 3) ClientBackoffPolicy
> A lot of requests created with less MUTATIONs is a result of two reason:
> 1) many regions of target table are in different server.
> 2) flush size in step one is summed by “all” server rather than “individual”
> server
> This patch removes the limit of flush size in step one and add maximum size
> to submit for each server in the AsyncProcess
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)