From commits-return-23085-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Tue Jun 25 20:34:52 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id ACF3C18062F for ; Tue, 25 Jun 2019 22:34:51 +0200 (CEST) Received: (qmail 47340 invoked by uid 500); 25 Jun 2019 20:34:51 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 47331 invoked by uid 99); 25 Jun 2019 20:34:51 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Jun 2019 20:34:51 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id EDDD387AD7; Tue, 25 Jun 2019 20:34:50 +0000 (UTC) Date: Tue, 25 Jun 2019 20:34:50 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo-testing] branch master updated: Fix split point code for bulk ingest MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156149489091.20660.10268838165250455150@gitbox.apache.org> From: ctubbsii@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo-testing X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 0dd88ca38e1b058b613f70e0426a82df0861d02e X-Git-Newrev: 4336dfb8e9a617d16322e5c6e57de901ddde6e10 X-Git-Rev: 4336dfb8e9a617d16322e5c6e57de901ddde6e10 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git The following commit(s) were added to refs/heads/master by this push: new 4336dfb Fix split point code for bulk ingest 4336dfb is described below commit 4336dfb8e9a617d16322e5c6e57de901ddde6e10 Author: Christopher Tubbs AuthorDate: Tue Jun 25 16:32:05 2019 -0400 Fix split point code for bulk ingest --- src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java b/src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java index bb3b3af..120daa2 100644 --- a/src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java +++ b/src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java @@ -97,7 +97,7 @@ public class BulkIngest extends Configured implements Tool { } job.setPartitionerClass(KeyRangePartitioner.class); - KeyRangePartitioner.setSplitFile(job, splitsFile); + KeyRangePartitioner.setSplitFile(job, fs.getUri() + splitsFile); job.waitForCompletion(true); boolean success = job.isSuccessful();