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

Solr -plugins Jar in Cloud mode

2019-02-03 Thread Lucky Sharma
Hi, I was trying to add plugins to solr-cloud by following https://lucene.apache.org/solr/guide/6_6/adding-custom-plugins-in-solrcloud-mode.html It works well for all other components, but It's giving an unknown class exception when I use some custom analyzers with custom classes. Any suggestion

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:

Solr Plugins Documentation

2018-02-16 Thread ~$alpha`
I got a basic understanding of how we can create the custom Solr plugin as illustrated in link https://dzone.com/articles/create-custom-solr-queryparser But I don't know the next step as for how can we create a jar. like do we need to import Solr source code ?? It would be of great help if someon

Re: including dependency jars for SOLR plugins

2016-12-30 Thread Vinay B,
Will look into it and post back. Thanks On Thu, Dec 29, 2016 at 3:13 PM, Erick Erickson wrote: > You shouldn't have to package everything up. > > You say you've tried putting the jars in several different places. Do > you have multiple jars for azure still lying around? I wonder if you > might b

Re: including dependency jars for SOLR plugins

2016-12-29 Thread Erick Erickson
You shouldn't have to package everything up. You say you've tried putting the jars in several different places. Do you have multiple jars for azure still lying around? I wonder if you might be seeing something truly wonky with the same jar being accessed in two places. The output is numbing, but

Re: including dependency jars for SOLR plugins

2016-12-29 Thread Vinay B,
Thanks, I think I already tried that approach ie. my solr config included the lib directive and i placed the azure jar in the same "lib" directory as the custom updatehandler (../contrib/updatehandler/lib) so I expect the rather liberal wildcard regex would pick it up. On Thu, Dec 29, 201

Re: including dependency jars for SOLR plugins

2016-12-29 Thread Emir Arnautovic
Hi Vinay, You need to include libs using lib directives in Solr config: https://cwiki.apache.org/confluence/display/solr/Lib+Directives+in+SolrConfig. Regrads, Emir On 29.12.2016 19:11, Vinay B, wrote: I'm modifying out custom update handler and the modifications needs access to a third par

including dependency jars for SOLR plugins

2016-12-29 Thread Vinay B,
I'm modifying out custom update handler and the modifications needs access to a third party jar (microsoft azure). For what it's worth, I use mvn as my build / packaging tool. During runtime, I've been encountering class not found errors in the plugin related to the azure library. 1. Is there so

Re: Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-08 Thread Binoy Dalal
in to everyone. > > -- > Gian Maria Ricci > Cell: +39 320 0136949 > > > -Original Message- > From: Binoy Dalal [mailto:binoydala...@gmail.com] > Sent: giovedì 4 febbraio 2016 15:07 > To: solr-user@lucene.apache.org > Subject: Re: Tutorial or Code Samples

RE: Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-08 Thread Gian Maria Ricci - aka Alkampfer
ent: mercoledì 3 febbraio 2016 17:46 > To: solr-user@lucene.apache.org > Subject: Re: Tutorial or Code Samples to explain how to Write Solr > Plugins > > Here's a couple of links you can follow to get started: > > https://www.slideshare.net/mobile/search

Re: Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-04 Thread Binoy Dalal
mercoledì 3 febbraio 2016 17:46 > To: solr-user@lucene.apache.org > Subject: Re: Tutorial or Code Samples to explain how to Write Solr Plugins > > Here's a couple of links you can follow to get started: > > https://www.slideshare.net/mobile/searchbox-com/tutorial-on-developi

RE: Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-04 Thread Gian Maria Ricci - aka Alkampfer
edì 3 febbraio 2016 17:46 To: solr-user@lucene.apache.org Subject: Re: Tutorial or Code Samples to explain how to Write Solr Plugins Here's a couple of links you can follow to get started: https://www.slideshare.net/mobile/searchbox-com/tutorial-on-developin-a-solr-search-component-pl

RE: Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-04 Thread Gian Maria Ricci - aka Alkampfer
Rafalovitch [mailto:arafa...@gmail.com] Sent: mercoledì 3 febbraio 2016 23:43 To: solr-user Subject: Re: Tutorial or Code Samples to explain how to Write Solr Plugins There is a framework to help write them: https://github.com/leonardofoderaro/alba Also, some recent plugins were released at the

Re: Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-03 Thread Alexandre Rafalovitch
There is a framework to help write them: https://github.com/leonardofoderaro/alba Also, some recent plugins were released at the Revolution conference, maybe they have something useful: https://github.com/DiceTechJobs/SolrPlugins Regards, Alex. Newsletter and resources for Solr beginners

Re: Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-03 Thread Charlie Hull
Here's one we wrote recently for indexing ontologies with Solr as part of the BioSolr project: https://github.com/flaxsearch/BioSolr/tree/master/ontology/solr and a presentation on how it works (explained in the second half of the talk) https://www.youtube.com/watch?v=v1qKNX_axdI - hope this helps!

Re: Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-03 Thread Upayavira
Not a tutorial as such, but here's some simple infrastructure for building Solr components alongside Solr: https://github.com/upayavira/custom-solr-components I suspect you're past that stage already though. Upayavira On Wed, Feb 3, 2016, at 04:45 PM, Binoy Dalal wrote: > Here's a couple of lin

Re: Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-03 Thread Binoy Dalal
Here's a couple of links you can follow to get started: https://www.slideshare.net/mobile/searchbox-com/tutorial-on-developin-a-solr-search-component-plugin https://www.slideshare.net/mobile/searchbox-com/develop-a-solr-request-handler-plugin These are to write a search component and a request hand

Tutorial or Code Samples to explain how to Write Solr Plugins

2016-02-03 Thread Gian Maria Ricci - aka Alkampfer
Hi, I wonder if there is some code samples or tutorial (updated to work with version 5) to help users writing plugins. I've found lots of difficulties on the past to find such kind of information when I needed to write some plugins, and I wonder if I missed some site or link that does a be

Introducing Alba, a small library to simplify Solr plugins development

2015-09-09 Thread Leonardo Foderaro
Hi everyone, this is my first post on this list and my first opensource project, so please don't expect too much from either of them. I've spent these last weeks trying to understand how to create Solr plugins, so I started a simple project (a plugin itself) which evolved into a sma

Re: Classpath for Solr Plugins

2014-05-27 Thread Alexandre Rafalovitch
In terms of drawback, I think strong dependence on Jetty is probably one. Custom Java code is another. Most of the people run Solr as a black box. For the proposed solution, as the document said, usually the plugins are placed in the directory defined in solrconfig.xml. So, most of the people do n

Classpath for Solr Plugins

2014-05-27 Thread Jan Nehring
Hi! We have developed a custom tokenizer for Solr 4.3. Our Solr Server is started as a war file inside of a java application using jetty. When the custom tokenizer is in the class path oft the enclosing java application Solr fails on startup. The error is ClassCastException ArabicLetterTokenize

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

Solr Plugins Simple Questions for the Simpleton

2009-05-06 Thread Jeff Newburn
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 results or the facets. Questions: 1. Do the components fire

Re: Seeking Anecdotes: Solr Plugins

2008-07-25 Thread Grant Ingersoll
why are you preparing for ApacheCon so far in advance? ;-) -Grant On Jul 22, 2008, at 7:34 PM, Chris Hostetter wrote: Hey everybody, I'll be giving a talk called "Apache Solr: Beyond the Box" at ApacheCon this year, which will focus on the how/when/why of writi

Re: Seeking Anecdotes: Solr Plugins

2008-07-22 Thread Mike Klaas
On 22-Jul-08, at 4:34 PM, Chris Hostetter wrote: Hey everybody, I'll be giving a talk called "Apache Solr: Beyond the Box" at ApacheCon this year, which will focus on the how/when/why of writing Solr Plugins... http://us.apachecon.com/c/acus2008/sessions/10 I

Seeking Anecdotes: Solr Plugins

2008-07-22 Thread Chris Hostetter
Hey everybody, I'll be giving a talk called "Apache Solr: Beyond the Box" at ApacheCon this year, which will focus on the how/when/why of writing Solr Plugins... http://us.apachecon.com/c/acus2008/sessions/10 I've got several use cases I can refer to for exampl

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

solr plugins

2007-05-17 Thread John Wang
Hi: Is there a way to hook in loading and initialization of the index while writing a solr plugin? Thanks -John