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 5C38A9C06 for ; Tue, 26 Jun 2012 18:15:01 +0000 (UTC) Received: (qmail 45653 invoked by uid 500); 26 Jun 2012 18:14:58 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 45602 invoked by uid 500); 26 Jun 2012 18:14:58 -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 45594 invoked by uid 99); 26 Jun 2012 18:14:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Jun 2012 18:14:58 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=FSL_RCVD_USER,HTML_MESSAGE,NORMAL_HTTP_TO_IP,RCVD_IN_DNSWL_LOW,SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of fundatureanu.sever@gmail.com designates 209.85.216.179 as permitted sender) Received: from [209.85.216.179] (HELO mail-qc0-f179.google.com) (209.85.216.179) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Jun 2012 18:14:51 +0000 Received: by qcse14 with SMTP id e14so122215qcs.24 for ; Tue, 26 Jun 2012 11:14:30 -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=SofqE13QQFGTziTSn2MtlHVdl7PWogOzUsOYPDMDPeU=; b=teWnEy1DsbN36yJfhi984ubA+s5XpWMLH7BipTeIBqpNC8FALDXLU8WoxfBGMTA+R0 fgeE+Ti4cSp3VH9X03qFbcxifEKJ8B8gR2dDddefv7RoYqr4gEfdxBEdurW7HNnhurqV Fz/qscWVWY/bQzLHFpEDQlu/q6cFFX1hJJ5fDMoJJiV5omcklanKUKzBCJ1SyWJWZLfO prDHQkSo/LNn/n2mcGaaMtGG5ZwJzuMGcZabCmdqYUxvSxLVCkwOadAP25Dj304qQcJp cVC84lBx2w9O7hrP4glCzBsd7gcC3n1LLSEY5xigl6X2SL8No6mBEoi9RjDRAjMm8XQL wF1g== MIME-Version: 1.0 Received: by 10.224.188.140 with SMTP id da12mr26647852qab.42.1340734470198; Tue, 26 Jun 2012 11:14:30 -0700 (PDT) Received: by 10.229.48.137 with HTTP; Tue, 26 Jun 2012 11:14:30 -0700 (PDT) In-Reply-To: References: Date: Tue, 26 Jun 2012 20:14:30 +0200 Message-ID: Subject: Re: HBase bulk load through co-processors From: Sever Fundatureanu To: user@hbase.apache.org Content-Type: multipart/alternative; boundary=20cf303640bbd5963c04c3641165 --20cf303640bbd5963c04c3641165 Content-Type: text/plain; charset=ISO-8859-1 My keys are built of 4 8-byte Ids. I am currently doing the load with MR but I get a timeout when doing the loadIncrementalFiles call: 12/06/24 21:29:01 ERROR mapreduce.LoadIncrementalHFiles: Encountered unrecoverable error from region server org.apache.hadoop.hbase.client.RetriesExhaustedException: Failed after attempts=10, exceptions: Sun Jun 24 21:29:01 CEST 2012, org.apache.hadoop.hbase.mapreduce.LoadIncrementalHFiles$3@4699ecf9, java.net.SocketTimeoutException: Call to das3002.cm.cluster/ 10.141.0.79:60020 failed on socket timeout exception: java.net.SocketTimeoutException: 60000 millis timeout while waiting for channel to be ready for read. ch : java.nio.channels.SocketChannel[co nnected local=/10.141.0.254:43240 remote=das3002.cm.cluster/ 10.141.0.79:60020] at org.apache.hadoop.hbase.client.HConnectionManager$HConnectionImplementation.getRegionServerWithRetries(HConnectionManager.java:1345) at org.apache.hadoop.hbase.mapreduce.LoadIncrementalHFiles.tryAtomicRegionLoad(LoadIncrementalHFiles.java:487) at org.apache.hadoop.hbase.mapreduce.LoadIncrementalHFiles$1.call(LoadIncrementalHFiles.java:275) at org.apache.hadoop.hbase.mapreduce.LoadIncrementalHFiles$1.call(LoadIncrementalHFiles.java:273) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:662) 12/06/24 21:30:52 ERROR mapreduce.LoadIncrementalHFiles: Encountered unrecoverable error from region server Is there a way in which I can increase the timeout period? Thank you, On Tue, Jun 26, 2012 at 7:05 PM, Andrew Purtell wrote: > On Tue, Jun 26, 2012 at 9:56 AM, Sever Fundatureanu > wrote: > > I have to bulkload 6 tables which contain the same information but with a > > different order to cover all possible access patterns. Would it be a good > > idea to do only one load and use co-processors to populate the other > > tables, instead of doing the traditional MR bulkload which would require > 6 > > separate jobs? > > Without knowing more than you've said, it seems better to use MR to > build all input. > > Best regards, > > - Andy > > Problems worthy of attack prove their worth by hitting back. - Piet > Hein (via Tom White) > -- Sever Fundatureanu Vrije Universiteit Amsterdam E-mail: fundatureanu.sever@gmail.com --20cf303640bbd5963c04c3641165--