Return-Path: Delivered-To: apmail-hadoop-hive-dev-archive@minotaur.apache.org Received: (qmail 13992 invoked from network); 26 May 2009 20:33:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 26 May 2009 20:33:55 -0000 Received: (qmail 23908 invoked by uid 500); 26 May 2009 20:34:08 -0000 Delivered-To: apmail-hadoop-hive-dev-archive@hadoop.apache.org Received: (qmail 23874 invoked by uid 500); 26 May 2009 20:34:08 -0000 Mailing-List: contact hive-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hive-dev@hadoop.apache.org Delivered-To: mailing list hive-dev@hadoop.apache.org Received: (qmail 23864 invoked by uid 99); 26 May 2009 20:34:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 May 2009 20:34:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 May 2009 20:34:05 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id ACDE4234C04B for ; Tue, 26 May 2009 13:33:45 -0700 (PDT) Message-ID: <1062054382.1243370025707.JavaMail.jira@brutus> Date: Tue, 26 May 2009 13:33:45 -0700 (PDT) From: "S. Alex Smith (JIRA)" To: hive-dev@hadoop.apache.org Subject: [jira] Created: (HIVE-517) Silent flag does not work on local jobs. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Silent flag does not work on local jobs. ---------------------------------------- Key: HIVE-517 URL: https://issues.apache.org/jira/browse/HIVE-517 Project: Hadoop Hive Issue Type: Bug Components: Clients Reporter: S. Alex Smith The commands hive2 -S -e "from tmp_foo select count(1)" > my_stdout.txt and hive2 -S -hiveconf mapred.job.tracker=local -hiveconf mapred.local.dir=/tmp/foo -e "from tmp_foo select count(1)" > my_stdout.txt give different results. The former looks like: 56 and the latter looks like: plan = /tmp/plan61908.xml Number of reduce tasks determined at compile time: 1 In order to change the average load for a reducer (in bytes): set hive.exec.reducers.bytes.per.reducer= In order to limit the maximum number of reducers: set hive.exec.reducers.max= In order to set a constant number of reducers: set mapred.reduce.tasks= Job running in-process (local Hadoop) map = 100%, reduce =0% map = 100%, reduce =100% Ended Job = job_local_1 56 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.