Re: Bitnami, or other Solr on AWS recommendations?

2018-01-26 Thread Phillip Rhodes
Also shameless self-promotion, but my company (Fogbeam Labs) is about to launch a Solr / ManifoldCF powered Search-as-a-Service offering. If you'd like to learn more, shoot me an email at prho...@fogbeam.com and I'd be happy to give you the skinny. Phil This message optimized for indexing by NSA

Re: Issue with Solr Cell mixing metadata and content together

2017-12-21 Thread Phillip Rhodes
the possibility > that Tika will kill your Solr. > > Here's a place to start: > https://lucidworks.com/2012/02/14/indexing-with-solrj/ > > Best, > Erick > > On Thu, Dec 21, 2017 at 4:31 PM, Phillip Rhodes > wrote: >> Hi all, I have been having an issue with

Issue with Solr Cell mixing metadata and content together

2017-12-21 Thread Phillip Rhodes
Hi all, I have been having an issue with Solr, using the ExtractingRequestHandler. Basically, when indexing a PDF (for example) I get all the metadata mixed into the "content" field along with the content. See:

[SOLVED] [MORE OR LESS] "no such core" error with EmbeddedSolrServer

2012-01-06 Thread Phillip Rhodes
r two. :-) Phil On Thu, Jan 5, 2012 at 7:45 PM, Phillip Rhodes wrote: > Hi all, I'm having an issue that I hope someone can shed some light on. > > I have a Groovy program, using Solr 3.5, where I am attempting to use > EmbeddedSolrServer using the instructions shown here: &

Re: "no such core" error with EmbeddedSolrServer

2012-01-06 Thread Phillip Rhodes
On Fri, Jan 6, 2012 at 11:28 AM, Christopher Childs wrote: > Multicore does work with EmbeddedSolrServer. It's what we use in our > application. > > solr.xml is also relevant for configuring the cores. We do not do it in quite > the same manner that Phillip is describing, though. Our CoreContain

Re: "no such core" error with EmbeddedSolrServer

2012-01-06 Thread Phillip Rhodes
On Fri, Jan 6, 2012 at 11:03 AM, Erik Hatcher wrote: > > Again, EmbeddedSolrServer (unless I'm gravely mistaken!) doesn't do > multicore.  It's for a single core.  If you want multiple cores > supported... created multiple EmbeddedSolrServer instances.   You point the > instance to the core's "h

Re: "no such core" error with EmbeddedSolrServer

2012-01-06 Thread Phillip Rhodes
2012/1/6 Yury Kats : > > That probably means the home is not set properly, so it can't find solr.xml > Well, all the docs mention doing is this bit, which I have: System.setProperty('solr.solr.home', '/usr/servers/solr/apache-solr-3.5.0/example/heceta'); I've also tried it the other way mentioned

Re: "no such core" error with EmbeddedSolrServer

2012-01-06 Thread Phillip Rhodes
2012/1/6 Yury Kats : > > Have you tried passing core name (collection1) to the c'tor, instead > of the empty string? Yep, but that gives the same error (with the core name appended) such as "no such core: collection1" Phil

Re: "no such core" error with EmbeddedSolrServer

2012-01-06 Thread Phillip Rhodes
On Fri, Jan 6, 2012 at 8:06 AM, Erik Hatcher wrote: > Also note that an EmbeddedSolrServer is for a specific core, not for all > cores (and thus solr.xml is not used).  My hunch is that you > need to point > to the core's home directory, not to the parent of solr.xml. Oh, interesting. The exam

Re: "no such core" error with EmbeddedSolrServer

2012-01-06 Thread Phillip Rhodes
On Fri, Jan 6, 2012 at 3:06 AM, Sven Maurmann wrote: > Hi, > > from your snippets the reason is not completely clear. There are a number of > reasons for not starting up the > server. For example in case of a faulty configuration of the core > (solrconfig.xml, schema.xml) the core does > not sta

"no such core" error with EmbeddedSolrServer

2012-01-05 Thread Phillip Rhodes
Hi all, I'm having an issue that I hope someone can shed some light on. I have a Groovy program, using Solr 3.5, where I am attempting to use EmbeddedSolrServer using the instructions shown here: http://wiki.apache.org/solr/Solrj#EmbeddedSolrServer to that end, I have code setup like this: ...

Build query programmatically with lucene, but issue to solr?

2010-05-28 Thread Phillip Rhodes
Hi. I am building up a query with quite a bit of logic such as parentheses, plus signs, etc... and it's a little tedious dealing with it all at a string level. I was wondering if anyone has any thoughts on constructing the query in lucene and using the string representation of the query to send to

serialize SolrInputDocument to java.io.File and back again?

2009-12-30 Thread Phillip Rhodes
I want to store a SolrInputDocument to the filesystem until it can be sent to the solr server via the solrj client. I will be using a quartz job to periodically query a table that contains a listing of SolrInputDocuments stored as java.io.File that need to be processed. Thanks for your time.

Re: using solr as master for data storage/retrie val?

2008-05-08 Thread Phillip Rhodes
y, May 8, 2008 3:37am To: solr-user@lucene.apache.org Subject: Re: using solr as master for data storage/retrieval? On Wed, 7 May 2008 11:26:50 -0400 (EDT) "Phillip Rhodes" <[EMAIL PROTECTED]> wrote: > I currently have a java-based application that stores all objects on the file

using solr as master for data storage/retrieval?

2008-05-07 Thread Phillip Rhodes
I currently have a java-based application that stores all objects on the file system (text, blobs) and uses lucene to search the objects. If I can store these objects in solr, I would greatly increase the scalability of my application. Would it be safe to replace the filesystem with solr in t

custom queries via plugins?

2008-05-05 Thread Phillip Rhodes
I am currently using lucene directly to build custom queries. Can I write a plugin to build these custom BooleanQueries, RangeQueries, etc...? As a simple example, we have documents that represent coupons, events and activities. Some searches may only be for coupons and events. Currently, I p

solr vs custom JMS for replication?

2007-03-08 Thread Phillip Rhodes
Hi everyone, I have a open source app under development called "authsum" which is a sso/identity/authorization server that supports user registration, openid,sso. It's a "search engine for authorizations" because the authorizations are stored in a lucene index accessible via xfire. There will