Return-Path: X-Original-To: apmail-hbase-user-archive@www.apache.org Delivered-To: apmail-hbase-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D5D94DA12 for ; Tue, 31 Jul 2012 19:27:34 +0000 (UTC) Received: (qmail 70580 invoked by uid 500); 31 Jul 2012 19:27:32 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 70524 invoked by uid 500); 31 Jul 2012 19:27:32 -0000 Mailing-List: contact user-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hbase.apache.org Delivered-To: mailing list user@hbase.apache.org Received: (qmail 70515 invoked by uid 99); 31 Jul 2012 19:27:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 Jul 2012 19:27:32 +0000 X-ASF-Spam-Status: No, hits=-0.5 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT,FSL_RCVD_USER,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of tombrown52@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; Tue, 31 Jul 2012 19:27:26 +0000 Received: by vbkv13 with SMTP id v13so7439783vbk.14 for ; Tue, 31 Jul 2012 12:27:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=rARi5Rnd4upxB4p5txE0Z0QClWacM5A+o8rkFIjgLK4=; b=fLZAX1EUdZmtzMfJeKbFbxm1u93XI0gQU0kZuRocWUjrFwMW+c6pg8J/AD5IAo3D5x j8coU5FvZSGgXnFlpceuG1a1YNscxvIuWNxm7hWsAaAkMnhp46YXEy9vNJyO9lnZ5uSW xBQY3Ox0CO2O/ECI1yr+xdZZ8U3oTTGPWa8pSJkdRUv09bJgfDL9ry+TFq1Abu9LqIoY DPSMvrV18l0lKIF2RvomdIpkB1n5UHrlcsB8rDyxnLAuo8OTfcwS9jlzP3vOMBl2GTsT 4bSPcjH1USWcR4xp5AxI0XkQdUXNHON8ISuA/XjNyvxRnNTTinnRTCifyMa5WCoL3UUu H2aw== MIME-Version: 1.0 Received: by 10.52.26.242 with SMTP id o18mr13293575vdg.38.1343762825741; Tue, 31 Jul 2012 12:27:05 -0700 (PDT) Received: by 10.52.174.205 with HTTP; Tue, 31 Jul 2012 12:27:05 -0700 (PDT) In-Reply-To: References: Date: Tue, 31 Jul 2012 13:27:05 -0600 Message-ID: Subject: Re: Parallel scans From: Tom Brown To: user@hbase.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org I think you could do it manually by looking up all the different regions and starting a separate scan for each region. Not quite as handy as the built-in multi get, but essentially the same. Of course, that leaves the question of processing-- If you're processing it in a single-threaded environment, HBase is unlikely to be the bottleneck. If your sending each scan to multiple processors, this could be a significant speedup. --Tom On Mon, Jul 30, 2012 at 11:34 PM, Bertrand Dechoux wrote: > Hi, > > Are you talking about as coprocessor or MapReduce input? If it is the first > then it is up to you (the client). If it is the latter I am not sure that > -if scans were changed to be parallel (assuming they are sequential now)- > the whole job would be noticeably faster. But I am interested in an answer > too. > > Regards > > Bertrand > > On Tue, Jul 31, 2012 at 2:56 AM, Mohit Anchlia wrote: > >> Is there a way to execute multiple scans in parallel like get? >> > > > > -- > Bertrand Dechoux