Return-Path: X-Original-To: apmail-drill-issues-archive@minotaur.apache.org Delivered-To: apmail-drill-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D496F17786 for ; Mon, 20 Oct 2014 22:18:00 +0000 (UTC) Received: (qmail 5999 invoked by uid 500); 20 Oct 2014 22:18:00 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 5969 invoked by uid 500); 20 Oct 2014 22:18:00 -0000 Mailing-List: contact issues-help@drill.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.incubator.apache.org Delivered-To: mailing list issues@drill.incubator.apache.org Received: (qmail 5960 invoked by uid 99); 20 Oct 2014 22:18:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Oct 2014 22:18:00 +0000 X-ASF-Spam-Status: No, hits=-2001.4 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 20 Oct 2014 22:17:35 +0000 Received: (qmail 4088 invoked by uid 99); 20 Oct 2014 22:17:34 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Oct 2014 22:17:34 +0000 Date: Mon, 20 Oct 2014 22:17:34 +0000 (UTC) From: "Abhishek Girish (JIRA)" To: issues@drill.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (DRILL-1556) Hitting intermittent "Failure while trying to get next result batch." error on Parquet data converted from JSON 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 Abhishek Girish created DRILL-1556: -------------------------------------- Summary: Hitting intermittent "Failure while trying to get next result batch." error on Parquet data converted from JSON Key: DRILL-1556 URL: https://issues.apache.org/jira/browse/DRILL-1556 Project: Apache Drill Issue Type: Bug Components: Storage - Parquet Reporter: Abhishek Girish Assignee: Jason Altekruse Querying JSON data works at higher values for limit: > select * from `yelp_academic_dataset_review.json` limit 1125458; Querying Parquet data (converted from JSON) fails at higher values for limit: > create table yelp_academic_dataset_review as select * from `yelp_academic_dataset_review.json`; [success] >select * from yelp_academic_dataset_review limit 40000; [data] java.lang.RuntimeException: java.sql.SQLException: Failure while trying to get next result batch. at sqlline.SqlLine$IncrementalRows.hasNext(SqlLine.java:2514) at sqlline.SqlLine$TableOutputFormat.print(SqlLine.java:2148) at sqlline.SqlLine.print(SqlLine.java:1809) at sqlline.SqlLine$Commands.execute(SqlLine.java:3766) at sqlline.SqlLine$Commands.sql(SqlLine.java:3663) at sqlline.SqlLine.dispatch(SqlLine.java:889) at sqlline.SqlLine.begin(SqlLine.java:763) at sqlline.SqlLine.start(SqlLine.java:498) at sqlline.SqlLine.main(SqlLine.java:460) This is at times thrown consistently and some other times thrown intermittently for varied values for the limit clause. -- This message was sent by Atlassian JIRA (v6.3.4#6332)