UDF returning boolean?

2016-08-11 Thread Charles Givre
Hello all, Is it possible for a UDF to return a boolean value, or are we stuck with using the BitHolder and returning 0/1? Thanks, — C

NPE On UDF in Directory Query

2017-02-01 Thread Charles Givre
Hello everyone, I’m working on a UDF (https://github.com/cgivre/drill-geoip-functions ) that does a bunch of IPGEO stuff. So far it works relatively well, but I encountered a Null Pointer Exception that I’m not quite sure how to resolve. If I

Re: Drill 1.10 features with doc impact

2017-01-22 Thread Charles Givre
Hi Bridget, I had this one as well from Drill 1.9 that I don’t think made it into the documentation: https://issues.apache.org/jira/browse/DRILL-5031 Here is some documentation for the feature: https://gist.github.com/cgivre/47f07a06d44df2af625fc6848407ae7c

Re: Dynamic UDF Registration

2017-01-30 Thread Charles Givre
zk=local> select getCityName('A') from sys.version; > IOException encountered: Could not read MaxMind DBIOException encountered: > Could not read MaxMind DB+--+ > | EXPR$0 | > +--+ > | Unknown | > +--+ > > > Kind regards > Arin

Re: Data types

2017-01-26 Thread Charles Givre
} > > The above is not perfect (the last record added might be much larger than the > others, causing the corresponding vector to grow larger than 16 MB, but the > occasional large vector should be OK.) > > Thanks, > > - Paul > > On Jan 26, 2017, at 5:31 PM, Charl

Re: Data types

2017-01-27 Thread Charles Givre
buffer = fragmentContext.replace(buffer, 8192); > > Again, I’ve not used these method myself, but they seem they might do the > trick. > > - Paul > >> On Jan 26, 2017, at 9:51 PM, Charles Givre <cgi...@gmail.com> wrote: >> >> Thanks! I’m hoping to su

Re: Data types

2017-01-27 Thread Charles Givre
have to be in your code to make various Drill subsystems happy. > > That said, perhaps you can use your own Git Wiki to document what you’ve > learned so that we capture that for the next plugin developer. > > Thanks, > > - Paul > >> On Jan 27, 2017, at 8:42 AM, C

Re: Data types

2017-01-26 Thread Charles Givre
xt lines up to, say, 1K in size. This means that > each record batch your reader produces must be of size less than 16 MB / 1K / > row = 1600 rows (rather than the usual 64K.) > > Once the data is in the Varchar column, the rest of Drill should “just work” > on that data. > > - Pa

Data types

2017-01-26 Thread Charles Givre
I’m working on a plugin to read log files and the data has some long strings. Is there a data type that can hold strings longer than 256 characters? Thanks, — Charles

Dynamic UDF Registration

2017-01-27 Thread Charles Givre
I’m having some trouble registering a UDF I wrote. The UDF was working in previous versions of Drill and now Drill doesn’t seem to recognize it. When I try to register it I get the following error: : jdbc:drill:zk=local> create function using jar 'drill-geoip-functions-1.0.jar';

Re: Dynamic UDF Registration

2017-01-28 Thread Charles Givre
le.conf > > > Kind regards > Arina > > On Fri, Jan 27, 2017 at 10:50 PM, Charles Givre <cgi...@gmail.com> wrote: > >> I’m having some trouble registering a UDF I wrote. The UDF was working in >> previous versions of Drill and now Drill doesn’t s

Re: [HANGOUT] Topics for 2017-02-21

2017-02-20 Thread Charles Givre
I was also wondering what is the status of the ElasticSearch plugin? Thanks, — C > On Feb 20, 2017, at 14:49, Shankar Mane wrote: > > any plans to support Hive 2.x line? > > On 21-Feb-2017 12:40 AM, "Paul Rogers" wrote: > >> Hi All, >> >> Our

Aggregate UDF Question

2017-02-13 Thread Charles Givre
Devs, I’ve been working on an aggregate UDF and I need to include a string in the workspace. Or rather, I need a string to carry over from one iteration to the next. I tried doing this and discovered that any variable length holder is not supported in the Workspace. The string is not the

Re: Excessive Logging Messages

