[jira] [Created] (DRILL-7148) TPCH query 17 increases execution time with Statistics enabled because join order is changed

2019-04-01 Thread Gautam Parai (JIRA)
Gautam Parai created DRILL-7148: --- Summary: TPCH query 17 increases execution time with Statistics enabled because join order is changed Key: DRILL-7148 URL: https://issues.apache.org/jira/browse/DRILL-7148

[GitHub] [drill] sohami commented on a change in pull request #1725: DRILL-7146: Query failing with NPE when ZK queue is enabled.

2019-04-01 Thread GitBox
sohami commented on a change in pull request #1725: DRILL-7146: Query failing with NPE when ZK queue is enabled. URL: https://github.com/apache/drill/pull/1725#discussion_r271104111 ## File path:

[GitHub] [drill] HanumathRao opened a new pull request #1725: DRILL-7146: Query failing with NPE when ZK queue is enabled.

2019-04-01 Thread GitBox
HanumathRao opened a new pull request #1725: DRILL-7146: Query failing with NPE when ZK queue is enabled. URL: https://github.com/apache/drill/pull/1725 This PR fixes the issue to not look for physical operator in memory adjusted operators of the QueueQueryParallelizer when planHasMemory

[GitHub] [drill] Agirish closed pull request #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped

2019-04-01 Thread GitBox
Agirish closed pull request #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped URL: https://github.com/apache/drill/pull/1724 This is an automated message from the Apache Git Service. To

[GitHub] [drill] Agirish commented on issue #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped

2019-04-01 Thread GitBox
Agirish commented on issue #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped URL: https://github.com/apache/drill/pull/1724#issuecomment-478789323 @kkhatua , I had the same reaction at first and hence the PR :) But Paul pointed out that the current

[GitHub] [drill] paul-rogers commented on issue #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped

2019-04-01 Thread GitBox
paul-rogers commented on issue #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped URL: https://github.com/apache/drill/pull/1724#issuecomment-478780266 Please see note in the JIRA ticket. Current behavior is correct. I suspect that the issue is with one

[GitHub] [drill] Agirish commented on issue #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped

2019-04-01 Thread GitBox
Agirish commented on issue #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped URL: https://github.com/apache/drill/pull/1724#issuecomment-478757808 + @paul-rogers (not able to tag you as a reviewer).

[GitHub] [drill] Agirish opened a new pull request #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped

2019-04-01 Thread GitBox
Agirish opened a new pull request #1724: DRILL-7147: Source order of drill-env.sh and distrib-env.sh should be swapped URL: https://github.com/apache/drill/pull/1724 Drill environment properties in drill-env.sh should override corresponding properties set in distrib-env.sh

Re: Drill not compiling after rebase!!

2019-04-01 Thread Sorabh Hamirwasia
I am not seeing any issue with latest maven and with below java version. As Vova suggested this could be a JDK bug. *# mvn --version* *Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0* *Apache Maven 3.6.0

[jira] [Created] (DRILL-7147) Source order of "drill-env.sh" and "distrib-env.sh" should be swapped

2019-04-01 Thread Hao Zhu (JIRA)
Hao Zhu created DRILL-7147: -- Summary: Source order of "drill-env.sh" and "distrib-env.sh" should be swapped Key: DRILL-7147 URL: https://issues.apache.org/jira/browse/DRILL-7147 Project: Apache Drill

Re: Drill not compiling after rebase!!

2019-04-01 Thread hanu mapr
Hello Vova, Here is the java version on my laptop. HMADURI-E597:drill hmaduri$ java -version java version "1.8.0_91" Java(TM) SE Runtime Environment (build 1.8.0_91-b14) Java HotSpot(TM) 64-Bit Server VM (build 25.91-b14, mixed mode) HMADURI-E597:drill hmaduri$ javac -version javac 1.8.0_91

Re: Drill not compiling after rebase!!

