Re: installing a 3rd party index

2013-12-15 Thread Christian Bongiorno
I have the code that originally made this index. I know all those details. I have a schema with matching field names to what's in the code and I get nothing. What should I be looking for from the original code that just makes this work? And yes, it did scream "mismatched schema" to me; it was the

Re: installing a 3rd party index

2013-12-15 Thread Christian Bongiorno
I will give this a try. Thanks. On Fri, Dec 13, 2013 at 1:15 PM, Greg Walters wrote: > Christian, > > I literally did this 10 minutes ago for an internal example. You need to > issue a RELOAD for your index to open a new searcher using the updated > files. Here's an example showing how I did it:

Re: installing a 3rd party index

2013-12-13 Thread Chris Hostetter
: Has anyone tried to take an index generated elsewhere and install it in a : core? I have done that and I can see all the documents if I do "q=*:*" but : I can't actually query any of the fields even though I added the field : names to schema that combination (docs are clearly visible when doing

Re: installing a 3rd party index

2013-12-13 Thread Greg Walters
Christian, I literally did this 10 minutes ago for an internal example. You need to issue a RELOAD for your index to open a new searcher using the updated files. Here's an example showing how I did it: ** Creating a new collection Greg-Walters-MacBook-Pro:SolrUpload greg.walters$ curl "http://

installing a 3rd party index

2013-12-13 Thread Christian Bongiorno
Has anyone tried to take an index generated elsewhere and install it in a core? I have done that and I can see all the documents if I do "q=*:*" but I can't actually query any of the fields even though I added the field names to schema I am kind of a rookie so forgive me if I come across as such.