2017-02-27 Thread Charles Givre
ses in package org.apache.drill. > > btw: in my previous email, I used cap "INFO", "WARN". Please use > low-case ones. I tried the above approach, and it seemed to work. > > > > > On Sun, Feb 26, 2017 at 8:40 PM, Charles Givre <cgi...@gmail.com&g

Re: Excessive Logging Messages

2017-02-26 Thread Charles Givre
--> Change INFO > to either WARN or ERROR > > > > > > On Sun, Feb 26, 2017 at 7:17 PM, Charles Givre <cgi...@gmail.com> wrote: >> Hello all, >> I was doing some unrelated work and somehow made it so that every time I >> execute a query in Dr

Excessive Logging Messages

2017-02-26 Thread Charles Givre
Hello all, I was doing some unrelated work and somehow made it so that every time I execute a query in Drill from the command line, I get all these INFO messages. Could someone please explain how to disable these? Thanks, — Charles : jdbc:drill:zk=local> SELECT `Asking - Sold Delta Percent`

Drill UDF Listing

2016-08-25 Thread Charles Givre
Hello everyone, I’ve decided to create a list of Drill UDFs that are out there. I’m not hosting anything, just posting links to UDFs that I’ve verified actually work. Here is the link: http://thedataist.com/drill-udfs/ and if anyone has others, please send me the info and I’ll put it up.

Re: Drill UDF Listing

2016-08-25 Thread Charles Givre
s/simple-drill-functions > > > > On Thu, Aug 25, 2016 at 9:48 AM, Charles Givre <cgi...@gmail.com> wrote: > >> Hello everyone, >> I’ve decided to create a list of Drill UDFs that are out there. I’m not >> hosting anything, just posting links to UDFs that I’ve verified a

Re: Time for a 1.9 Release?

2016-10-29 Thread Charles Givre
+1 on a release and +1 on DRILL-3423 - Add New HTTPD format plugin, but I may be biased on that one ;-) > On Oct 29, 2016, at 14:27, Laurent Goujon wrote: > > Hi, > > I have several JIRAs regarding metadata I worked on recently and would like > to see resolved before 1.9:

Re: [HANGOUT] Topics for 11/1/16

2016-11-01 Thread Charles Givre
I think DRILL-3423 HTTPD parser should be added as well. I'm sorry I'm traveling at the moment and won't be able to join the hangout. Sent from my iPhone > On Nov 1, 2016, at 12:40, Zelaine Fong wrote: > > Regarding [1], shouldn't https://github.com/apache/drill/pull/639

Updated Documentation, DRILL-3423

2016-11-03 Thread Charles Givre
Devs, What is the process for submitting updates to the Drill documentation for this new feature? (HTTPD Log Parser) I'd be happy to write it up. -- C

UDF Question

2016-12-08 Thread Charles Givre
Hello Drill Developers, I have a question for the community. I’m working on a UDF which depends on a static datafile—specifically the MaxMindDB for Geolocating IP addresses. I have a UDF that takes an IP and queries the MaxMindDB for the Geo information, but the UDF required me to hard code

Re: Http Plugin

2016-12-12 Thread Charles Givre
Maybe this one? https://github.com/kevinlynx/drill-storage-http > On Dec 12, 2016, at 18:16, Jim Scott wrote: > > Can you elaborate on what you mean by http plugin? > > On Mon, Dec 12, 2016 at 5:08 PM, Remzi Düzağaç

Format Plugin Question

2017-03-26 Thread Charles Givre
Hello all, I’m working on a format plugin for a filetype that will have a mix of Strings and nested fields. Basically something like this: field1: String field2: Array etc… My preference is to keep the nested data in the nested format rather than de-nest it, but I suppose that is always an

Mock Data Source Question

2017-03-31 Thread Charles Givre
Hello there, Is there any documentation for the new mock storage engine? It looks really useful. Thanks, - Charles

Re: [RESULT] [VOTE] Release Apache Drill 1.11.0 rc0

2017-07-28 Thread Charles Givre
Great work everyone! > On Jul 28, 2017, at 09:49, Arina Yelchiyeva > wrote: > > The vote passes. Thanks to everyone who has tested the release candidate > and given their comments and votes. Final tally: > > 3x +1 (binding): Parth, Jinfeng, Aman > > 6x +1

