[ 
https://issues.apache.org/jira/browse/HBASE-11010?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13972991#comment-13972991
 ] 

Hudson commented on HBASE-11010:
--------------------------------

ABORTED: Integrated in hbase-0.96 #388 (See 
[https://builds.apache.org/job/hbase-0.96/388/])
HBASE-11010 TestChangingEncoding is unnecessarily slow. (larsh: rev 1588130)
* 
/hbase/branches/0.96/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)

Reply via email to