Re: Implementing Hive query in Solr

2014-06-15 Thread Vivekanand Ittigi
Erick > > On Thu, Jun 12, 2014 at 7:12 AM, Vivekanand Ittigi > wrote: > > Hi, > > > > Can anyone please look into this issue. I want to implement this query in > > solr. > > > > Thanks, > > Vivek > > > > -- Forwarded message ---

Re: Implementing Hive query in Solr

2014-06-12 Thread Joel Bernstein
Yeah, solr-jdbc does look interesting. Has an Apache license as well. Joel Bernstein Search Engineer at Heliosearch On Thu, Jun 12, 2014 at 1:18 PM, Mikhail Khludnev < mkhlud...@griddynamics.com> wrote: > Hello, > > I've found https://github.com/kawasima/solr-jdbc recently. Haven't checked > it

Re: Implementing Hive query in Solr

2014-06-12 Thread Mikhail Khludnev
Hello, I've found https://github.com/kawasima/solr-jdbc recently. Haven't checked it so far, but the idea is fairly cool. I wonder if it can be relevant to your challenge. On Thu, Jun 12, 2014 at 9:38 AM, Vivekanand Ittigi wrote: > Hi, > > My requirements is to execute this query(hive) in solr

Re: Implementing Hive query in Solr

2014-06-12 Thread Joel Bernstein
t 7:12 AM, Vivekanand Ittigi > wrote: > > Hi, > > > > Can anyone please look into this issue. I want to implement this query in > > solr. > > > > Thanks, > > Vivek > > > > -- Forwarded message -- > > From: Vivekanand I

Re: Implementing Hive query in Solr

2014-06-12 Thread Erick Erickson
> Vivek > > -- Forwarded message -- > From: Vivekanand Ittigi > Date: Thu, Jun 12, 2014 at 11:08 AM > Subject: Implementing Hive query in Solr > To: "solr-user@lucene.apache.org" > > > Hi, > > My requirements is to execute this query(hive)

Fwd: Implementing Hive query in Solr

2014-06-12 Thread Vivekanand Ittigi
Hi, Can anyone please look into this issue. I want to implement this query in solr. Thanks, Vivek -- Forwarded message -- From: Vivekanand Ittigi Date: Thu, Jun 12, 2014 at 11:08 AM Subject: Implementing Hive query in Solr To: "solr-user@lucene.apache.org"

Implementing Hive query in Solr

2014-06-11 Thread Vivekanand Ittigi
Hi, My requirements is to execute this query(hive) in solr: select SUM(Primary_cause_vaR),collect_set(skuType),RiskType,market, collect_set(primary_cause) from bil_tos Where skuType='Product' group by RiskType,market; I can implement sum and groupBy operations in solr using StatsComponent concep