Re: MySQL Storage Plugin Error

2017-08-02 Thread Charles Givre
All, I think we should open a JIRA about this. Basically, the error messages when you add or modify a storage plugin make it difficult to locate the problem. I encountered the same issue recently when trying to connect to MySQL and it turned out the error was that the user account that I was

Re: Question on building drill & developing a new storage plugin

2017-08-03 Thread Charles Givre
Hi Bob, You can actually build your storage plugin outside of drill, package it using maven, then copy the resultant JAR files into the /jars/3rdparty folder. Here are some examples… https://github.com/bizreach/drill-ltsv-plugin

Re: [DISCUSS] Drill 1.11.0 release

2017-07-11 Thread Charles Givre
Hi Arina, I can’t make the hangout, but we have a few options. Basically, since all the hashing algorithms have no export restrictions, we could: 1. Remove the AES encrypt/decrypt until I can figure out what we have to do (and do it) 2. I can try to research it today or tomorrow to figure

Re: Dependency Question

2017-07-21 Thread Charles Givre
> > > On Jul 21, 2017, at 9:30 AM, Charles Givre <cgi...@gmail.com> wrote: > > > > I have two collections of functions which I'd like to submit for the next > > version of Drill and they have dependencies on apache commons libraries. > > The first is a collection of

Dependency Question

2017-07-21 Thread Charles Givre
Hello all, I'm interested in submitting some PRs for additional UDFs and some other functionality and I'm curious as to the project's attitude to adding additional dependencies to Drill. (Within reason) Is it "frowned upon" to add dependencies? Does it matter? Thanks, - C

Re: Dependency Question

2017-07-21 Thread Charles Givre
se of the core engine not ready as > yet for some of those changes. > > Can you share more details about what are the dependencies? > > ~ Kunal > > -Original Message- > From: Charles Givre [mailto:cgi...@apache.org] > Sent: Friday, July 21, 2017 8:18 AM > To: dev &l

Problems building Drill

2017-07-02 Thread Charles Givre
Hello all, I’m having a small problem building Drill from source. I keep getting the errors below when I try to run tests. It builds fine when I skip the tests. I’ve googled the errors and haven’t really found anything helpful. I’m not an expert on Maven so any suggestions would be

Continuous Integration Tests Failing

2017-08-07 Thread Charles Givre
Hello everyone, I wanted to ask if there is something wrong with the Travis-CI test? It looks as if every PR is failing since we pushed out Drill 1.11. Could someone please take a look? Thanks, — C

Re: Continuous Integration Tests Failing

2017-08-07 Thread Charles Givre
s drill version to > 1.12.0-SNAPSHOT, has CI failure, while the two commits before that commit > were shown to have successful CI test. Not clear why update the version > number would cause such difference. > > On Mon, Aug 7, 2017 at 8:51 AM, Charles Givre <cgi...@gmail.com> wrot

Re: [DISCUSS] Drill 1.11.0 release

2017-06-26 Thread Charles Givre
Hi Arina, I have some UDFs which I’d love to include in version 1.11 which are available (and documented) here: https://github.com/cgivre/drill-crypto-functions and https://github.com/cgivre/drill-network-functions

Re: Issues categorization suggestion

2017-05-25 Thread Charles Givre
+1 Sent from my iPhone > On May 25, 2017, at 09:34, Muhammad Gelbana wrote: > > Hi, > > I suggest to categorize issues according the level of expertise needed to > solve each one. This will encourage want-to-help\learn but > not-so-experienced-with-drill developers to

Re: [ANNOUNCE] New Committer: Paul Rogers

2017-05-19 Thread Charles Givre
Congrats Paul!! On Fri, May 19, 2017 at 11:22 AM, Aman Sinha wrote: > The Project Management Committee (PMC) for Apache Drill has invited Paul > Rogers to become a committer, and we are pleased to announce that he has > accepted. > > Paul has a long list of contributions

Re: Drill Summit/Conference Proposal

2017-06-17 Thread Charles Givre
to talks about other Apache >> projects in the larger conference, and connect with Apache members. >>>> >>>> Also, the conference is professionally organized, at a large hotel with >> good facilities. >>>> >>>> Unfortunately ApacheCon

