RE: Create/delete storage via Java API instead of REST API

2016-12-13 Thread IChan
Thanks Chunhui for the information. I just get a chance to revisit this issue. I still have hard time to get this to work. I can't find a way to get the drillbit context object from my remote drill cluster. I tried to create a new Drillbit object with zookeeper cluster info as well as the cluste

Apache Drill Hangout minutes - 2016-12-13

2016-12-13 Thread Parth Chandra
Attendees: Arina, Boaz, Chunhui, Gautam, Karthikeyan, Khurram, Padma, Parth, Roman, Paul, Serhiy, Sonny, Vitalii. Serhiy - JIRA status workflow suggestion: admin can create workflows. Needs to be a Apache infrastructure person to change this and we don't know how easy it will be. Karthik - Netty

hangout starting in a bit

2016-12-13 Thread Parth Chandra

Re: hangout starting in a bit

2016-12-13 Thread Parth Chandra
hangout is on: https://plus.google.com/hangouts/_/event/ci4rdiju8bv04a64efj5fedd0lc On Tue, Dec 13, 2016 at 10:02 AM, Khurram Faraaz wrote: > Can we please have the link to the hangout ? > > On Tue, Dec 13, 2016 at 11:32 PM, Parth Chandra wrote: > > > > > >

Re: hangout starting in a bit

2016-12-13 Thread Khurram Faraaz
Can we please have the link to the hangout ? On Tue, Dec 13, 2016 at 11:32 PM, Parth Chandra wrote: > >

Re: nested array flatten and then group by - Apache drill

2016-12-13 Thread Kathleen Li
Dechang provided method by using drill flatten function with mongdb plugin works fine in my test env by using the json document Yousuf provided. Details as below: I am using drill 1.8 and mongodb 3.2.9 > db.test.find() { "_id" : ObjectId("584f3bad7161b4e2b9fa0a7d"), "twitter_entities" : { "has

Fwd: Re: nested array flatten and then group by - Apache drill

2016-12-13 Thread yousuf
Hi Dechang, The query didn't work with mongodb. use mongo.test; select t1.c1.text, count(t1.c1.text) from (select flatten(tbl.twitter_entities.hashtags) as c1 from test as tbl) t1 group by t1.c1.text; +-+-+ | EXPR$0 | EXPR$1 | +-+-+ +-+-+ K