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 1DEF6200B9B for ; Tue, 27 Sep 2016 20:04:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 1947F160AD2; Tue, 27 Sep 2016 18:04: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 67149160AB9 for ; Tue, 27 Sep 2016 20:04:21 +0200 (CEST) Received: (qmail 91918 invoked by uid 500); 27 Sep 2016 18:04:20 -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 91893 invoked by uid 99); 27 Sep 2016 18:04: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 18:04:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 783642C002D for ; Tue, 27 Sep 2016 18:04:20 +0000 (UTC) Date: Tue, 27 Sep 2016 18:04: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 18:04:22 -0000 [ https://issues.apache.org/jira/browse/DRILL-4905?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15526958#comment-15526958 ] 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_r80756694 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/ParquetGroupScan.java --- @@ -926,16 +944,22 @@ public GroupScan applyLimit(long maxRecords) { fileNames.add(rowGroupInfo.getPath()); } - if (fileNames.size() == fileSet.size() ) { + // If there is no change in fileSet and maxRecords is >= batchSize, no need to create new groupScan. + if (fileNames.size() == fileSet.size() && (maxRecords >= batchSize) ) { // There is no reduction of rowGroups. Return the original groupScan. logger.debug("applyLimit() does not apply!"); return null; } + // If limit maxRecords is less than batchSize, update batchSize to the limit size. + if (maxRecords < batchSize) { + batchSize = (int) maxRecords; --- End diff -- I tried to avoid this casting. To fix this, have to change code in bunch of places. I was trying to keep code changes minimal so no new regressions are introduced. > 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)