Re: Drill Summit/Conference Proposal

2017-06-14 Thread Charles Givre
tform is > compelling and -- at least in my circles -- not widely known. It could > be an event with a a primary central track but three separate > specializations that have a couple intraday time pockets. > > On Wed, Jun 14, 2017 at 8:55 AM, Charles Givre <cgi...@apache.org> wrote: &

Drill Summit/Conference Proposal

2017-06-14 Thread Charles Givre
Hello fellow Drill users and developers, I've been involved with the Drill community for some time, and I was thinking that it might be time to start exploring the idea of a Drill Summit or Conference. If you're interested, please send me a note and I'll start having some conversations about

Re: Drill Summit/Conference Proposal

2017-06-18 Thread Charles Givre
the board posted as to my progress. Please don’t stop the conversation, I’d really like to everyone’s input and ideas. Hopefully this goes somewhere! — C > On Jun 18, 2017, at 10:55, Ted Dunning <ted.dunn...@gmail.com> wrote: > > On Sat, Jun 17, 2017 at 11:03 PM, Charles Givre &l

Re: Drill 2.0 (design) hackathon

2017-09-20 Thread Charles Givre
> > -Aman > > On Fri, Sep 15, 2017 at 2:54 PM, Charles Givre <cgi...@gmail.com> wrote: > > > Hi Pritesh, > > What time do you think you’d want me to present? Also, should I make > some > > slides? > > Best, > > — C > > > > > On Se

Re: Drill 2.0 (design) hackathon

2017-09-15 Thread Charles Givre
ntroduction – Ted Dunning, Parth Chandra and Aman Sinha > o Community Contributions – Anil Kumar, John Omernik, Charles Givre and Ted > Dunning > o Two tracks for technical design discussions – some topics have initial > thoughts for the topics and some will have open brainstorming di

Re: Newbie: Help debugging Drill

2017-10-02 Thread Charles Givre
HI Matthew, Can you describe the data you are querying and the query you are trying to execute? — C > On Oct 2, 2017, at 17:19, Matthew Mucker wrote: > > I became a new Drill user last week only to discover that Drill would crash > with an IndexOutOfBounds exception on

Re: [DISCUSS] Drill 1.12.0 release

2017-10-09 Thread Charles Givre
Hi Arina, I’d like to include Drill-5834, Adding network functions. https://github.com/apache/drill/pull/971 Hopefully I didn’t violate too many coding standards this time ;-) —C > On Oct 9, 2017, at 9:09 AM, Arina Yelchiyeva

Hex in Drill

2017-09-06 Thread Charles Givre
All, I'm working on a format plugin in which the data contains a lot of hexadecimal numbers. I didn't see it in the docs, but does Drill have any hex/dec/octal etc conversion functions? Also, I realize this depends on the length of the integer, (most are unsigned 4 or 8 bit ints), but what would

Re: Drill 2.0 (design) hackathon

2017-08-24 Thread Charles Givre
Hi Aman, Would you consider doing some sort of livestream so that those of us who couldn’t be there in person can participate? Thanks, — C > On Aug 24, 2017, at 11:39, Aman Sinha wrote: > > Drill Developers, > > In order to kick-start the Drill 2.0 release discussions,

NodeJS Driver for Drill

2017-08-25 Thread Charles Givre
All, I thought I’d share with the community, but I just finished a NodeJS driver for Drill. It’s available here: https://github.com/cgivre/drill-nodejs or via npm install drill-client. Keep in mind, I know nothing about NodeJS, but it largely follows the functionality of PyDrill. I’ll

Commons-logging

2017-10-11 Thread Charles Givre
Hello Drill Devs, I am working on submitting some UDFs, and in so doing discovered that one UDF has a dependency (commons-validator) which itself has a dependency of commons-logging which is banned. Does anyone know why commons-logging is banned? I’m not a maven expert but is it possible to

Re: Date Conversion Question

2017-10-18 Thread Charles Givre
s of data you and I likely have to work with :-) that >> it'd be great if there was direct support for it. If there is, I also >> missed it and would also be most appreciative of which incantations to >> use to take advantage of it. >> >> On Wed, Oct 18, 2017

