Return-Path: X-Original-To: apmail-accumulo-notifications-archive@minotaur.apache.org Delivered-To: apmail-accumulo-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3707D1810A for ; Wed, 24 Jun 2015 01:42:43 +0000 (UTC) Received: (qmail 32784 invoked by uid 500); 24 Jun 2015 01:42:43 -0000 Delivered-To: apmail-accumulo-notifications-archive@accumulo.apache.org Received: (qmail 32744 invoked by uid 500); 24 Jun 2015 01:42:43 -0000 Mailing-List: contact notifications-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jira@apache.org Delivered-To: mailing list notifications@accumulo.apache.org Received: (qmail 32729 invoked by uid 99); 24 Jun 2015 01:42:43 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Jun 2015 01:42:43 +0000 Date: Wed, 24 Jun 2015 01:42:42 +0000 (UTC) From: "Josh Elser (JIRA)" To: notifications@accumulo.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (ACCUMULO-3915) BulkIT doesn't actually bulk import the file with one entry MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/ACCUMULO-3915?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Josh Elser resolved ACCUMULO-3915. ---------------------------------- Resolution: Fixed > BulkIT doesn't actually bulk import the file with one entry > ----------------------------------------------------------- > > Key: ACCUMULO-3915 > URL: https://issues.apache.org/jira/browse/ACCUMULO-3915 > Project: Accumulo > Issue Type: Bug > Components: test > Reporter: Josh Elser > Assignee: Josh Elser > Fix For: 1.7.1, 1.8.0 > > Time Spent: 20m > Remaining Estimate: 0h > > Noticed a failure rerunning some ITs against a real cluster complaining that a file already existed. This shouldn't have happened because we delete the directory before we remake the files. > {code} > for (int i = 0; i < COUNT; i++) { > opts.outputFile = new Path(files, String.format(fileFormat, i)).toString(); > opts.startRow = N * i; > TestIngest.ingest(c, fs, opts, BWOPTS); > } > opts.outputFile = base + String.format(fileFormat, N); > opts.startRow = N; > opts.rows = 1; > // create an rfile with one entry, there was a bug with this: > TestIngest.ingest(c, fs, opts, BWOPTS); > {code} > Turns out that special file with one entry (which we had a bug with) isn't put into the directory or files we import. Oops. -- This message was sent by Atlassian JIRA (v6.3.4#6332)