No Drill hangout next Tuesday 19th Sept

2017-09-15 Thread Aman Sinha
Drillers, Due to developers attending the hackathon, we won't be having the Drill hangout next Tuesday. Next one will be on Tuesday Oct 3rd. See you then ! -Aman

[jira] [Created] (DRILL-5797) Use more often the new parquet reader

2017-09-15 Thread Damien Profeta (JIRA)
Damien Profeta created DRILL-5797: - Summary: Use more often the new parquet reader Key: DRILL-5797 URL: https://issues.apache.org/jira/browse/DRILL-5797 Project: Apache Drill Issue Type:

[jira] [Created] (DRILL-5796) Filter pruning for multi rowgroup parquet file

2017-09-15 Thread Damien Profeta (JIRA)
Damien Profeta created DRILL-5796: - Summary: Filter pruning for multi rowgroup parquet file Key: DRILL-5796 URL: https://issues.apache.org/jira/browse/DRILL-5796 Project: Apache Drill Issue

[jira] [Created] (DRILL-5795) Filter pushdown for parquet handles multi rowgroup file

2017-09-15 Thread Damien Profeta (JIRA)
Damien Profeta created DRILL-5795: - Summary: Filter pushdown for parquet handles multi rowgroup file Key: DRILL-5795 URL: https://issues.apache.org/jira/browse/DRILL-5795 Project: Apache Drill

[GitHub] drill pull request #944: DRILL-5425: Support HTTP Kerberos auth using SPNEGO

2017-09-15 Thread sindhurirayavaram
GitHub user sindhurirayavaram opened a pull request: https://github.com/apache/drill/pull/944 DRILL-5425: Support HTTP Kerberos auth using SPNEGO SPNEGO extends kerberos authentication to Drill WEB UI. Things to be added -Unit Tests -Showing the login option

Re: Drill 2.0 (design) hackathon

2017-09-15 Thread Charles Givre
Hi Pritesh, What time do you think you’d want me to present? Also, should I make some slides? Best, — C > On Sep 15, 2017, at 13:23, Pritesh Maker wrote: > > Hi All > > We are looking forward to hosting the hackathon on Monday. Just a few updates > on the logistics and

Re: Code Generation Question

2017-09-15 Thread Paul Rogers
We had a quick discussion. There is some doubt that Java can correctly optimize code that uses subclasses. The problem is that, for one query, the JIT wants to optimize the code one way, for another, the JIT wants to optimize a different way. By having copies of the byte codes, the JIT can

Re: Code Generation Question

2017-09-15 Thread Boaz Ben-Zvi
Hi Tim, The latest Pull Request for the Hash Aggr operator (#938) does turn the “plain java” on for the mainline code, as these new template code changes (in the Hash Table) caused the “byte twiddling” to break in some subtle way. This is the first attempt; and as it (hopefully) will work

Re: Code Generation Question

2017-09-15 Thread Paul Rogers
Hi Tim, This question has come up multiple times. The “plain Java” is very handy for developing code with code generation. It also seems to be faster, smaller and simpler than the byte-code-merge mechanism. (However, rewriting byte codes is has the benefit of sounding much more sophisticated

[jira] [Resolved] (DRILL-5724) Scan on a local directory containing multiple text files (one or more empty) throws FileNotFoundException

2017-09-15 Thread Prasad Nagaraj Subramanya (JIRA)
[ https://issues.apache.org/jira/browse/DRILL-5724?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prasad Nagaraj Subramanya resolved DRILL-5724. -- Resolution: Cannot Reproduce > Scan on a local directory containing

Re: Drill 2.0 (design) hackathon

2017-09-15 Thread Pritesh Maker
Hi All We are looking forward to hosting the hackathon on Monday. Just a few updates on the logistics and agenda • We are expecting over 25 people attending the event – you can see the attendee list at the Eventbrite site -

[GitHub] drill issue #889: DRILL-5691: enhance scalar sub queries checking for the ca...

2017-09-15 Thread weijietong
Github user weijietong commented on the issue: https://github.com/apache/drill/pull/889 @arina-ielchiieva @amansinha100 any further advice ? ---

Resolving object type using ObjectVector

2017-09-15 Thread Charuta Rajopadhye
Hi Team, I am trying to implement a storage plugin for my database (it supports Postgres JDBC driver) and can store compound objects. I am able to parse primary objects in my RecordReader, but for object types: I create Copier of ObjectVector type, and have overridden it's copy method: private