Date Conversion Question

2017-10-18 Thread Charles Givre
Hello Drillers, I have a silly question which I’m a little stuck with. I have some data in CSV format with dates in the following format: 2017-08-10T09:12:26.000Z. I’m trying to convert this into a date time data field so that I have both the date and the hours, however I keep running into

Re: describe query support? (catalog metadata, etc)

2017-10-18 Thread Charles Givre
I’d like to second Alfredo’s request. I’ve been trying to get Drill to work with some open source visualization tools such as SqlPad and Metabase and the issue I keep running into is that Drill doesn’t have a convenient way to describe how it interprets flat files. This is really frustrating

[VOTE] Release Apache Drill 1.12.0 - rc1

2017-12-13 Thread Charles Givre
* Built source tarball from [2] without unit tests on my Mac * Failed unit tests, but I think this is an issue with my Mac, not Drill * Ran Drill in embedded mode * Checked syntax highlighting in the plugin config widow, added and modified storage plugin. Error checking worked as expected *

DRILL-4364 Image Metadata Format Plugin

2017-11-07 Thread Charles Givre
Hello all, I’d really love to see this PR make it into the next version of Drill. Is there anything that I could do to assist? Thanks, - C

Re: [DISCUSS] Drill 1.12.0 release

2017-11-09 Thread Charles Givre
On Thu, Nov 9, 2017 at 6:03 PM, Charles Givre <cgi...@gmail.com> wrote: > >> Hi Arina, >> Can we include DRILL-4091 Support for additional GIS operations in version >> 1.12? In general the code looked pretty good. There was a unit test >> missing which the develope

Re: [DISCUSS] Drill 1.12.0 release

2017-11-09 Thread Charles Givre
allocator strictness for "managed" >>>> operators >>>>> #960, DRILL-5815: Option to set query memory as percent of total >>>>> >>>>> The following is needed to resolve issues with HBase support in empty >>>> batches: >>&

Errors Building Drill

