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 Gibb

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=edismax=foo bar Debugging the query you can see it results in: "parsedquery_toString":"+(+(text:foo) +(text:bar))" Adding more qf

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

Re: Solr Keyword query on a specific field.

2015-11-19 Thread Aaron Gibbons
v 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...@synergydatasystems.com>

Re: Solr Keyword query on a specific field.

2015-11-02 Thread Aaron Gibbons
m=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 search use the sam

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))

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

Re: SolrCloud 5.2.1 - collection creation error

2015-07-23 Thread Aaron Gibbons
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 On Thu, Jul 23, 2015, at 04:52 PM, Aaron Gibbons wrote

Re: SolrCloud 5.2.1 - collection creation error

2015-07-23 Thread Aaron Gibbons
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: I've mainly used Oracle Java 8, but tested 7 also. Typically

Re: SolrCloud 5.2.1 - collection creation error

2015-07-23 Thread Aaron Gibbons
response you get? I wouldn't expect to see mention of solrj in the API because it isn't used. 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

Re: SolrCloud 5.2.1 - collection creation error

2015-07-23 Thread Aaron Gibbons
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:42 PM, Aaron Gibbons wrote

Re: SolrCloud 5.2.1 - collection creation error

2015-07-22 Thread Aaron Gibbons
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 this time and even tried installing it manually

Re: SolrCloud 5.2.1 - collection creation error

2015-07-17 Thread Aaron Gibbons
:17 AM, Aaron Gibbons agibb...@synergydatasystems.com wrote: 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

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

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