[GitHub] drill pull request #1188: DRILL-6271: Updated copyright range in NOTICE

2018-04-07 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/drill/pull/1188 ---

[GitHub] drill pull request #1161: DRILL-6230: Extend row set readers to handle hyper...

2018-04-07 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/drill/pull/1161 ---

[GitHub] drill pull request #1197: DRILL-6279: UI indicates operators that spilled in...

2018-04-07 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/drill/pull/1197 ---

Re: Non-column filters in Drill

2018-04-07 Thread Ted Dunning
Ryan What would happen if you defined a column so that you could use the normal pushdown mechanism? In most cases, you wouldn't return the value of the column since the only purpose is to use as a filter, but nothing should prevent you from returning the value of this not-really-a-column. By

Re: Non-column filters in Drill

2018-04-07 Thread Aman Sinha
A better option would be to have a user-defined function that takes 2 parameters and evaluates to a boolean value. e.g select * from myTable where MyUDF(notColumn, 'value') IS TRUE; The Storage Plugin that you are developing would need to implement a pushdown rule that looks at the filter

Build failed in Jenkins: drill-scm #953

2018-04-07 Thread Apache Jenkins Server
See Changes: [arina.yelchiyeva] DRILL-6279: Indicate operators that spilled in-memory data to disk on [arina.yelchiyeva] DRILL-6303: Provide a button to copy the Drillbit's JStack shown in [arina.yelchiyeva]

Re: "Death of Schema-on-Read"

2018-04-07 Thread Hanumath Rao Maduri
Hello All, I have created a JIRA to track this approach. https://issues.apache.org/jira/browse/DRILL-6312 Thanks, -Hanu On Fri, Apr 6, 2018 at 7:38 PM, Paul Rogers wrote: > Hi Aman, > > As we get into details, I suggested to Hanu that we move the discussion > into a

[jira] [Created] (DRILL-6312) Enable pushing of cast expressions to the scanner for better schema discovery.

2018-04-07 Thread Hanumath Rao Maduri (JIRA)
Hanumath Rao Maduri created DRILL-6312: -- Summary: Enable pushing of cast expressions to the scanner for better schema discovery. Key: DRILL-6312 URL: https://issues.apache.org/jira/browse/DRILL-6312

[GitHub] drill pull request #1166: DRILL-6016 - Fix for Error reading INT96 created b...

2018-04-07 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/drill/pull/1166 ---

[GitHub] drill pull request #1199: DRILL-6303: Provide a button to copy the Drillbit'...

2018-04-07 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/drill/pull/1199 ---

[GitHub] drill pull request #1182: DRILL-6287: apache-release profile should be disab...

2018-04-07 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/drill/pull/1182 ---

[GitHub] drill pull request #1181: DRILL-6284: Add operator metrics for batch sizing ...

2018-04-07 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/drill/pull/1181 ---

[jira] [Resolved] (DRILL-6296) Add operator metrics for batch sizing for merge join

2018-04-07 Thread Arina Ielchiieva (JIRA)
[ https://issues.apache.org/jira/browse/DRILL-6296?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Arina Ielchiieva resolved DRILL-6296. - Resolution: Fixed Merged with commit id da241134fb88464139437b05b1feaafbb3014bb0. > Add

[GitHub] drill issue #1203: DRILL-6289: Cluster view should show more relevant inform...

2018-04-07 Thread arina-ielchiieva
Github user arina-ielchiieva commented on the issue: https://github.com/apache/drill/pull/1203 Before the review I guess we need to clarify one thing. After DRILL-6044 Shutdown button was shown only for the current drillbit. As far as I understood, you cannot shutdown other drillbits

Drill Jenkins jobs

2018-04-07 Thread Vlad Rozov
Hi Vitalii, To be able to update Jenkins job configuration you will need to ask Aman (PMC chair) to grant you (or any other Apache members or PMCs) permission. See https://cwiki.apache.org/confluence/display/INFRA/Jenkins. It is Drill community responsibility to maintain Jenkins builds. I

Non-column filters in Drill

2018-04-07 Thread Ryan Shanks
Hi Drill Dev Team! I am writing a custom storage plugin and I am curious if it is possible in Drill to pass a filter value, in the form of a where clause, that is not related to a column. What I would like to accomplish is something like: select * from myTable where notColumn = 'value'; In

Jenkins build is back to normal : drill-scm #954

2018-04-07 Thread Apache Jenkins Server
See

Re: [DISCUSS] DrillBuf

2018-04-07 Thread Vlad Rozov
Hi Paul, My comments in-line. Thank you, Vlad On 4/5/18 20:50, Paul Rogers wrote: Hi Vlad, I'd suggest to keep focus on DrillBuf design and implementation as the only gate for accessing raw (direct) memory. I was doing that. By explaining where DrillBuf fits in the overall design, we

Re: Non-column filters in Drill

2018-04-07 Thread Hanumath Rao Maduri
Hello Ryan, Thank you for trying out Drill. Drill/Calcite expects "notColumn" to be supplied by the underlying scan. However, I expect that this column will be present in the scan but not past the filter (notColumn = 'value') in the plan. In that case you may need to pushdown the filter to the

[jira] [Created] (DRILL-6313) ScanBatch.Mutator does not report new schema for empty first batch

2018-04-07 Thread Paul Rogers (JIRA)
Paul Rogers created DRILL-6313: -- Summary: ScanBatch.Mutator does not report new schema for empty first batch Key: DRILL-6313 URL: https://issues.apache.org/jira/browse/DRILL-6313 Project: Apache Drill