Github user dlmarion commented on a diff in the pull request: https://github.com/apache/accumulo/pull/75#discussion_r54320640 --- Diff: core/src/main/java/org/apache/accumulo/core/client/impl/TabletServerBatchWriter.java --- @@ -638,6 +648,21 @@ public MutationWriter(int numSendThreads) { queued = new HashSet<String>(); sendThreadPool = new SimpleThreadPool(numSendThreads, this.getClass().getName()); locators = new HashMap<String,TabletLocator>(); + binTimer.schedule(new TimerTask() { + @Override + public void run() { + MutationSet m = queue.poll(); + while (null != m) { + try { + addMutations(m); + } catch (Exception e) { + updateUnknownErrors("Error processing mutation set", e); + } + m = queue.poll(); + } + } + }, 0, 500); --- End diff -- Yes, wake up every 1/2 second and bin mutations if there are any. No rationale, just thought it made sense. You have a different approach?
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---