Return-Path: X-Original-To: apmail-hive-dev-archive@www.apache.org Delivered-To: apmail-hive-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 76E3917489 for ; Tue, 3 Mar 2015 22:56:05 +0000 (UTC) Received: (qmail 55422 invoked by uid 500); 3 Mar 2015 22:56:04 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 55346 invoked by uid 500); 3 Mar 2015 22:56:04 -0000 Mailing-List: contact dev-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list dev@hive.apache.org Received: (qmail 55334 invoked by uid 99); 3 Mar 2015 22:56:04 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Mar 2015 22:56:04 +0000 Date: Tue, 3 Mar 2015 22:56:04 +0000 (UTC) From: "Rohini Palaniswamy (JIRA)" To: dev@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HIVE-9845) HCatSplit repeats information making input split data size huge MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Rohini Palaniswamy created HIVE-9845: ---------------------------------------- Summary: HCatSplit repeats information making input split data size huge Key: HIVE-9845 URL: https://issues.apache.org/jira/browse/HIVE-9845 Project: Hive Issue Type: Bug Components: HCatalog Reporter: Rohini Palaniswamy Pig on Tez jobs with larger tables hit PIG-4443. Running on HDFS data which has even triple the number of splits(100K+ splits and tasks) does not hit that issue. {code} HCatBaseInputFormat.java: //Call getSplit on the InputFormat, create an //HCatSplit for each underlying split //NumSplits is 0 for our purposes org.apache.hadoop.mapred.InputSplit[] baseSplits = inputFormat.getSplits(jobConf, 0); for(org.apache.hadoop.mapred.InputSplit split : baseSplits) { splits.add(new HCatSplit( partitionInfo, split,allCols)); } {code} Each hcatSplit duplicates partition schema and table schema. -- This message was sent by Atlassian JIRA (v6.3.4#6332)