[
https://issues.apache.org/jira/browse/HBASE-11010?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13972856#comment-13972856
]
Hudson commented on HBASE-11010:
--------------------------------
SUCCESS: Integrated in HBase-TRUNK #5092 (See
[https://builds.apache.org/job/HBase-TRUNK/5092/])
HBASE-11010 TestChangingEncoding is unnecessarily slow. (larsh: rev 1588129)
*
/hbase/trunk/hbase-server/src/test/java/org/apache/hadoop/hbase/io/encoding/TestChangingEncoding.java
> TestChangingEncoding is unnecessarily slow
> ------------------------------------------
>
> Key: HBASE-11010
> URL: https://issues.apache.org/jira/browse/HBASE-11010
> Project: HBase
> Issue Type: Bug
> Components: test
> Reporter: Lars Hofhansl
> Assignee: Lars Hofhansl
> Priority: Minor
> Fix For: 0.99.0, 0.94.19, 0.98.2, 0.96.3
>
> Attachments: 11010-0.94.txt, 11010-trunk.txt
>
>
> The test runs for over 10m on the Jenkins boxes.
> Writing the test data is done like this:
> {code}
> for (int i = 0; i < NUM_ROWS_PER_BATCH; ++i) {
> Put put = new Put(getRowKey(batchId, i));
> for (int j = 0; j < NUM_COLS_PER_ROW; ++j) {
> put.add(CF_BYTES, getQualifier(j),
> getValue(batchId, i, j));
> table.put(put);
> }
> }
> {code}
> There are two problems:
> # the same Put is "putted" multiple times (once for each column added)
> # each Put issued this way causes its one RPC
> On my machine changing this bring the runtime from 247s to 169s.
--
This message was sent by Atlassian JIRA
(v6.2#6252)