Return-Path: X-Original-To: apmail-accumulo-dev-archive@www.apache.org Delivered-To: apmail-accumulo-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 68074E16C for ; Fri, 25 Jan 2013 14:43:15 +0000 (UTC) Received: (qmail 60816 invoked by uid 500); 25 Jan 2013 14:43:15 -0000 Delivered-To: apmail-accumulo-dev-archive@accumulo.apache.org Received: (qmail 59347 invoked by uid 500); 25 Jan 2013 14:43:11 -0000 Mailing-List: contact dev-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 dev@accumulo.apache.org Received: (qmail 59320 invoked by uid 99); 25 Jan 2013 14:43:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Jan 2013 14:43:10 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of david.medinets@gmail.com designates 209.85.212.41 as permitted sender) Received: from [209.85.212.41] (HELO mail-vb0-f41.google.com) (209.85.212.41) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Jan 2013 14:43:02 +0000 Received: by mail-vb0-f41.google.com with SMTP id l22so306891vbn.14 for ; Fri, 25 Jan 2013 06:42:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=foTal5FrRdoPsK2xiph6fN7owreMm/vtifmXzzKg1bE=; b=g1Wc078NRwFyMe6c0Jc7KagLc4KPDorGnqXbqyVblUZHUbESovUPVibXNVL4GsQJBF ZckbmXnqVArAMFQwp6p2jyQvQjLfNt6u6FGP7KPi3XFGHml77Pq2nSpRG5SpzaFq7JqF ZUj0Q4WXoFE27IyVgZx1R8GKTsENbIa8Acxu91GSrL4k8NEDC77lZJUg2978VlWrp9dK sE3xlO6TlXOxmRn1OuCLF9JHsliLg1S7U/ua1iTSpbrN3mq0VweTle8PNKGrksXU0C1V aK+rg8n5ZlUWdLMebJ4ODUhpmLWac3CQf5GNTdo9JPh1EeYDSwHht+L+7u+eEzgFZtyk rS2A== MIME-Version: 1.0 X-Received: by 10.52.91.212 with SMTP id cg20mr2231335vdb.63.1359124961870; Fri, 25 Jan 2013 06:42:41 -0800 (PST) Received: by 10.52.27.175 with HTTP; Fri, 25 Jan 2013 06:42:41 -0800 (PST) Date: Fri, 25 Jan 2013 09:42:41 -0500 Message-ID: Subject: Given a tablet id, is there a function to split? From: David Medinets To: accumulo-dev Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org I am seeing some tablets with say 2 million records and some tablets with 10 million records. I'd like to split the larger tablets so my mappers all take approximately the same time to run. I'm Ok with simply cutting the tablet in half. At least for now. I know how to identify the tablets that I want to split. Is there an existing method that I can call. I am leery of simply grabbing some code from the middle of Accumulo and experimenting because I'll probably miss some nuance causing the system to crash unexpectedly at some future time.