Return-Path: X-Original-To: apmail-incubator-accumulo-user-archive@minotaur.apache.org Delivered-To: apmail-incubator-accumulo-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 313C39633 for ; Thu, 5 Jan 2012 15:28:17 +0000 (UTC) Received: (qmail 70586 invoked by uid 500); 5 Jan 2012 15:28:17 -0000 Delivered-To: apmail-incubator-accumulo-user-archive@incubator.apache.org Received: (qmail 70534 invoked by uid 500); 5 Jan 2012 15:28:16 -0000 Mailing-List: contact accumulo-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: accumulo-user@incubator.apache.org Delivered-To: mailing list accumulo-user@incubator.apache.org Received: (qmail 70526 invoked by uid 99); 5 Jan 2012 15:28:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jan 2012 15:28:16 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [209.85.212.175] (HELO mail-wi0-f175.google.com) (209.85.212.175) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jan 2012 15:28:08 +0000 Received: by wibhq7 with SMTP id hq7so461277wib.6 for ; Thu, 05 Jan 2012 07:27:48 -0800 (PST) MIME-Version: 1.0 Received: by 10.180.83.104 with SMTP id p8mr971495wiy.4.1325777268636; Thu, 05 Jan 2012 07:27:48 -0800 (PST) Received: by 10.216.0.197 with HTTP; Thu, 5 Jan 2012 07:27:48 -0800 (PST) In-Reply-To: References: Date: Thu, 5 Jan 2012 10:27:48 -0500 Message-ID: Subject: Re: Does it make sense to add '-bt true' to createtable command? From: Keith Turner To: accumulo-user@incubator.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Adding an option to the createtable shell command to enable bloom filters seems ok to me. I do not think we should add another createTable method to TableOperations. Just have the shell set the bloom configs by making additional API calls after it creates the table. On Thu, Jan 5, 2012 at 10:14 AM, David Medinets wrote: > While I love the flexibility of setting configurations using the shell > command, it seems like bloom tables are useful enough to warrant > special handling. If this option makes sense, I'll create a JIRA > ticket. > > I also think that the following section of README.bloom should be > expanded with the actual commands, unless you're trying to make the > reader think? It's not obvious that the table names should be, nor > even if three tables are needed instead of one. Another JIRA ticket? > > =A0* Insert 1 million entries using =A0RandomBatchWriter with a seed of 7 > =A0* Flush the table using the shell > =A0* Insert 1 million entries using =A0RandomBatchWriter with a seed of 8 > =A0* Flush the table using the shell > =A0* Insert 1 million entries using =A0RandomBatchWriter with a seed of 9 > =A0* Flush the table using the shell > > Accumulo does have an auto-flush feature? Why flush between each > insert instead of at the end?