2017-11-09 Thread Charles Givre
Hello all, I’m getting the following errors when I try to build Drill from source with the tests. If I skip the mongodb test it builds fine, but I’m not sure what could be causing this. Any suggestions? — C 2017-11-09T15:13:25.047-0500 I NETWORK [conn2] end connection 127.0.0.1:58580 (1

Re: gitbox?

2017-10-31 Thread Charles Givre
I’d vote +1 for moving to gitbox. — C > On Oct 31, 2017, at 13:54, Parth Chandra wrote: > > Bumping this thread up. > > Vlad brought this up in the hangout today and it sounds like we would like > to move to Gitbox. Thanks Vlad for the patient explanations! > > Committers,

Re: [GitHub] drill issue #971: Drill-5834 Add Networking Functions

2017-10-30 Thread Charles Givre
I *think* I just did this correctly, but let me know if I didn’t. —C > On Oct 30, 2017, at 12:54, paul-rogers wrote: > > Github user paul-rogers commented on the issue: > >https://github.com/apache/drill/pull/971 > >Please squash commits. > > > ---

Re: [ANNOUNCE] New Committer: Timothy Farkas

2018-05-25 Thread Charles Givre
Congrats Tim!! Well deserved! > On May 25, 2018, at 16:16, Gautam Parai wrote: > > Congratulations Tim! > > > Gautam > > > From: Sorabh Hamirwasia > Sent: Friday, May 25, 2018 12:44:47 PM > To: dev@drill.apache.org >

Re: [DISCUSS] 1.14.0 release

2018-06-12 Thread Charles Givre
I’d like to complete DRILL-6104 and get that in. —C > On Jun 12, 2018, at 20:16, Boaz Ben-Zvi wrote: > > Hello Drillers, > Nearly three months have passed since the 1.13.0 release, and it is time to > start planning for the 1.14.0 ; I volunteer to manage the new release. > If there is any

Re: [ANNOUNCE] New Committer: Padma Penumarthy

2018-06-15 Thread Charles Givre
Congrats Padma!! > On Jun 15, 2018, at 13:57, Bridget Bevens wrote: > > Congratulations, Padma!!!  > > > From: Prasad Nagaraj Subramanya > Sent: Friday, June 15, 2018 10:32:04 AM > To: dev@drill.apache.org > Subject: Re: [ANNOUNCE] New Committer: Padma

Web site issues

2018-05-30 Thread Charles Givre
All, The website docs seem to be having problems today. I can access some pages, but others are getting a Not Found error. — C

DRILL-6104 Failing Travis CI

2018-06-03 Thread Charles Givre
All, I just got DRILL-6104 ready to commit, however I’m not really a maven expert and it seems to be failing a RAT check on files which I didn’t modify in the PR. Any suggestions? TIA, — C

Re: DRILL-6519 Tavis CI timing out

2018-06-29 Thread Charles Givre
e a look. > Also I have created Jira ticket [1]. > > [1] https://issues.apache.org/jira/browse/DRILL-6559 > > Kind regards > Vitalii > > >> On Fri, Jun 29, 2018 at 5:43 PM Charles Givre wrote: >> >> Hi Arina, >> Could you or someone take a loo

Tests failing

2018-06-27 Thread Charles Givre
Hello all, I just submitted a PR for some phonetic functions and I can’t get the unit tests to run on my local machine by themselves. When I submit the PR, the unit tests pass, but if I try to execute them with the following command. Any suggestions? mvn -Dtest=TestPhoneticFunctions test

PRs for Drill 1.14

2018-06-22 Thread Charles Givre
Hi Boaz, I just submitted a PR which should be relatively easy to review, but I’d like to get it into 1.14. It is DRILL-6519. Thanks, — C

Re: PRs for Drill 1.14

2018-06-23 Thread Charles Givre
ot;, it should capture the PR. I've added it manually > for now. > > Kunal > On 6/22/2018 9:35:56 AM, Charles Givre wrote: > Hi Boaz, > I just submitted a PR which should be relatively easy to review, but I’d like > to get it into 1.14. It is DRILL-6519. > Thanks, > — C

Re: Display column data type without code

2018-04-28 Thread Charles Givre
I’d like to weigh in here, but this would be EXTREMELY useful. When I was trying to write connectors to enable various BI tools to connect to Drill, such as SQLPad and Metabase, the inability to get information about how drill interprets the data was really difficult to get around. Just me

Re: describe query support? (catalog metadata, etc)

2017-10-19 Thread Charles Givre
Hi Alfredo, When I was trying to get Drill to work with various BI tools, all I really needed was a list of columns. Data types would be a big bonus, but Drill interprets CSV data as plain text anyway. It would be really useful for other file types where Drill does infer data types. — C

Re: PCAP Issues

2018-01-05 Thread Charles Givre
, at 17:33, Ted Dunning <ted.dunn...@gmail.com> wrote: > > Don't think that will work. > > I tried what seemed obvious and got a NPE. Joys of Drill. > > > > On Wed, Jan 3, 2018 at 1:31 PM, Charles Givre <cgi...@gmail.com> wrote: > >> This i

Re: PCAP Issues

2018-01-05 Thread Charles Givre
f) > > On Fri, Jan 5, 2018 at 7:52 AM, Charles Givre <cgi...@gmail.com> wrote: > >> Ted, >> I’m wondering if we’ve uncovered an unsupported, undocumented feature in >> Drill with respect to the BitWriter. I made the following changes: >> >>

Proposed Slack Channel for Drill Users & Devs

2018-01-04 Thread Charles Givre
Hello everyone, I’m curious, if I were to start a Slack channel for Drill users and Devs, would there be interest? — C

Re: Working on upgrade Drill Calcite version

2018-01-19 Thread Charles Givre
Great work! > On Jan 19, 2018, at 05:43, Arina Ielchiieva wrote: > > I am happy to announce that Apache Drill has rebased on Calcite 1.15. All > information can be found in DRILL-3993 and in Google Doc [1]. > Currently changes are in master and are intended to be part of Drill

Error in Drill 1.13

2018-02-02 Thread Charles Givre
Hello all, I’m getting ready to submit a PR for a log format plugin for Drill and after I rebased Drill, I’m now getting the following error: java.lang.IncompatibleClassChangeError: Found interface org.apache.drill.exec.ops.FragmentContext, but class was expected at

Re: [ANNOUNCE] New PMC member: Paul Rogers