2019-04-01 Thread Charles Givre
Hi Volodmyr, I’m on a Mac OSX Mohave, java version 1.8.0_65, maven version 3.6.0. In order to get Drill to build I had to make the following changes: org/apache/drill/exec/store/parquet/TestParquetFilterPushDown.java (add try/catch) private void

[GitHub] [drill] amansinha100 merged pull request #1715: DRILL-7117: Support creation of equi-depth histogram for selected dat…

2019-04-01 Thread GitBox
amansinha100 merged pull request #1715: DRILL-7117: Support creation of equi-depth histogram for selected dat… URL: https://github.com/apache/drill/pull/1715 This is an automated message from the Apache Git Service. To

Re: Drill not compiling after rebase!!

2019-04-01 Thread Vova Vysotskyi
Hi all, Looking into the code, I don't see a reason for compilation failure, since the exception type should be inferred from *FieldReferenceFinder*, which contains *RuntimeException*. Perhaps it may be JDK bug, something like this https://bugs.openjdk.java.net/browse/JDK-8066974. Charles, Hanu,

Re: Drill not compiling after rebase!!

2019-04-01 Thread Charles Givre
Hi Hanu, I posted code that fixed this to the list. Once I did that, it worked fine. —C > On Apr 1, 2019, at 15:39, hanu mapr wrote: > > Hello All, > > The exact function which is causing this error is the following. > > public static RowsMatch evalFilter(LogicalExpression expr, >

Re: Drill not compiling after rebase!!

2019-04-01 Thread hanu mapr
Hello All, The exact function which is causing this error is the following. public static RowsMatch evalFilter(LogicalExpression expr, MetadataBase.ParquetTableMetadataBase footer, int rowGroupIndex, OptionManager options, FragmentContext fragmentContext)

Re: Drill not compiling after rebase!!

2019-04-01 Thread hanu mapr
Hello All, I am also getting the same error which Charles got on compilation of the latest build. Here is the message which I got. [ERROR] /Users/hmaduri/contribs/APACHE/drill/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/FilterEvaluatorUtils.java:[59,68] error: unreported

[GitHub] [drill] gparai commented on issue #1715: DRILL-7117: Support creation of equi-depth histogram for selected dat…

2019-04-01 Thread GitBox
gparai commented on issue #1715: DRILL-7117: Support creation of equi-depth histogram for selected dat… URL: https://github.com/apache/drill/pull/1715#issuecomment-478704575 The changes look good. +1 This is an automated

[jira] [Created] (DRILL-7146) Query failing with NPE when ZK queue is enabled

2019-04-01 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-7146: Summary: Query failing with NPE when ZK queue is enabled Key: DRILL-7146 URL: https://issues.apache.org/jira/browse/DRILL-7146 Project: Apache Drill

[GitHub] [drill] kkhatua commented on a change in pull request #1714: DRILL-7048: Implement JDBC Statement.setMaxRows() with System Option

2019-04-01 Thread GitBox
kkhatua commented on a change in pull request #1714: DRILL-7048: Implement JDBC Statement.setMaxRows() with System Option URL: https://github.com/apache/drill/pull/1714#discussion_r270996130 ## File path:

Re: Drill not compiling after rebase!!

2019-04-01 Thread Abhishek Girish
Hey Charles, On the latest apache/drill master, I don't see any errors during build / running unit tests. But sometimes I've seen this issue with stale artifacts.. Can you clear all maven artifacts from your local maven repo cache and build master again (or with -U option)? On Mon, Apr 1, 2019

Re: Drill not compiling after rebase!!

2019-04-01 Thread Charles Givre
Hello all, There does seem to be some regression here… In order to get Drill to build I had to make the following changes: org/apache/drill/exec/store/parquet/TestParquetFilterPushDown.java (add try/catch) private void testParquetRowGroupFilterEval(MetadataBase.ParquetTableMetadataBase

[jira] [Created] (DRILL-7145) Exceptions happened during retrieving values from ValueVector are not being displayed at the Drill Web UI

2019-04-01 Thread Anton Gozhiy (JIRA)
Anton Gozhiy created DRILL-7145: --- Summary: Exceptions happened during retrieving values from ValueVector are not being displayed at the Drill Web UI Key: DRILL-7145 URL:

Apache Drill Hangout - April 02, 2019

2019-04-01 Thread Igor Guzenko
Hello Drillers, Apache Drill hangout is scheduled for Tuesday, Apr 2nd, at 10 AM PST (link: https://meet.google.com/yki-iqdf-tai ). Does somebody have a topic for discussion during tomorrow's hangout ? Respectfully, Igor Guzenko

Re: Parquet Metadata Caching design doc

2019-04-01 Thread Aman Sinha
For DRILL-7064 [1] I needed to add a sub-section to the design doc. I have added Section 3.6 (* 'Enhancements to ConvertCountToDirectScan rule'*) to the document. Feedback is welcome. [1] https://issues.apache.org/jira/browse/DRILL-7064 [2]

Re: Drill not compiling after rebase!!

2019-04-01 Thread Charles Givre
Hey Arina, Just some more info… I cloned the repo straight from the Apache/Drill github repo, attempted to build and got the same error. I’m on a Mac OSX Mohave, java version 1.8.0_65, maven version 3.6.0. Could there be something in my environment that is causing this? Can anyone else

Re: Drill not compiling after rebase!!

2019-04-01 Thread Charles Givre
Hey Arina, Any suggestions on how to fix? I’ve tried rebasing again to no avail. > On Apr 1, 2019, at 10:28, Arina Yelchiyeva wrote: > > Hi Charles, > > Build on the latest commit is successful - >

Re: Drill not compiling after rebase!!

2019-04-01 Thread Arina Yelchiyeva
Hi Charles, Build on the latest commit is successful - https://travis-ci.org/apache/drill/builds/514145219?utm_source=github_status_medium=notification Git does not always rebase smoothly, even

Drill not compiling after rebase!!

2019-04-01 Thread Charles Givre
All, I just rebased Drill with the latest commits and it no longer builds. I’m getting the following errors: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compile) on project drill-java-exec: Compilation failure [ERROR]

[GitHub] [drill] ihuzenko commented on issue #1714: DRILL-7048: Implement JDBC Statement.setMaxRows() with System Option

2019-04-01 Thread GitBox
ihuzenko commented on issue #1714: DRILL-7048: Implement JDBC Statement.setMaxRows() with System Option URL: https://github.com/apache/drill/pull/1714#issuecomment-478578390 Hello @kkhatua, generally the PR looks good, only one comment related to test. And interesting thing with UI is

[GitHub] [drill] asfgit closed pull request #1673: DRILL-6970: fix issue with logregex format plugin where drillbuf was overflowing

2019-04-01 Thread GitBox
asfgit closed pull request #1673: DRILL-6970: fix issue with logregex format plugin where drillbuf was overflowing URL: https://github.com/apache/drill/pull/1673 This is an automated message from the Apache Git Service. To

[GitHub] [drill] asfgit closed pull request #1720: DRILL-7140: RM: Drillbits fail with "No enum constant org.apache.dril…

2019-04-01 Thread GitBox
asfgit closed pull request #1720: DRILL-7140: RM: Drillbits fail with "No enum constant org.apache.dril… URL: https://github.com/apache/drill/pull/1720 This is an automated message from the Apache Git Service. To respond to

[GitHub] [drill] ihuzenko commented on a change in pull request #1714: DRILL-7048: Implement JDBC Statement.setMaxRows() with System Option

2019-04-01 Thread GitBox
ihuzenko commented on a change in pull request #1714: DRILL-7048: Implement JDBC Statement.setMaxRows() with System Option URL: https://github.com/apache/drill/pull/1714#discussion_r270863652 ## File path:

[GitHub] [drill] vvysotskyi commented on issue #1720: DRILL-7140: RM: Drillbits fail with "No enum constant org.apache.dril…

2019-04-01 Thread GitBox
vvysotskyi commented on issue #1720: DRILL-7140: RM: Drillbits fail with "No enum constant org.apache.dril… URL: https://github.com/apache/drill/pull/1720#issuecomment-478555853 @HanumathRao, in future, when approving the PR, please check that Jira is in Reviewable state and please add

[GitHub] [drill] vvysotskyi commented on issue #1649: DRILL-6970: Issue with LogRegex format plugin where drillbuf was overflowing

2019-04-01 Thread GitBox
vvysotskyi commented on issue #1649: DRILL-6970: Issue with LogRegex format plugin where drillbuf was overflowing URL: https://github.com/apache/drill/pull/1649#issuecomment-478550902 Closing this PR, since the latest changes are present in https://github.com/apache/drill/pull/1673

[GitHub] [drill] vvysotskyi closed pull request #1649: DRILL-6970: Issue with LogRegex format plugin where drillbuf was overflowing

2019-04-01 Thread GitBox
vvysotskyi closed pull request #1649: DRILL-6970: Issue with LogRegex format plugin where drillbuf was overflowing URL: https://github.com/apache/drill/pull/1649 This is an automated message from the Apache Git Service. To

[GitHub] [drill] arina-ielchiieva commented on issue #1716: Create a standard logging message for batch sizes generated by indivi…

2019-04-01 Thread GitBox
arina-ielchiieva commented on issue #1716: Create a standard logging message for batch sizes generated by indivi… URL: https://github.com/apache/drill/pull/1716#issuecomment-478549998 @rhou1 please create Jira for this fix and add Jira number to the PR title and commit message.

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270779624 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270769440 ## File path: exec/java-exec/src/test/java/org/apache/drill/PlanTestBase.java ##

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270784411 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270761210 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270782041 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270783164 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270771552 ## File path: exec/java-exec/src/test/java/org/apache/drill/PlanTestBase.java ##

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270767620 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270744162 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270776958 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270729791 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270772909 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270779983 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270782722 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270769220 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270773857 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270779898 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270779624 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270784820 ## File path:

[GitHub] [drill] vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata

2019-04-01 Thread GitBox
vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate metadata cache file into summary, file metadata URL: https://github.com/apache/drill/pull/1723#discussion_r270738499 ## File path:

[GitHub] [drill] asfgit closed pull request #1721: DRILL-7142: Add space after > in SqlLine prompt

2019-04-01 Thread GitBox
asfgit closed pull request #1721: DRILL-7142: Add space after > in SqlLine prompt URL: https://github.com/apache/drill/pull/1721 This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] [drill] asfgit closed pull request #1637: DRILL-7032: Ignore corrupt rows in a PCAP file

2019-04-01 Thread GitBox
asfgit closed pull request #1637: DRILL-7032: Ignore corrupt rows in a PCAP file URL: https://github.com/apache/drill/pull/1637 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [drill] asfgit closed pull request #1681: DRILL-7051: Upgrade to Jetty 9.3

2019-04-01 Thread GitBox
asfgit closed pull request #1681: DRILL-7051: Upgrade to Jetty 9.3 URL: https://github.com/apache/drill/pull/1681 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

[GitHub] [drill] asfgit closed pull request #1680: DRILL-7077: Add Function to Facilitate Time Series Analysis

2019-04-01 Thread GitBox
asfgit closed pull request #1680: DRILL-7077: Add Function to Facilitate Time Series Analysis URL: https://github.com/apache/drill/pull/1680 This is an automated message from the Apache Git Service. To respond to the

[jira] [Created] (DRILL-7144) sqlline option : !set useLineContinuation false, fails with ParseException

2019-04-01 Thread Khurram Faraaz (JIRA)
Khurram Faraaz created DRILL-7144: - Summary: sqlline option : !set useLineContinuation false, fails with ParseException Key: DRILL-7144 URL: https://issues.apache.org/jira/browse/DRILL-7144 Project: