Re: Solr -plugins Jar in Cloud mode

2019-02-06 Thread Steve Rowe
From https://issues.apache.org/jira/browse/SOLR-9175 : "[O]nly components specified in solrconfig.xml can be loaded from blob store. Schema components are not yet loaded from blob store." Steve > On Feb 3, 2019, at 7:51 PM, Lucky Sharma wrote: > > Hi, > I was trying to add plugins to solr-cl

Re: Solr Plugins Documentation

2018-02-19 Thread Emir Arnautović
Hi, It is not query parser but update request processor, but you can find simple buildable Solr plugin on https://github.com/od-bits/solr-multivaluefield-processor . You can also find a related blogpost that has some details how to buil

RE: Solr Plugins Documentation

2018-02-17 Thread Howe, David
You will need to use your favourite java tooling to take the code that you have written and package it as a jar file. In my case, we use maven so I have set my custom extensions up as a maven project, and in my POM file (which tells maven what dependencies your project has), I declare:

Re: Solr Plugins Simple Questions for the Simpleton

2009-05-07 Thread Jeff Newburn
> On May 6, 2009, at 3:25 PM, Jeff Newburn wrote: > >> We are trying to implement a SearchCompnent plugin. I have been >> looking at >> QueryElevateComponent trying to weed through what needs to be done. >> My >> basic desire is to get the results back and manipulate them either by >> altering th

Re: Solr Plugins Simple Questions for the Simpleton

2009-05-06 Thread Grant Ingersoll
On May 6, 2009, at 3:25 PM, Jeff Newburn wrote: We are trying to implement a SearchCompnent plugin. I have been looking at QueryElevateComponent trying to weed through what needs to be done. My basic desire is to get the results back and manipulate them either by altering the actual resul

Re: solr plugins

2007-05-25 Thread Chris Hostetter
: I updated with a patch. Is it possible to get this in soon cuz I : have a client waiting on this. I've posted some comments about your patch. at the moment, the committers have started focusing on getting 1.2 released. Even if this was a relaly popular issue, it's a non trivial change th

Re: solr plugins

2007-05-25 Thread John Wang
Hi Yonik: I updated with a patch. Is it possible to get this in soon cuz I have a client waiting on this. Thanks again -John On 5/22/07, John Wang <[EMAIL PROTECTED]> wrote: Hi Yonik: Thank you again for your help! I created an improvement item in jira (SOLR-243) on this. -Jo

Re: solr plugins

2007-05-22 Thread John Wang
Hi Yonik: Thank you again for your help! I created an improvement item in jira (SOLR-243) on this. -John On 5/19/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 5/19/07, John Wang <[EMAIL PROTECTED]> wrote: > Hi Yonik: > > Thanks for the info! > > This solves my problem, but n

Re: solr plugins

2007-05-19 Thread Yonik Seeley
On 5/19/07, John Wang <[EMAIL PROTECTED]> wrote: Hi Yonik: Thanks for the info! This solves my problem, but not elegantly. I have a custome implementation where I derived from the IndexReader class to store some custome data. Now I am trying to write a Solr plugin for my search im

Re: solr plugins

2007-05-19 Thread John Wang
Hi Yonik: Thanks for the info! This solves my problem, but not elegantly. I have a custome implementation where I derived from the IndexReader class to store some custome data. Now I am trying to write a Solr plugin for my search implementation but I want to be able to use my IndexRea

Re: solr plugins

2007-05-18 Thread Yonik Seeley
On 5/17/07, John Wang <[EMAIL PROTECTED]> wrote: Is there a way to hook in loading and initialization of the index while writing a solr plugin? Do you mean a hook to do something when an IndexReader/Searcher is first opened on an index? If so, see newSearcher/firstSearcher hooks in solrconf