2018-01-31 Thread Charles Givre
Congrats Paul! Very well deserved! > On Jan 30, 2018, at 16:50, Aman Sinha wrote: > > I am pleased to announce that Drill PMC invited Paul Rogers to the PMC and > he has accepted the invitation. > > Congratulations Paul and thanks for your contributions ! > > -Aman >

Re: Error in Drill 1.13

2018-02-04 Thread Charles Givre
hat implements it is now > FragmentContextImpl > > Thanks, > Tim > > ____ > From: Charles Givre <cgi...@gmail.com> > Sent: Friday, February 2, 2018 11:47:12 AM > To: dev@drill.apache.org > Subject: Error in Drill 1.13 > > Hel

Re: Test cases for Drill-6104: Added Logfile Reader

2018-02-07 Thread Charles Givre
arch+LogStash+Kibana) to > process Drill logs, but that was back in 2015. If we can get something like > that into a storage plugin for Drill, that would probably go much farther. I > could share what I did back then and figure out a way to use that approach > and libraries to leverage th

Re: Test cases for Drill-6104: Added Logfile Reader

2018-02-07 Thread Charles Givre
drillbit_hostname.log to consume. It would be > interesting to see how multiline log entries are handled. > > Logstash does an excellent job IMO, but that's more for parsing. > > -Original Message- > From: Charles Givre [mailto:cgi...@gmail.com] > Sent: Wedn

Re: Test cases for Drill-6104: Added Logfile Reader

2018-02-08 Thread Charles Givre
it better. > On Feb 8, 2018, at 01:00, Ted Dunning <ted.dunn...@gmail.com> wrote: > > Awesome. > > I personally think that the only practical solution for multiline logging > is mandatory sentencing guidelines at the federal level. > > > > On Wed, Feb 7,

Test cases for Drill-6104: Added Logfile Reader

