Github user joshelser commented on a diff in the pull request:

    https://github.com/apache/accumulo/pull/87#discussion_r58412584
  
    --- Diff: 
core/src/main/java/org/apache/accumulo/core/client/impl/TabletServerBatchWriter.java
 ---
    @@ -831,11 +814,16 @@ public void send(TabletServerMutations<Mutation> tsm) 
throws AccumuloServerExcep
             try {
     
               long count = 0;
    -          for (List<Mutation> list : mutationBatch.values()) {
    -            count += list.size();
    +
    +          Set<Text> tableIds = new TreeSet<Text>();
    +          for (Map.Entry<KeyExtent,List<Mutation>> entry : 
mutationBatch.entrySet()) {
    +            count += entry.getValue().size();
    +            tableIds.add(entry.getKey().getTableId());
               }
    -          String msg = "sending " + String.format("%,d", count) + " 
mutations to " + String.format("%,d", mutationBatch.size()) + " tablets at " + 
location;
    -          Thread.currentThread().setName(msg);
    +          StringBuilder msg = new StringBuilder();
    --- End diff --
    
    I'm not aware of any positive effects of using a StringBuilder here. Like 
you said, Java is going to do that under the hood anyways.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to