custom search component on solrcloud

2015-04-16 Thread Robust Links
Hi Apologize for sending this again. I am trying to port my none solrcloud custom search handler to a solrcloud one. I have read the WritingDistibutedSearchComponents wiki page and looked at Terms and Querycomponent codes but the con

custom collector

2015-04-29 Thread Robust Links
Hi I need help porting my lucene code from 4 to 5. In particular, I need to customize a collector (to collect all doc Ids in the index - which can be >30MM docs..). Below is how I achieved this in lucene 4. Is there some guidelines how to do this in lucene 5, specially on semantics changes of Atom

YAJar

2015-05-25 Thread Robust Links
I am stuck in Yet Another Jarmagedon of SOLR. this is a basic question. i noticed solr 5.0 is using guava 14.0.1. My app needs guava 18.0. What is the pattern to override a jar version uploaded into jetty? I am using maven, and solr is being started the old way java -jar start.jar -Dsolr.solr.hom

Re: YAJar

2015-05-26 Thread Robust Links
; > On Tue, May 26, 2015, at 05:14 AM, Robust Links wrote: > > I am stuck in Yet Another Jarmagedon of SOLR. this is a basic question. i > > noticed solr 5.0 is using guava 14.0.1. My app needs guava 18.0. What is > > the pattern to override a jar version uploaded into jetty? >

Re: YAJar

2015-05-26 Thread Robust Links
test Solr > completely (in case any guava bugs affect Solr), deal with any build issues > that arise (if guava changes any APIs), and cause yourself a world of pain, > for what gain? > > > On 26 May 2015 at 11:29, Robust Links wrote: > > > i have custom search components.

Re: YAJar

2015-05-26 Thread Robust Links
is > > > On May 26, 2015, at 10:11 AM, Robust Links > wrote: > > > > i have a minhash logic that uses guava 18.0 method that is not in guava > > 14.0.1. This minhash logic is a separate maven project. I'm including it > in > > my project via maven.the

Re: YAJar

2015-05-26 Thread Robust Links
rançois > > > On May 26, 2015, at 10:25 AM, Robust Links > wrote: > > > > by "dumping" you mean recompiling solr with guava 18? > > > > On Tue, May 26, 2015 at 10:22 AM, François Schiettecatte < > > fschietteca...@gmail.com> wrote: > >

retrieving large number of docs

2015-06-03 Thread Robust Links
Hi I have a set of document IDs from one core and i want to query another core using the ids retrieved from the first core...the constraint is that the size of doc ID set can be very large. I want to: 1) retrieve these docs from the 2nd index 2) facet on the results I can think of 3 solutions:

Re: retrieving large number of docs

2015-06-03 Thread Robust Links
lr are you using? > 5.0.0 > > SolrCloud or not? > not > > Joel Bernstein > http://joelsolr.blogspot.com/ > > On Wed, Jun 3, 2015 at 1:23 PM, Robust Links > wrote: > > > Hi > > > > I have a set of document IDs from one core and i want

Re: retrieving large number of docs

2015-06-03 Thread Robust Links
ttp://joelsolr.blogspot.com/ > > On Wed, Jun 3, 2015 at 1:46 PM, Robust Links > wrote: > > > Hey Joel > > > > see below > > > > On Wed, Jun 3, 2015 at 1:43 PM, Joel Bernstein > wrote: > > > > > A few questions for you: > > >

Re: retrieving large number of docs

2015-06-03 Thread Robust Links
ters > > run much faster. > > > > You should also be aware of the Streaming API in Solr 5.1 which will give > > you fast Map/Reduce approaches ( > > > http://joelsolr.blogspot.com/2015/04/the-streaming-api-solrjio-basics.html > ). > > > > Joel Bernst

Re: retrieving large number of docs

2015-06-03 Thread Robust Links
uery. See: > > https://cwiki.apache.org/confluence/display/solr/Other+Parsers#OtherParsers-JoinQueryParser > > > -- Jack Krupansky > > On Wed, Jun 3, 2015 at 3:32 PM, Robust Links > wrote: > > > Hi Erick > > > > they are on the same JVM. I had already

Re: retrieving large number of docs

2015-06-04 Thread Robust Links
initely be possible ! > I can not see your problem honestly ! > > Cheers > > 2015-06-04 1:47 GMT+01:00 Robust Links : > > > that doesnt work either, and even if it did, joining is not going to be a > > solution since i cant query 1 core and facet on the result of

Re: retrieving large number of docs

2015-06-04 Thread Robust Links
; . > The resulting documents can be filtered and faceted. > I did use this approach a lot of times. > And I can tell you it is working in this way. > Maybe you misunderstood the Join feature, or I misunderstood your > requirement. > > Cheers > > 2015-06-04 13:27 GMT+01:00 Robus

Re: retrieving large number of docs

2015-06-04 Thread Robust Links
ave to : > > Call the /select from *core1 *in this way* :* > > *core1*/select?fl=title&q={!join from=id to=id fromIndex=*core0*} > titleNormalized:pdf&facet=true&facet.field=tags > > Hope this clarify your problem. > > Cheers > > 2015-06-04 15:00 GM

phrase query in solr 4

2014-10-24 Thread Robust Links
Hi We are trying to upgrade our index from 3.6.1 to 4.9.1 and I wanted to make sure our existing indexing strategy is still valid or not. The statistics of the raw corpus are: - 4.8 Billon total number of tokens in the entire corpus. - 13MM documents We have 3 requirements 1) we want to inde

phrase query in solr 4

2014-10-27 Thread Robust Links
Hi We are trying to upgrade our index from 3.6.1 to 4.9.1 and I wanted to make sure our existing indexing strategy is still valid or not. The statistics of the raw corpus are: - 4.8 Billon total number of tokens in the entire corpus. - 13MM documents We have 3 requirements 1) we want to inde

Documents to query

2014-11-24 Thread Robust Links
Hi Is there a way (in Lucene / SOLR) to go from a vector of documents (IDs, and optionally their scores) to a query? i.e. the reverse process of query -> document? thank you Peyman

Re: Documents to query

2014-11-24 Thread Robust Links
> Alex. > > Personal: http://www.outerthoughts.com/ and @arafalov > > Solr resources and newsletter: http://www.solr-start.com/ and @solrstart > > Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 > > > > > > On 24 November 2014 at

Re: Documents to query

2014-11-24 Thread Robust Links
//www.solr-start.com/ and @solrstart > Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 > > > On 24 November 2014 at 13:44, Robust Links wrote: > > @ Alexandre.. the business case is the following. I am using lucene/solr > to > > compose vectors. I w