Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E09C0C4E1 for ; Mon, 30 Jul 2012 15:44:35 +0000 (UTC) Received: (qmail 41120 invoked by uid 500); 30 Jul 2012 15:44:35 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 41071 invoked by uid 500); 30 Jul 2012 15:44:35 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 41060 invoked by uid 99); 30 Jul 2012 15:44:35 -0000 Received: from issues-vm.apache.org (HELO issues-vm) (140.211.11.160) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jul 2012 15:44:35 +0000 Received: from isssues-vm.apache.org (localhost [127.0.0.1]) by issues-vm (Postfix) with ESMTP id 986C2142851 for ; Mon, 30 Jul 2012 15:44:35 +0000 (UTC) Date: Mon, 30 Jul 2012 15:44:35 +0000 (UTC) From: "Jonathan Hsieh (JIRA)" To: issues@hbase.apache.org Message-ID: <2046022272.116357.1343663075627.JavaMail.jiratomcat@issues-vm> In-Reply-To: <62587389.35700.1342017755126.JavaMail.jiratomcat@issues-vm> Subject: [jira] [Commented] (HBASE-6372) Add scanner batching to Export job 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/HBASE-6372?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13424925#comment-13424925 ] Jonathan Hsieh commented on HBASE-6372: --------------------------------------- nit: can we also make this {code} + int batching = Integer.parseInt(conf.get(EXPORT_BATCHING,"-1")); {code} the more canonical: {code} + int batching = conf.getInt(EXPORT_BATCHING,-1)); {code} before we commit? > Add scanner batching to Export job > ---------------------------------- > > Key: HBASE-6372 > URL: https://issues.apache.org/jira/browse/HBASE-6372 > Project: HBase > Issue Type: Improvement > Components: mapreduce > Affects Versions: 0.96.0, 0.94.2 > Reporter: Lars George > Assignee: Shengsheng Huang > Priority: Minor > Labels: newbie > Attachments: HBASE-6372.patch > > > When a single row is too large for the RS heap then an OOME can take out the entire RS. Setting scanner batching in custom scans helps avoiding this scenario, but for the supplied Export job this is not set. > Similar to HBASE-3421 we can set the batching to a low number - or if needed make it a command line option. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira