Re: [VOTE] Release Apache Drill 1.9.0 RC1

2016-11-16 Thread Sorabh Hamirwasia
+1 (non-binding) Built from source and successfully ran unit tests. Ran both in embedded and distributed mode. Verified DRILL-4972 / DRILL-4964 Ran some basic query on sys tables and sample data. Looks good. On Wed, Nov 16, 2016 at 2:49 PM, Krystal Nguyen wrote: > +1

Query Hanging in Running State

2017-08-14 Thread Sorabh Hamirwasia
Hi All, Recently I found an issue (Thanks to knguyen to help with test setup) related to Fragment Status reporting and would like some feedback on it. When a client submits a query to Foreman, then it is planned by Foreman and later fragments are scheduled to root and non-root nodes. Foreman

Re: [VOTE] Release Apache Drill 1.11.0 - rc0

2017-07-27 Thread Sorabh Hamirwasia
LGTM +1 - Built from source on CentOS using [4], deployed on a one node cluster - Downloaded and deployed a one node cluster using [2] - Ran some queries against employee.json & regions.json file in classpath using sqlline - Enabled plain and kerberos authentication and was successfully

Re: Drill SASL Forward Compatibility

2017-11-06 Thread Sorabh Hamirwasia
Hi Laurent, Please see the responses inline. Thanks, Sorabh From: Laurent Goujon Sent: Thursday, November 2, 2017 11:52 AM To: dev Subject: Re: Drill SASL Forward Compatibility I have a parallel scenario: - Scenario 1: 1) A handshake from

Re: Drill SASL Forward Compatibility

2017-11-01 Thread Sorabh Hamirwasia
Parth, Your understanding is correct. I am also debating for 1(A) specially in context of security mechanisms like Kerberos which guarantees prevention from MITM during handshake. But with 1( B ) we are saying in case of Drill it's possible and fine since no data is compromised. Thanks,

Re: Drill SASL Forward Compatibility

2017-10-31 Thread Sorabh Hamirwasia
ers inline. On Tue, Oct 31, 2017 at 1:40 AM, Sorabh Hamirwasia <shamirwa...@mapr.com> wrote: > Hi Laurent, > > Thanks for pointing issue with <= 1.9 version Drillbit, I looked into > supported_methods field and it doesn't advertise SASL support using that > [1][2]. Do you mean

Re: [HANGOUT] Topics for 10/31/2017

2017-10-31 Thread Sorabh Hamirwasia
Meeting minutes 31 October 2017: Attendees: Aman, Arina, Boaz, Gautam, Karthik, Rob, Padma, Parth, Paul, Prasad, Pritesh, Sorabh, Tim, Vlad, Vova This is the draft of the meeting notes I remember: Gitbox: * Provide write access to github repo * Provide fine grain controlled on

Drill SASL Forward Compatibility

2017-10-30 Thread Sorabh Hamirwasia
Hi All, We recently added a check (as part of DRILL-5582) on DrillClient side to enforce that if client showed intent for authentication and Drillbit say's it doesn't require authentication then connection will fail with proper error message.

Re: Drill SASL Forward Compatibility

2017-10-31 Thread Sorabh Hamirwasia
fix was done in response to a potential security flaw (although I have to admin not sure what issue it does prevent since it is still possible for a MITM to intercept all traffic between a client and a server). Laurent On Mon, Oct 30, 2017 at 5:18 PM, Sorabh Hamirwasia <shamirwa...@mapr.com>

Re: Drill SASL Forward Compatibility

2017-10-31 Thread Sorabh Hamirwasia
after that!)? Laurent On Tue, Oct 31, 2017 at 3:12 PM, Sorabh Hamirwasia <shamirwa...@mapr.com> wrote: > Hi Laurent, > > We are preventing 2 cases here: > > * False positive for successful authentication. Even though MITM > attack can happen after successful authent

Re: [Question] Using loggers in tests

2018-05-25 Thread Sorabh Hamirwasia
I think by default the logging is disabled except for error message which is directed to stdout. All other logging are directed to socket appender consumed by Lilith (if setup is there) when the property drill.lilith.enable is set to true. Thanks, Sorabh

Re: [ANNOUNCE] New Committer: Timothy Farkas

2018-05-25 Thread Sorabh Hamirwasia
Congratulations Tim! Thanks, Sorabh From: Vova Vysotskyi Sent: Friday, May 25, 2018 12:43:04 PM To: dev@drill.apache.org Subject: Re: [ANNOUNCE] New Committer: Timothy Farkas Congratulations, Tim! Kind regards, Volodymyr Vysotskyi пт, 25

Re: How to generate hash code for each build side one of the hash join columns

2018-06-01 Thread Sorabh Hamirwasia
Your understanding about SelectionVector2 is correct. Internally it holds a DrillBuff which stores all the indexes of interest. The reason why setup of SV2 is done only once in ProjectTemplate::setup is because for subsequent next() call's from Project to Filter, each new incoming will have

Re: [ANNOUNCE] New PMC member: Vitalii Diravka

2018-06-26 Thread Sorabh Hamirwasia
Congratulations Vitalii! Thanks, Sorabh On Tue, Jun 26, 2018 at 11:18 AM, Arina Yelchiyeva < arina.yelchiy...@gmail.com> wrote: > Congratulations, Vitalii! Well deserved! > > Kind regards, > Arina > > On Tue, Jun 26, 2018 at 9:16 PM Bridget Bevens wrote: > > > Congratulations, Vitalii! > > > >

Re: [ANNOUNCE] New Committer: Sorabh Hamirwasia

2018-04-30 Thread Sorabh Hamirwasia
Thank You everyone for the wishes. Thanks, Sorabh From: Hanumath Rao Maduri <hanu@gmail.com> Sent: Monday, April 30, 2018 12:23:07 PM To: dev@drill.apache.org Subject: Re: [ANNOUNCE] New Committer: Sorabh Hamirwasia Congrats Sorabh! Thanks, -Hanu

Re: Odd Error on Login with 1.13-SNAPSHOT

2018-01-15 Thread Sorabh Hamirwasia
I have opened a PR for review<https://github.com/apache/drill/pull/1092>. Would be great if you can pull that in and try out, unfortunately just adding the new config will not help  Thanks, Sorabh From: Sorabh Hamirwasia Sent: Sunday, January 14, 201

Re: Odd Error on Login with 1.13-SNAPSHOT

2018-01-14 Thread Sorabh Hamirwasia
I have opened DRILL-6088 for this issue and will provide a patch by tonight for review. For now to unblock you, please add following http configuration in your drill-override.conf. drill.exec.http.auth.mechanisms: ["FORM"], I am assuming

LATERAL and UNNEST support for Drill

2018-01-25 Thread Sorabh Hamirwasia
Hi All, We (people in cc list) have been looking into design for support of LATERAL and UNNEST within Drill. With upgrade of Calcite to 1.15, these keywords are supported in Calcite too. As a first cut we have created a design document which proposes the changes and limitation's for this project.

Re: [ANNOUNCE] New PMC member: Paul Rogers

2018-01-30 Thread Sorabh Hamirwasia
Congratulations Paul! Thanks, Sorabh From: AnilKumar B Sent: Tuesday, January 30, 2018 2:43:07 PM To: dev@drill.apache.org Subject: Re: [ANNOUNCE] New PMC member: Paul Rogers Congratulations, Paul. Thanks & Regards, B Anil Kumar. On

Re: LATERAL and UNNEST support for Drill

2018-01-29 Thread Sorabh Hamirwasia
Sent: Sunday, January 28, 2018 10:30:30 PM To: dev@drill.apache.org Cc: Chunhui Shi; Parth Chandra; Aman Sinha; Sorabh Hamirwasia Subject: Re: LATERAL and UNNEST support for Drill I haven't looked at the design doc, but this is a great thing to have. Would you be building something to do the inv

Re: [VOTE] Apache Drill release 1.14.0 - RC3

2018-08-03 Thread Sorabh Hamirwasia
Downloaded source from [4] and built and ran unit tests on linux and mac environment. - KafkaFilterPushdownTest is failing on mac environment and passing on linux. Same as DRILL-6625 - MongoDB storage plugin unit tests is failing on linux but passing on mac for me. [Platform

Re: Ownership Of VectorContainers In HashJoin After Calling Next

2018-08-03 Thread Sorabh Hamirwasia
When next is called on upstream operator then 2 things can happen: 1. Current operator either work on incoming and produces/copy the records to its outgoing batch. In this case there is no transfer of ownership of incoming batch buffer from upstream to current operator allocator.

Re: [VOTE] Apache Drill release 1.14.0 - RC3

2018-08-03 Thread Sorabh Hamirwasia
gt; that > > issue on user base > > but given the 230+ JIRAs fixed in this release, I think the RC is pretty > > strong. > > > > > > > > On Thu, Aug 2, 2018 at 11:20 PM Sorabh Hamirwasia > > wrote: > > > > > Downloaded source from [4] and built a

Re: Drillbit client connect authorization

2018-08-15 Thread Sorabh Hamirwasia
Hi Oleksandr, Drill doesn't do any user management in itself, instead relies on the corresponding security mechanisms in use to do it. It uses SASL framework to allow using different pluggable security mechanisms. So it should be upon the security mechanism in use to do the authorization level

Re: [ANNOUNCE] New PMC member: Boaz Ben-Zvi

2018-08-17 Thread Sorabh Hamirwasia
Congratulations Boaz! On Fri, Aug 17, 2018 at 11:42 AM, Karthikeyan Manivannan < kmanivan...@mapr.com> wrote: > Congrats! Well deserved! > > On Fri, Aug 17, 2018, 11:31 AM Timothy Farkas wrote: > > > Congrats! > > > > On Fri, Aug 17, 2018 at 11:27 AM, Gautam Parai wrote: > > > > >

Re: Drillbit client connect authorization

2018-08-17 Thread Sorabh Hamirwasia
ucing user > authorization feature. This thread refers only to session authorization to > complement YARN feature, but it could be extendable of course, e.g. in > similar ways like Drill already supports multiple authentication > mechanisms. > > Thanks & Best Regards,

Re: [DISCUSS] 1.14.0 release

2018-07-13 Thread Sorabh Hamirwasia
Hi Boaz, Couple of updates. *Merged In:* DRILL-6542: (May be Ready2Commit soon) IndexOutOfBounds exception for multilevel lateral ((Sorabh / Parth)) *In Review:* *DRILL-6475: Query with UNNEST causes a Null Pointer . (( Hanumath ))* Thanks, Sorabh On Fri, Jul 13, 2018 at 1:17 PM, Parth

Re: [DISCUSS] 1.13.0 release

2018-03-06 Thread Sorabh Hamirwasia
Just sent an email on RCA of DRILL-6216 to discuss next steps. Thanks, Sorabh From: Parth Chandra Sent: Tuesday, March 6, 2018 6:48:21 PM To: dev Subject: Re: [DISCUSS] 1.13.0 release We have two items remaining - DRILL-1491 - Ideally, I

[1.13 - Release Blocker] - DRILL-6216: Metadata mismatch when connecting to a Drill 1.12.0 with a Drill-1.13.0-SNAPSHOT driver

2018-03-06 Thread Sorabh Hamirwasia
Hi All, The root cause for DRILL-6216 is due to a recent change made as part of https://issues.apache.org/jira/browse/DRILL-6049. With this PR a default field name for values ValueVector inside any NullableValueVector was introduced which is $values$ [1]. Before this PR the values ValueVector

Re: [ANNOUNCE] New Committer: Kunal Khatua

2018-02-27 Thread Sorabh Hamirwasia
Congratulations Kunal! Thanks, Sorabh From: Arina Yelchiyeva Sent: Tuesday, February 27, 2018 8:44:24 AM To: dev@drill.apache.org Subject: Re: [ANNOUNCE] New Committer: Kunal Khatua Congrats, Kunal! On Tue, Feb 27, 2018 at 6:42 PM,

Re: [VOTE] Apache Drill release 1.13.0 - RC0

2018-03-15 Thread Sorabh Hamirwasia
* Downloaded binary tarball from [2] and deployed 2 node cluster * Ran some basic queries using sqlline and Web UI with and without security enabled * Verified user to bit secure connections using Plain/Kerberos * Verified bit to bit secure connections using Kerberos. *

No log prints in drillbit.log on latest master

2018-04-05 Thread Sorabh Hamirwasia
Hi All, On latest Apache master, commit for DRILL-6234 added a dependency inside /exec/vector/pom.xml file for drill-common artifact. But the change missed to specify the scope as test, due to this a separate jar was created inside

Re: Keycloak integration

2018-04-19 Thread Sorabh Hamirwasia
Hi Kenny, I think you can achieve it using a custom authenticator. The interface is located at [1]. As far as I have understand Keycloak provides a client adapter to communicate with backend service or framework. So the custom authenticator which you will develop will have the logic to

Re: Drill Hangout tomorrow at 10 am PST

2018-03-05 Thread Sorabh Hamirwasia
Hi Arina, I can complete the design discussion on Lateral and Unnest leftover from last hangout. Thanks, Sorabh From: Arina Ielchiieva Sent: Monday, March 5, 2018 9:13:50 AM To: dev@drill.apache.org Subject: Drill Hangout tomorrow at 10 am

Re: [HANGOUT] Topics for 10/16/2018

2018-10-15 Thread Sorabh Hamirwasia
Resending with correct date (10/16) in subject. On Mon, Oct 15, 2018 at 10:59 AM Sorabh Hamirwasia wrote: > Hi All, > > We will have Apache Drill Hangout tomorrow (October 16, 2018) at 10 AM > PST. Please suggest any topic you will be interested in discussing by > replying to

Re: [HANGOUT] Topics for 10/16/2018

2018-10-16 Thread Sorabh Hamirwasia
- There were list of topics which were identified to present in future hangout sessions. With each hangout invitation we will announce the topics which are finalized for that week. Thanks, Sorabh On Mon, Oct 15, 2018 at 11:05 AM Sorabh Hamirwasia wrote: > Resending with correct date (10

[HANGOUT] Topics for 10/15/2018

2018-10-15 Thread Sorabh Hamirwasia
Hi All, We will have Apache Drill Hangout tomorrow (October 16, 2018) at 10 AM PST. Please suggest any topic you will be interested in discussing by replying to this thread. We will also accept additional topics at the beginning of the hangout. Please use the below link to join:

Re: [ANNOUNCE] New Committer: Hanumath Rao Maduri

2018-11-01 Thread Sorabh Hamirwasia
Congratulations Hanu! Thanks, Sorabh On Thu, Nov 1, 2018 at 1:35 PM Hanumath Rao Maduri wrote: > Thank you all for the wishes! > > Thanks, > -Hanu > > On Thu, Nov 1, 2018 at 1:28 PM Chunhui Shi .invalid> > wrote: > > > Congratulations Hanu! > >

Re: November Apache Drill board report

2018-11-01 Thread Sorabh Hamirwasia
Hi Arina, Lateral/Unnest feature was part of 1.14 though it was disabled by default. Should we mention it as part of 1.14 enhancements in the report? Thanks, Sorabh On Thu, Nov 1, 2018 at 9:29 AM Arina Yelchiyeva wrote: > Thanks, Aman! Updated the report. > I went too far with 2019, luckily

Re: [ANNOUNCE] New Committer: Chunhui Shi

2018-09-28 Thread Sorabh Hamirwasia
Congratulations Chunhui!! Thanks, Sorabh On Fri, Sep 28, 2018 at 12:56 PM Paul Rogers wrote: > Congrats Chunhui! > > Thanks, > - Paul > > > > On Friday, September 28, 2018, 2:17:42 AM PDT, Arina Ielchiieva < > ar...@apache.org> wrote: > > The Project Management Committee (PMC) for Apache

Re: [ANNOUNCE] New Committer: Weijie Tong

2018-08-31 Thread Sorabh Hamirwasia
Congratulations Weijie! Thanks, Sorabh On Fri, Aug 31, 2018 at 10:28 AM, Paul Rogers wrote: > Congratulations Weijie, thanks for your contributions to Drill. > Thanks, > - Paul > > > > On Friday, August 31, 2018, 8:51:30 AM PDT, Arina Ielchiieva < > ar...@apache.org> wrote: > > The

Re: [VOTE] Apache Drill release 1.15.0 - RC2

2018-12-27 Thread Sorabh Hamirwasia
- Downloaded src tarball from [3] and built on linux. - Built the cpp client on linux from source. - Tested Kerberos and Plain mechanism using querysubmitter and sqlline. - Verified Unnest/Lateral is enabled by default. ** The planner options documentation needs to be updated to reflect that

GitHub PR comments not showing up in JIRA

2019-03-20 Thread Sorabh Hamirwasia
Hi All, Recently I noticed that none of the PR comments are showing up in JIRA ticket. I have opened a INFRA ticket for the same. Not sure since when this was happening. https://issues.apache.org/jira/browse/INFRA-18062 Thanks, Sorabh

Re: [DISCUSS] 1.16.0 release

2019-03-25 Thread Sorabh Hamirwasia
ixing if any blocker bugs are discovered during > functional testing. > Hope that helps with setting the release cut-off date. > > Aman > > > On Tue, Mar 19, 2019 at 5:23 PM Sorabh Hamirwasia > > wrote: > > > Hi All, > > Thanks for your respons

Re: [DISCUSS] 1.16.0 release

2019-04-04 Thread Sorabh Hamirwasia
, we are estimating 2 more >> weeks for the feature development. >> This does not include bug fixing if any blocker bugs are discovered during >> functional testing. >> Hope that helps with setting the release cut-off date. >> >> Aman >> >> >>

Re: [Discuss] Integrate Arrow gandiva into Drill

2019-04-05 Thread Sorabh Hamirwasia
Hi Weijie, I think the only case in which that line will be executed is if there is any UDF like flatten operation which results in producing multiple rows for each input row. Even though currently Flatten is a separate operator in Drill but I think that code is there to handle such cases.

Re: [ANNOUNCE] New PMC member: Sorabh Hamirwasia

2019-04-05 Thread Sorabh Hamirwasia
rina Ielchiieva wrote: > > > I am pleased to announce that Drill PMC invited Sorabh Hamirwasia to > > the PMC and > > he has accepted the invitation. > > > > Congratulations Sorabh and welcome! > > > > - Arina > > (on behalf of Drill PMC) > > >

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

Re: [DISCUSS] Whether to create separate 2.0 branch

2019-03-03 Thread Sorabh Hamirwasia
Hi, +1 for 2.0 branch. From RM perspective since we will be adding support for more richer configuration to support multiple queues, the existing functionality will be deprecated. This will result in breaking backward compatibility hence 2.0 branch will be preferred. I think it will be confusing

Re: [DISCUSS] 1.16.0 release

2019-03-14 Thread Sorabh Hamirwasia
te accordingly. > > Kind regards, > Arina > > On Tue, Mar 12, 2019 at 9:16 PM Sorabh Hamirwasia > > wrote: > > > Hi All, > > It's around two and a half month since we did 1.15.0 release for Apache > > Drill. Based on our 3 months release cadence I think it'

Re: Apache Drill Hangout - March 19, 2019

2019-03-18 Thread Sorabh Hamirwasia
Hi Gautam, 2 topics which we can discuss are: - 2.0 Branch - 1.16 release cut-off date based on tasks in progress. Thanks, Sorabh On Mon, Mar 18, 2019 at 11:31 AM Gautam Parai wrote: > Hello All, > > Does anyone have any topics to discuss during the hangout tomorrow? > We will start the

Re: [DISCUSS] 1.16.0 release

2019-03-19 Thread Sorabh Hamirwasia
DRILL-7107 > > > > https://issues.apache.org/jira/browse/DRILL-7107> > > > > I will open the PR today. > > > > It is a small change and fixes a basic usability issue. > > > > > > > > Thanks. > > > > > > >

Re: Roadmap for Drill 2.0 and beyond?

2019-03-19 Thread Sorabh Hamirwasia
You can find all the presentations here: https://drive.google.com/drive/folders/1VjKkqCKghrrbmgAyDY7h2bhoF65QB57r Thanks, Sorabh On Tue, Mar 19, 2019 at 9:33 AM Kisung Kim wrote: > Can you share the thread or the address where presentations are? > I couldn't find any related thread. > > On

[DISCUSS] 1.16.0 release

2019-03-12 Thread Sorabh Hamirwasia
Hi All, It's around two and a half month since we did 1.15.0 release for Apache Drill. Based on our 3 months release cadence I think it's time to discuss our next release. I will volunteer to manage the next release. **Below is the current JIRA stats:* *[1] Open#: 15* - Would be great if

Re: [DISCUSS] 1.16.0 release

2019-03-14 Thread Sorabh Hamirwasia
> —C > > > On Mar 14, 2019, at 13:13, Sorabh Hamirwasia > wrote: > > > > Hi Arina, > > Thanks for your response. With ETA of two weeks we are looking at end of > > the month or beginning next month. I will wait until Monday for others to > > respond an

Drill Resource Management Project

2019-02-08 Thread Sorabh Hamirwasia
Hi All, Please find below the link[1] to the slides for Drill Resource Management project which Hanu, Karthik and I presented on this week's hangout. For details you can refer to design document at [2]. The implementation details section of design document is still WIP. All the work for this

Re: BI Tool Demo on Drill

2019-02-12 Thread Sorabh Hamirwasia
+1 On Tue, Feb 12, 2019 at 5:05 AM Vitalii Diravka wrote: > +1 > > Kind regards > Vitalii > > > On Tue, Feb 12, 2019 at 1:31 AM Veera Naranammalpuram < > vnaranammalpu...@mapr.com> wrote: > > > +1 > > > > > > On Mon, Feb 11, 2019 at 5:55 PM Gautam Parai wrote: > > > > > +1 > > > > > > On Mon,

Re: [DISCUSS] 1.16.0 release

2019-04-10 Thread Sorabh Hamirwasia
ub.com/apache/drill/commits/1.16.0 Thanks, Sorabh On Wed, Apr 10, 2019 at 5:15 PM Abhishek Girish wrote: > FYI - DRILL-7166 <https://issues.apache.org/jira/browse/DRILL-7166> is a > blocker for the release and is being actively worked on by Jyothsna. > > On Mon, Apr 8, 2019 at 3

Re: [DISCUSS] 1.16.0 release

2019-04-08 Thread Sorabh Hamirwasia
are in review and almost ready. Tomorrow, whichever PR is categorized as blocker or must-have for release will only be cherry-picked. Thanks, Sorabh On Thu, Apr 4, 2019 at 4:29 PM Sorabh Hamirwasia wrote: > Hi All, > A gentle reminder about the release cut-off date of *Apr 8

Re: [DISCUSS] 1.16.0 release

2019-04-15 Thread Sorabh Hamirwasia
ed to > 1.17 > > SNAPSHOT only after the release. > > But in reality they belong to 1.17 version. That’s why I though we > > actually closed master for commits for the period of the release before. > > > > Kind regards, > > Arina > > > > > On Apr 11, 2019,

Re: [DISCUSS] 1.16.0 release

2019-04-16 Thread Sorabh Hamirwasia
wrote: > > > On Mon, Apr 15, 2019 at 12:35 PM Sorabh Hamirwasia < > sohami.apa...@gmail.com> wrote: > >> ... >> >> @Ted Dunning - I am not sure if I understood >> correctly but I think the reason master is locked and two active branches >> are not

Re: [ANNOUNCE] New Committer: Jyothsna Donapati

2019-05-09 Thread Sorabh Hamirwasia
Congratulations ! On Thu, May 9, 2019 at 3:45 PM Hanumanth Maduri wrote: > Congratulations Jyothsna!! > > > On May 9, 2019, at 3:06 PM, Gautam Parai wrote: > > > > Congratulations Jyothsna!! > > > > Gautam > > > >> On Thu, May 9, 2019 at 2:59 PM Timothy Farkas wrote: > >> > >> Congrats!! >

Hangout Topics for 04/30/2019

2019-04-30 Thread Sorabh Hamirwasia
Hello Everyone, Does anyone have any topics for today's hangout? Sorry for sending late notification, topics will be accepted on call as well. Hangout will start at 10 AM PST and you can use this link to join: http://meet.google.com/yki-iqdf-tai) Thanks, Sorabh

Re: [VOTE] Apache Drill Release 1.16.0 - RC1

2019-04-23 Thread Sorabh Hamirwasia
Hi Volodymyr, The KEYS file on svn will be updated when a release candidate is approved and all the artifacts are copied to the svn. NOTICE is not updated per release so I won't treat it as blocker. But would be good to add it in the wiki below to ensure from next time onwards it's updated. For

Re: August Apache Drill board report

2019-08-08 Thread Sorabh Hamirwasia
to acquisition one of the > main Drill vendors. > - Activity on the dev and user mailing lists is slightly down compared to > previous periods. > - Four committers were added in the last period. > > ## PMC changes: > > - Currently 24 PMC members. > - No new PMC membe

[jira] [Created] (DRILL-5015) As per documentation, when issuing a list of drillbits in the connection string, we always attempt to connect only to the first one

2016-11-08 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5015: Summary: As per documentation, when issuing a list of drillbits in the connection string, we always attempt to connect only to the first one Key: DRILL-5015 URL: https

[jira] [Created] (DRILL-5415) Improve Fixture Builder to configure client properties and keep collection type properties for server

2017-04-05 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5415: Summary: Improve Fixture Builder to configure client properties and keep collection type properties for server Key: DRILL-5415 URL: https://issues.apache.org/jira/browse

[jira] [Created] (DRILL-5313) C++ client build failure on linux

2017-03-02 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5313: Summary: C++ client build failure on linux Key: DRILL-5313 URL: https://issues.apache.org/jira/browse/DRILL-5313 Project: Apache Drill Issue Type

[jira] [Created] (DRILL-5701) drill.connections.rpc.. metric not behaving correctly

2017-08-02 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5701: Summary: drill.connections.rpc.. metric not behaving correctly Key: DRILL-5701 URL: https://issues.apache.org/jira/browse/DRILL-5701 Project: Apache Drill

[jira] [Created] (DRILL-5704) Improve error message on client side when queries fail with "Failed to create schema tree." when Impersonation is enabled and logins are anonymous

2017-08-03 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5704: Summary: Improve error message on client side when queries fail with "Failed to create schema tree." when Impersonation is enabled and logins are anonymous Key:

[jira] [Created] (DRILL-5721) Query with only root fragment and no non-root fragment hangs when Drillbit to Drillbit Control Connection has network issues

2017-08-14 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5721: Summary: Query with only root fragment and no non-root fragment hangs when Drillbit to Drillbit Control Connection has network issues Key: DRILL-5721 URL: https

[jira] [Created] (DRILL-5722) Query with root and non-root fragments can potentially hang if Control Connection fails due to network issue.

2017-08-14 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5722: Summary: Query with root and non-root fragments can potentially hang if Control Connection fails due to network issue. Key: DRILL-5722 URL: https://issues.apache.org/jira

[jira] [Created] (DRILL-5663) Drillbit fails to start when only keystore path is provided without keystore password.

2017-07-06 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5663: Summary: Drillbit fails to start when only keystore path is provided without keystore password. Key: DRILL-5663 URL: https://issues.apache.org/jira/browse/DRILL-5663

[jira] [Created] (DRILL-5685) Provide a way to set common environment variable between sqlline and Drillbit differently.

2017-07-24 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5685: Summary: Provide a way to set common environment variable between sqlline and Drillbit differently. Key: DRILL-5685 URL: https://issues.apache.org/jira/browse/DRILL-5685

[jira] [Created] (DRILL-5686) Warning for sasl.max_wrapped_size contain incorrect syntax

2017-07-24 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5686: Summary: Warning for sasl.max_wrapped_size contain incorrect syntax Key: DRILL-5686 URL: https://issues.apache.org/jira/browse/DRILL-5686 Project: Apache

[jira] [Created] (DRILL-5682) Apache Drill should support network encryption

2017-07-20 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5682: Summary: Apache Drill should support network encryption Key: DRILL-5682 URL: https://issues.apache.org/jira/browse/DRILL-5682 Project: Apache Drill

[jira] [Created] (DRILL-5643) Provide a way to configure excluded list of protocols and ciphers to be used by WebServer

2017-06-30 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5643: Summary: Provide a way to configure excluded list of protocols and ciphers to be used by WebServer Key: DRILL-5643 URL: https://issues.apache.org/jira/browse/DRILL-5643

[jira] [Created] (DRILL-5664) Enable security for Drill HiveStoragePlugin based on a config parameter

2017-07-06 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5664: Summary: Enable security for Drill HiveStoragePlugin based on a config parameter Key: DRILL-5664 URL: https://issues.apache.org/jira/browse/DRILL-5664

[jira] [Resolved] (DRILL-5685) Provide a way to set common environment variable between sqlline and Drillbit differently.

2017-08-07 Thread Sorabh Hamirwasia (JIRA)
[ https://issues.apache.org/jira/browse/DRILL-5685?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sorabh Hamirwasia resolved DRILL-5685. -- Resolution: Fixed > Provide a way to set common environment variable between sqll

[jira] [Created] (DRILL-5737) Hash Agg uses more than the allocated memory under certain low memory conditions

2017-08-22 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5737: Summary: Hash Agg uses more than the allocated memory under certain low memory conditions Key: DRILL-5737 URL: https://issues.apache.org/jira/browse/DRILL-5737

[jira] [Created] (DRILL-5508) Flow control in Drill RPC layer

2017-05-12 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5508: Summary: Flow control in Drill RPC layer Key: DRILL-5508 URL: https://issues.apache.org/jira/browse/DRILL-5508 Project: Apache Drill Issue Type

[jira] [Created] (DRILL-5501) Improve the negotiation of max_wrapped_size for encryption.

2017-05-10 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5501: Summary: Improve the negotiation of max_wrapped_size for encryption. Key: DRILL-5501 URL: https://issues.apache.org/jira/browse/DRILL-5501 Project: Apache

[jira] [Created] (DRILL-5558) Unexpected state by SendResult is ignored

2017-05-30 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5558: Summary: Unexpected state by SendResult is ignored Key: DRILL-5558 URL: https://issues.apache.org/jira/browse/DRILL-5558 Project: Apache Drill Issue

[jira] [Created] (DRILL-5589) JDBC client crashes after successful authentication if trace logging is enabled.

2017-06-14 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5589: Summary: JDBC client crashes after successful authentication if trace logging is enabled. Key: DRILL-5589 URL: https://issues.apache.org/jira/browse/DRILL-5589

[jira] [Created] (DRILL-5485) Remove WebServer dependency on DrillClient

2017-05-07 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5485: Summary: Remove WebServer dependency on DrillClient Key: DRILL-5485 URL: https://issues.apache.org/jira/browse/DRILL-5485 Project: Apache Drill

[jira] [Created] (DRILL-5568) Include Hadoop dependency jars inside drill-jdbc-all.jar

2017-06-05 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5568: Summary: Include Hadoop dependency jars inside drill-jdbc-all.jar Key: DRILL-5568 URL: https://issues.apache.org/jira/browse/DRILL-5568 Project: Apache Drill

[jira] [Created] (DRILL-5788) java.sql.SQLException: RESOURCE ERROR: Waited for 15000ms, but tasks for 'Fetch parquet metadata' are not complete

2017-09-13 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5788: Summary: java.sql.SQLException: RESOURCE ERROR: Waited for 15000ms, but tasks for 'Fetch parquet metadata' are not complete Key: DRILL-5788 URL: https://issues.apache.org

[jira] [Created] (DRILL-5789) AlreadyClosedSqlException: ResultSet is already closed.

2017-09-13 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5789: Summary: AlreadyClosedSqlException: ResultSet is already closed. Key: DRILL-5789 URL: https://issues.apache.org/jira/browse/DRILL-5789 Project: Apache Drill

[jira] [Created] (DRILL-5882) C++ Client: [Threat Modeling] Drillbit may be spoofed by an attacker and this may lead to data being written to the attacker's target instead of Drillbit

2017-10-16 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5882: Summary: C++ Client: [Threat Modeling] Drillbit may be spoofed by an attacker and this may lead to data being written to the attacker's target instead of Drillbit Key: DRILL-5882

[jira] [Created] (DRILL-5881) Java Client: [Threat Modeling] Drillbit may be spoofed by an attacker and this may lead to data being written to the attacker's target instead of Drillbit

2017-10-16 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5881: Summary: Java Client: [Threat Modeling] Drillbit may be spoofed by an attacker and this may lead to data being written to the attacker's target instead of Drillbit Key: DRILL-5881

[jira] [Created] (DRILL-5820) Add support for libpam4j Pam Authenticator

2017-09-26 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5820: Summary: Add support for libpam4j Pam Authenticator Key: DRILL-5820 URL: https://issues.apache.org/jira/browse/DRILL-5820 Project: Apache Drill

[jira] [Created] (DRILL-5816) Hash function produces skewed results on String values with same leading prefix

2017-09-24 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5816: Summary: Hash function produces skewed results on String values with same leading prefix Key: DRILL-5816 URL: https://issues.apache.org/jira/browse/DRILL-5816

[jira] [Created] (DRILL-5827) Create tests for detecting skew in hash codes generated by Hash Functions

2017-09-29 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5827: Summary: Create tests for detecting skew in hash codes generated by Hash Functions Key: DRILL-5827 URL: https://issues.apache.org/jira/browse/DRILL-5827

[jira] [Resolved] (DRILL-5682) Apache Drill should support network encryption

2017-10-12 Thread Sorabh Hamirwasia (JIRA)
[ https://issues.apache.org/jira/browse/DRILL-5682?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sorabh Hamirwasia resolved DRILL-5682. -- Resolution: Fixed Fix Version/s: 1.10.0 1.11.0

[jira] [Created] (DRILL-5943) Avoid the strong check introduced by DRILL-5582 for PLAIN mechanism

2017-11-07 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5943: Summary: Avoid the strong check introduced by DRILL-5582 for PLAIN mechanism Key: DRILL-5943 URL: https://issues.apache.org/jira/browse/DRILL-5943 Project

[jira] [Created] (DRILL-5897) Support Query Cancellation when WebConnection is closed on client side both for authenticated and unauthenticated user's

2017-10-21 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-5897: Summary: Support Query Cancellation when WebConnection is closed on client side both for authenticated and unauthenticated user's Key: DRILL-5897 URL: https

[jira] [Resolved] (DRILL-6440) Fix ignored unit tests in unnest

2018-05-23 Thread Sorabh Hamirwasia (JIRA)
[ https://issues.apache.org/jira/browse/DRILL-6440?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sorabh Hamirwasia resolved DRILL-6440. -- Resolution: Fixed Reviewer: Sorabh Hamirwasia Fix Version/s: 1.14.0

[jira] [Resolved] (DRILL-6419) E2E Integration test for Lateral

2018-05-23 Thread Sorabh Hamirwasia (JIRA)
[ https://issues.apache.org/jira/browse/DRILL-6419?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sorabh Hamirwasia resolved DRILL-6419. -- Resolution: Fixed Reviewer: Parth Chandra Merged with commit id

[jira] [Created] (DRILL-6446) Support for EMIT outcome in TopN

2018-05-25 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-6446: Summary: Support for EMIT outcome in TopN Key: DRILL-6446 URL: https://issues.apache.org/jira/browse/DRILL-6446 Project: Apache Drill Issue Type

[jira] [Created] (DRILL-6445) Fix existing test cases in TestScripts.java and add new test case for DRILLBIT_CONTEXT variable

2018-05-24 Thread Sorabh Hamirwasia (JIRA)
Sorabh Hamirwasia created DRILL-6445: Summary: Fix existing test cases in TestScripts.java and add new test case for DRILLBIT_CONTEXT variable Key: DRILL-6445 URL: https://issues.apache.org/jira/browse/DRILL

  1   2   >