2018-02-07 Thread Charles Givre
Hello all, I submitted this PR for a logfile parser for Drill (https://github.com/apache/drill/pull/1114 ) . I need to write unit tests for it, however I really have no idea how to do so. Could someone point me to an example or something so that

Re: [DISCUSS] 1.13.0 release

2018-02-23 Thread Charles Givre
I agree and I’ll try to get the log file PR done for this release. Sent from my iPhone > On Feb 23, 2018, at 00:14, Parth Chandra wrote: > > Bit of a tepid response from dev; but Aman's approval is all the > encouragement I need to roll out a release :) > > Thoughts on

Re: PCAP Issues

2018-01-02 Thread Charles Givre
well. > > tcp_sequence is already there. Copy that and modify with a different offset > for the ack number. > > And then do the same for flags. > > I will have a test patch sometime this week, I think. We can compare gists > and such. > > > From: Charles Givre <c

Re: PCAP Issues

2018-01-03 Thread Charles Givre
rib/function/IsPrivateIP.java> > On Jan 3, 2018, at 16:09, Ted Dunning <ted.dunn...@gmail.com> wrote: > > On Wed, Jan 3, 2018 at 12:17 PM, Charles Givre <cgi...@gmail.com> wrote: > >> HI Ted, >> This is really looking amazing. Thank you so much for working o

PCAP Issues

2018-01-01 Thread Charles Givre
Hello all, I was playing with the PCAP functionality in Drill and I wanted to add the TCP flags to the data that Drill is returning. I was also interested in adding the TCP Sequence and Ack numbers as well. I noticed that the code as written currently has a function in Packet.java which

Re: PCAP Issues

2018-01-03 Thread Charles Givre
t;>> >>> *| *7738739733723725373 * | *1611798224 * | *219 * | * >>> NS|CWR|URG|ACK|RST|SYN * |* >>> >>> *| *6346604732028469374 * | *1611798224 * | *106 * | *CWR|ECE >>> (ECN capable)|ACK|RST* |* >&g

Re: [VOTE] Apache Drill release 1.14.0 - RC3

2018-08-01 Thread Charles Givre
- Downloaded and built drill from source - All tests passed - Ran various queries in sqlline and webUI +1 LGTM (non-binding) > On Aug 1, 2018, at 11:20, Vitalii Diravka wrote: > > - Verified the signatures for archives from [2]. > - Downloaded Drill tarball from [2]. Launched it in distributed

Re: [VOTE] Apache Drill release 1.14.0 - RC1

2018-07-30 Thread Charles Givre
I attempted to build from source and got the following errors: Results : Failed tests: TestConvertCountToDirectScan.ensureCorrectCountWithMissingStatistics:153->PlanTestBase.testPlanMatchingPatterns:84->PlanTestBase.testPlanMatchingPatterns:103 Found unwanted pattern in plan:

Re: July Apache Drill board report

2018-07-31 Thread Charles Givre
Hello Arina, Would you want to put something about the Phonetic and String Distance enhancements as well for Drill 1.14? > On Jul 31, 2018, at 07:43, Arina Ielchiieva wrote: > > Hello all, > > please take a look at the draft board report for this quarter and let me > know if you have any

Re: moving some UDFs into new contrib/udfs module

2018-07-26 Thread Charles Givre
Hi Arina, This sounds good. I have other UDFs that I’d like to contribute for future releases and I’ll include them in the contrib/ folder. > On Jul 26, 2018, at 10:45, Arina Ielchiieva wrote: > > Hi all, > > as has been discussed on the latest Drill Hangout, there is an initiative > to

Re: [ANNOUNCE] Apache Drill Release 1.14.0

2018-08-06 Thread Charles Givre
Thanks Boaz and great work everyone! Sent from my iPhone > On Aug 5, 2018, at 21:52, Abhishek Girish wrote: > > Congratulations, everyone! And Boaz, thanks so much for coordinating the > release. > > Folks, please try out 1.14 - it's our best release yet! > >> On Sat, Aug 4, 2018 at 11:35 PM

Re: Drill + Flink

2018-08-09 Thread Charles Givre
queriable state? If not, can you describe a use case? > > Thank you, > > Vlad > > On 2018/08/08 14:45:50, Charles Givre wrote: >> Hello all, >> Has there been any discussion of creating a storage plugin for Drill to be >> able to query Apache Flink? >> —C

Drill + Flink

2018-08-08 Thread Charles Givre
Hello all, Has there been any discussion of creating a storage plugin for Drill to be able to query Apache Flink? —C

Re: [DISCUSSION] Does schema-free really need

2018-08-15 Thread Charles Givre
I like where Ted is going with this. I do also like Paul’s idea of giving Drill hints as to the schema. — C > On Aug 15, 2018, at 20:34, Ted Dunning wrote: > > This is a bold statement. > > And there are variants of it that could give users nearly the same > experience that we have now.

Re: [DISCUSSION] current project state

2018-08-13 Thread Charles Givre
I’d like to weigh in here as well. As a long time user of Drill, I really would like to see more people using it and I think there are a few key aspects that could really help on that front. The first of which is the Arrow integration. I’m not enough of a software engineer to understand all

Re: Interesting Errors

2018-08-07 Thread Charles Givre
completely > misunderstanding something, he will also fail if he attempts to use that > character (in place of ".") in programming languages (Java, C, ..). > > Regards, > Pradeeban. > >> On Tue, Aug 7, 2018 at 10:02 AM, Charles Givre wrote: >> >> Hello

Interesting Errors

2018-08-07 Thread Charles Givre
Hello Drill Developers, I wanted to share an interesting development that happened yesterday. I was teaching a class at BlackHat, and we have a worksheet that includes a Drill demonstration using PyDrill. Basically the students are asked to execute a query in Drill using PyDrill then

Re: [DISCUSS] Deprecation policy in Drill

2018-08-27 Thread Charles Givre
FWIW, since we seem to have a habit of leaving deprecated items hang around in Drill for some time, I would be in favor of having Drill throw warnings in the next version for use of deprecated items (not just options) and then removing them in version n+2. — C > On Aug 27, 2018, at 07:01,

Re: "Crude-but-effective" Arrow integration

2018-08-20 Thread Charles Givre
Hi Paul, This is a very interesting approach. i really like the concept in that it sounds like we could prove the value of the Arrow integration without “major surgery” to Drill. If it proves to be valuable we could proceed with deeper integration, or if we determine that it is not

  1   2   3   4   5   6   7   8   >