Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 707AB200B95 for ; Tue, 27 Sep 2016 22:38:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 6F17C160AE6; Tue, 27 Sep 2016 20:38:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id BF948160AB9 for ; Tue, 27 Sep 2016 22:38:21 +0200 (CEST) Received: (qmail 38421 invoked by uid 500); 27 Sep 2016 20:38:21 -0000 Mailing-List: contact issues-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list issues@drill.apache.org Received: (qmail 38404 invoked by uid 99); 27 Sep 2016 20:38:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Sep 2016 20:38:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id D4CEB2C0032 for ; Tue, 27 Sep 2016 20:38:20 +0000 (UTC) Date: Tue, 27 Sep 2016 20:38:20 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (DRILL-4905) Push down the LIMIT to the parquet reader scan to limit the numbers of records read MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 27 Sep 2016 20:38:22 -0000 [ https://issues.apache.org/jira/browse/DRILL-4905?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15527346#comment-15527346 ] ASF GitHub Bot commented on DRILL-4905: --------------------------------------- Github user ppadma commented on a diff in the pull request: https://github.com/apache/drill/pull/597#discussion_r80788614 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/ParquetGroupScan.java --- @@ -899,6 +907,16 @@ public FileGroupScan clone(FileSelection selection) throws IOException { return newScan; } + // clone to create new groupscan with new file selection and batchSize. + public ParquetGroupScan clone(FileSelection selection, int batchSize) throws IOException { + ParquetGroupScan newScan = new ParquetGroupScan(this); + newScan.modifyFileSelection(selection); + newScan.cacheFileRoot = selection.cacheFileRoot; --- End diff -- done > Push down the LIMIT to the parquet reader scan to limit the numbers of records read > ----------------------------------------------------------------------------------- > > Key: DRILL-4905 > URL: https://issues.apache.org/jira/browse/DRILL-4905 > Project: Apache Drill > Issue Type: Bug > Components: Storage - Parquet > Affects Versions: 1.8.0 > Reporter: Padma Penumarthy > Assignee: Padma Penumarthy > Fix For: 1.9.0 > > > Limit the number of records read from disk by pushing down the limit to parquet reader. > For queries like > select * from limit N; > where N < size of Parquet row group, we are reading 32K/64k rows or entire row group. This needs to be optimized to read only N rows. > -- This message was sent by Atlassian JIRA (v6.3.4#6332)