Re: Solr 4.3 log4j

2013-08-04 Thread Shawn Heisey
On 8/5/2013 12:19 AM, Prasi S wrote: > Im using solr 4.3 to setup solrcloud. I haev placed all jar files in a > folder zoo-lib. I have also placed the jar fiels from /solr/example/lib/ext > to zoo-lib folder. > > When I execute this command, > > java -classpath .;zoo-lib/* org.apache.solr.cloud.Z

Solr 4.3 log4j

2013-08-04 Thread Prasi S
Hi, Im using solr 4.3 to setup solrcloud. I haev placed all jar files in a folder zoo-lib. I have also placed the jar fiels from /solr/example/lib/ext to zoo-lib folder. When I execute this command, java -classpath .;zoo-lib/* org.apache.solr.cloud.ZkCLI -cmd upconfig -zkhost localhost:2181 -conf

Re: Memory Cost of group.cache.percent parameter

2013-08-04 Thread Alok Bhandari
Hello , need to know about the same thing as I am also stuck on decision of using grouping and with smalled data-set it seems to be a good performing thing. Also is there anyway to specify that group caching should be used depending on RAM allocated to it. -- View this message in context: http

Re: Solr round ratings to nearest integer value

2013-08-04 Thread Raymond Wiker
That query searches for ratings in the range 2.0 to 2.5, which does not include 1.75. The fl setting only affects the returned value, and not the search. If you want to search for ratings that would round to 2, your query should be something like fq=[1.5 TO 2.5] Note: the exact boundaries should

Re: additional requests sent to solr

2013-08-04 Thread alxsss
Hello, I still have this issue. Basically in distributed mode, when facet is true, solr-4.2 issues an additional query with facet.field={!terms%3D$company__terms}company&isShard=true} where for example company__terms have all values from company facet field. I have added terms=false to the ori

Re: Solr round ratings to nearest integer value

2013-08-04 Thread Thyagaraj
Hello Erick, Is it possible to without changing the sql query?. I just rounded ratings value at the query time and trying to search with filter query like the one below: q=*:* fq=ratings:[2.0 TO 2.5] fl=ratings:rint(ratings) I have a rating 1.75 in a record which is rounded to 2.0 by rint but i

Exception on solr Unload

2013-08-04 Thread vicky desai
Hi All, I am getting an exception on unloading a core from solr. This happens only in the case where the core name and the collection name is same. I am getting the below mentioned exception on using solrj as well as solr admin UI. I have a configuration of 1 leader and 1 replica with the core nam

Re: Indexing and Query time boosting together

2013-08-04 Thread dhaivat dave
Hey Jack, Thank you so much for your reply. This is very useful. Thanks again, Dhaivat Dave On Fri, Aug 2, 2013 at 8:04 PM, Jack Krupansky wrote: > "product promotions" = "query elevation" > > See: > http://wiki.apache.org/solr/**QueryElevationComponent

Re: Querying a specific core in solr cloud

2013-08-04 Thread vicky desai
Hi Erik, I did check the logs and request is going to ip1 if core is not present on ip2. This should be a bug right? -- View this message in context: http://lucene.472066.n3.nabble.com/Querying-a-specific-core-in-solr-cloud-tp4079964p4082454.html Sent from the Solr - User mailing list archiv

Re: Encountered invalid class name

2013-08-04 Thread anpm1989
Hi Artem Karpenko, - I used Solr 4.4.0 - I copy war file from $SOLR_HOME/dist and rename to solr.war - I copy solr.war to $JBOSS_HOME/standalone/deployments for deploy - When solr.war is deploying, i see these warning message in the jboss console

RE: Unexpected behavior when sorting groups

2013-08-04 Thread Tony Paloma
Thanks Paul. That's helpful. I'm not familiar with the concept of custom caches. Would this be custom Java code or something defined in the config/schema? Can you point me to some documentation? Another workaround I was thinking of using was making two Solr queries when wanting to sort groups b

Re: Unexpected behavior when sorting groups

2013-08-04 Thread Paul Masurel
Dear Tony, The behavior you described is correct, and what you are requiring is impossible with Solr as it is. I wouldn't however say it is a limitation of Solr : your problem is actually difficult and require some preprocessing. One solution if it is feasible for you is to precompute the lowest

Re: Customize Velocity Output, Utility Class or Custom Tool

2013-08-04 Thread Erik Hatcher
You're in the right place. There isn't a solr-dev anyway, it's just dev@lucene. Velocity utilities... great question. It's not currently supported. Only the ones listed in the code pasted below are available (note the TODO). The catch to supporting pluggable "tools" in the Velocity context i

Re: solr - please help me arrange my search url

2013-08-04 Thread Mysurf Mail
So, If I query over more than one field always. And they are always the same fields then I cannot place them in a config file. I should always list all them in my url? On Thu, Aug 1, 2013 at 5:05 PM, Jack Krupansky wrote: > 1. "df" only supports a single field. All but the first will be ignored