Re: SolrCloud 5.2.1 - collection creation error

2015-07-22 Thread Aaron Gibbons
lr machines for Solr Cloud? On Fri, Jul 17, 2015 at 4:52 PM, Aaron Gibbons < agibb...@synergydatasystems.com> wrote: > I started from scratch with fresh Ubuntu machines and just wiped them and > tried again. I run my Ansible playbook (below) to install Java 8 (Tried > Oracle thi

Re: SolrCloud 5.2.1 - collection creation error

2015-07-23 Thread Aaron Gibbons
e Java version in order to succeed at that. Something weird is going on around that area, it seems. Make sure you are using the same Java to start Solr as you are using to run the bin/solr create script, and make sure you are using the same version of Solr, too. Upayavira On Wed, Jul 22, 2015, at 08:

Re: SolrCloud 5.2.1 - collection creation error

2015-07-23 Thread Aaron Gibbons
eems to be an exception > parsing the SolrResponse. That would suggest that the action has > occurred already. Is the core created correctly, even though bin/solr > cannot handle the response back to you? > > Upayavira > > On Thu, Jul 23, 2015, at 01:50 PM, Aaron Gibbons wrote: > &

Re: SolrCloud 5.2.1 - collection creation error

2015-07-23 Thread Aaron Gibbons
Just for the record, by API I mean HTTP API, so calling the > solr instance from a browser, for example. > > Upayavira > > On Thu, Jul 23, 2015, at 04:07 PM, Aaron Gibbons wrote: > > *When you run bin/solr you are doing that on the instance itself? * > > Yes > >

Re: SolrCloud 5.2.1 - collection creation error

2015-07-23 Thread Aaron Gibbons
any > of them running a different Java or Solr version? > > It looks like you have another node connected to your Zookeeper that has > taken the role of "overseer" and it is sending back serialized java > objects that your own node cannot handle. > > Upayavira >

Solr MLT with stream.body returns different results on each shard

2015-08-11 Thread Aaron Gibbons
I have a fresh install of Solr 5.2.1 with about 3 million docs freshly indexed (I can also reproduce this issue on 4.10.0). When I use the Solr MorelikeThisHandler with content stream I'm getting different results per shard. I also looked at using a standard MLT query, but I need to be able to str

Solr Keyword query on a specific field.

2015-10-30 Thread Aaron Gibbons
Is there any way to have a single field search use the same keyword search logic as the default query? I define q.op as AND in my query which gets applied to any main keywords but any keywords I'm trying to use within a field do not get the same logic applied. Example: q=(title:(Test Keywords)) the

Re: Solr Keyword query on a specific field.

2015-11-02 Thread Aaron Gibbons
.op=AND => mm=100%; q.op=OR => mm=0%) > > https://wiki.apache.org/solr/ExtendedDisMax#mm_.28Minimum_.27Should.27_Match.29 > > > On Fri, Oct 30, 2015 at 3:27 PM, Aaron Gibbons < > agibb...@synergydatasystems.com> wrote: > > > Is there any way to have a single field sea

Re: Solr Keyword query on a specific field.

2015-11-19 Thread Aaron Gibbons
sing Sunspot tho. On Sun, Nov 8, 2015 at 7:01 PM, davidphilip cherian < davidphilipcher...@gmail.com> wrote: > Nested queries might help. > > http://www.slideshare.net/erikhatcher/solr-query-parsing-tips-and-tricks > > On Mon, Nov 2, 2015 at 10:20 AM, Aaron Gibbons < > agibb.

SolrCloud 5.2.1 - collection creation error

2015-07-16 Thread Aaron Gibbons
I'm installing SolrCloud 5.2.1 on 4 Ubuntu 14.04 machines with 3 external zookeepers. I've installed the solr machines using Ansible following the "Taking Solr to Production" steps. 1. Download 5.2.1 2. Extract installation script 3. Run installation script Then I stop solr and make my

Re: SolrCloud 5.2.1 - collection creation error

2015-07-17 Thread Aaron Gibbons
where else" in your classpath, possibly a jar file from > an older Solr or one of the libraries. > > Best, > Erick > > On Thu, Jul 16, 2015 at 6:17 AM, Aaron Gibbons > wrote: > > I'm installing SolrCloud 5.2.1 on 4 Ubuntu 14.04 machines with 3 external > &g

Solr Keyword search across docs?

2017-08-11 Thread Aaron Gibbons
I'm trying to produce a search that would optionally join the contents of 2 documents then allow a keyword search on them as if it were a single doc. For example I'd have Person index and a Note index. I want to search the person document combined with the notes for keywords A AND B AND C. A and

Group only top 50 results not All results.

2014-07-11 Thread Aaron Gibbons
I'm trying to figure out how I can query solr for the top X results THEN group and count only those top 50 by their owner. I can run a query to get the top 50 results that I want. solr/select?q=(current_position_title%3a(TEST))&rows=50 I've tried Faceting but I get all results faceted not just th

Solr changing the search when given many qf fields?

2018-08-15 Thread Aaron Gibbons
I found a tipping point where the search being built changes with the number of qf fields being passed in. Example search: "foo bar" solr 7.2.1 select?q.op=AND&defType=edismax&q=foo bar Debugging the query you can see it results in: "parsedquery_toString":"+(+(text:foo) +(text:bar))" Adding more

Re: Solr changing the search when given many qf fields?

2018-08-16 Thread Aaron Gibbons
20/edismax-and-multiterm-synonyms-oddities/> > > HTH, > Emir > -- > Monitoring - Log Management - Alerting - Anomaly Detection > Solr & Elasticsearch Consulting Support Training - http://sematext.com/ > > > > > On 15 Aug 2018, at 17:23, Aaron Gibbons >