Solr 7.4.0 - bug in JMX cache stats?

2018-09-06 Thread Bojan Šmid
Hi, it seems the format of cache mbeans changed with 7.4.0. And from what I see similar change wasn't made for other mbeans, which may mean it was accidental and may be a bug. In Solr 7.3.* format was (each attribute on its own, numeric type): mbean:

Re: Geospatial clustering + zoom in/out help

2014-02-03 Thread Bojan Šmid
it in action. http://wiki.apache.org/solr/SpatialClustering It would be helpful for everyone if you share your experience with whatever you choose, once you give an approach a try. ~ David From: Bojan Šmid [bos...@gmail.com] Sent: Thursday, January 30

Geospatial clustering + zoom in/out help

2014-01-30 Thread Bojan Šmid
Hi, I have an index with 300K docs with lat,lon. I need to cluster the docs based on lat,lon for display in the UI. The user then needs to be able to click on any cluster and zoom in (up to 11 levels deep). I'm using Solr 4.6 and I'm wondering how best to implement this efficiently? A bit more

SolrCloud - KeeperErrorCode = NoNode - after restart

2013-12-20 Thread Bojan Šmid
Hi, I have a cluster with 5 Solr nodes (4.6 release) and 5 ZKs, with around 2000 collections (each with single shard, each shard having 1 or 2 replicas), running on Tomcat. Each Solr node hosts around 1000 physical cores. When starting any node, I almost always see errors like: 2013-12-19

Aggregating data with Solr, getting group stats

2013-07-15 Thread Bojan Šmid
Hi, I see there are few ways in Solr which can almost be used for my use case, but all of them appear to fall short eventually. Here is what I am trying to do: consider the following document structure (there are many more fields in play, but this is enough for example): Manufacturer

DataImportHandler - too many connections MySQL error after upgrade to Solr 1.4 release

2010-02-10 Thread Bojan Šmid
Hi all, I had DataImportHandler working perfectly on Solr 1.4 nightly build from June 2009. I upgraded the Solr to 1.4 release and started getting errors: Caused by: com.mysql.jdbc.exceptions.MySQLNonTransientConnectionException: Server connection failure during transaction. Due to underlying

conditional sorting

2009-10-02 Thread Bojan Šmid
Hi all, I need to perform sorting of my query hits by different criterion depending on the number of hits. For instance, if there are 10 hits, sort by date_entered, otherwise, sort by popularity. Does anyone know if there is a way to do that with a single query, or I'll have to send another

Re: conditional sorting

2009-10-02 Thread Bojan Šmid
different sorting criterion. Bojan On Fri, Oct 2, 2009 at 4:22 PM, Uri Boness ubon...@gmail.com wrote: If the threshold is only 10, why can't you always sort by popularity and if the result set is 10 then resort on the client side based on date_entered? Uri Bojan Šmid wrote: Hi all, I need

Re: SolrCoreAware analyzer

2009-02-27 Thread Bojan Šmid
Thanks for you suggestions. I do need SolrCore, but I could probably live with just SolrResourceLoader, while also creating my own FieldType (which can be ResourceLoaderAware). Bojan On Thu, Feb 26, 2009 at 11:48 PM, Chris Hostetter hossman_luc...@fucit.orgwrote: : I am writing a custom

SolrCoreAware analyzer

2009-02-26 Thread Bojan Šmid
Hello, I am writing a custom analyzer for my field type. This analyzer would need to use SolrResourceLoader and SolrConfig, so I want to make it SolrCoreAware. However, it seems that Analyzer classes aren't supposed to be used in this way (as described in