org.apache.solr.servlet.SolrDispatchFilter.handleAdminRequest(SolrDispatchFilter.java:591)
at
org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:192)
at
org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:141)
- Original Message -
From: "Mark Olsen"
To: solr-user@lucene.
e.org
Sent: Wednesday, May 14, 2014 12:43:00 PM
Subject: Re: Error when creating collection
On 5/13/2014 4:39 PM, Mark Olsen wrote:
> I'm creating a collection via Java using this function call:
>
> String collection = "profile-2";
> CoreAdminRequest.Create create
Solr version: 4.2.1
I'm creating a collection via Java using this function call:
String collection = "profile-2";
CoreAdminRequest.Create createRequest = new CoreAdminRequest.Create();
createRequest.setCoreName(collection);
createRequest.setCollection(collection);
createRequest.setInstanceD
Chris,
Thank you for the detailed explanation, this helps a lot.
One of my current hurdles is my search system is in Java using Lucene Query
objects to construct a BooleanQuery which is then handed to Solr. Since Lucene
does not know about the LocalParams it's tricky to get them to play properly
On 4/8/2014 22:00 GMT Shawn Heisey wrote:
>On 4/8/2014 1:48 PM, Mark Olsen wrote:
>> Solr version 4.2.1
>>
>> I'm having an issue using a "join" query with a range query, but only when
>> the query
is wrapped in parens.
>>
>> This quer
Solr version 4.2.1
I'm having an issue using a "join" query with a range query, but only when the
query is wrapped in parens.
This query works:
{!join from=member_profile_doc_id to=id}language_proficiency_id_number:[30 TO
50]
However this query does not (just wrapping with parens):
({!join f