Re: Difference between currency fieldType and float fieldType

2016-12-07 Thread Esther-Melaine Quansah
Cool, that makes sense! Esther Quansah > On Dec 7, 2016, at 9:13 AM, Dorian Hoxha wrote: > > Yeah, you always *100 when you store,query,facet, and you always /100 when > displaying. > > On Wed, Dec 7, 2016 at 3:07 PM, wrote: > >> I think Edwin might be concerned that in storing it as a long t

Re: Getting "collection already exists" when creating collection in admin UI

2016-08-12 Thread Esther-Melaine Quansah
Hi Alexandre, The question here is why the create action is called twice. You’re getting that “collection already exists” error after the second action is called. Can you verify if MyNewNode exists in /collections in ZK or on the machines running Solr at $SOLR_HOME/server/solr/ Your logs show a

Re: commit it taking 1300 ms

2016-08-12 Thread Esther-Melaine Quansah
Midas, I’d like further clarification as well. Are you sending commits along with each document that you’re POSTing to Solr? If so, you’re essentially either opening a new searcher or flushing to disk with each POST which could explain latency between each request. Thanks, Esther > On Aug 11,

Re: Newbie: Searching across 2 collections ?

2016-01-06 Thread Esther-Melaine Quansah
Ok, so join won’t work. Distributed search is your answer. This worked for me: http://localhost:8983/solr/temp/select?shards=localhost:8983/solr/job,localhost:8983/solr/temp&q=*:* so for you i

Debugging Angular JS Application

2015-09-10 Thread Esther-Melaine Quansah
Hi, Is there a way for me to debug and modify Angular JS code in the Solr Admin UI without needing to completely rebuild the server and clearing browser cache? Thanks, Esther

Re: Setup cloud collection

2015-07-16 Thread Esther-Melaine Quansah
If you’ve set numShards to 5, then your indexes are split evenly across all 5 shards and they should all be considered leaders in charge of updating the replicas with new information. Could it be the case that 1 of your shards has 3 replicas and is the leader for that specific shard? What specif