Re: stats component performance

2015-06-09 Thread deniz
would be really nice if there are any... i am also looking for some detailed explanation about the stats on solr, couldnt find anything yet though... - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/stats-component-performance-tp4

Jquery ajax equivalent of t curl based document update

2015-06-09 Thread Roland Szűcs
Hello, I have spent more than 3 days to find out the answer but I could not. I did not find a list of parameters in the documentation that can be used in jquery AJAX to update a raw xml document. I would like to use this code template: $.ajax({ type: "POST", url: url, data: data, success:

RE: How do I unsubscribe?

2015-06-09 Thread Abdul Hameed
How do I unsubscribe from this list please? -Original Message- From: Carl Roberts [mailto:carl.roberts.zap...@gmail.com] Sent: 08 June 2015 18:54 To: solr-user@lucene.apache.org Subject: How do I unsubscribe? How do I unsubscribe? The information in this e-mail and any attachments is conf

Re: How do I unsubscribe?

2015-06-09 Thread Bernd Fehling
How about: http://lmgtfy.com/?q=unsubscribe+solr+user+list Am 09.06.2015 um 10:47 schrieb Abdul Hameed: > How do I unsubscribe from this list please? > > -Original Message- > From: Carl Roberts [mailto:carl.roberts.zap...@gmail.com] > Sent: 08 June 2015 18:54 > To: solr-user@lucene.apa

RE: How do I unsubscribe?

2015-06-09 Thread Abdul Hameed
Thanks - solr-user-unsubscr...@lucene.apache.org -Original Message- From: Bernd Fehling [mailto:bernd.fehl...@uni-bielefeld.de] Sent: 09 June 2015 09:59 To: solr-user@lucene.apache.org Subject: Re: How do I unsubscribe? How about: http://lmgtfy.com/?q=unsubscribe+solr+user+list Am

Re: Sorting documents by nested / child docs with FunctionQueries

2015-06-09 Thread DorZion
Thanks for your reply. I couldn't make it work. Everything went fine when I applied the patch and compiled Solr, but I couldn't use the FunctionQuery with it. My FunctionQuery accesses the field "text" in the document, however the parent doesn't have that field, so the plugin raises an exception.

Re: Sorting documents by nested / child docs with FunctionQueries

2015-06-09 Thread Mikhail Khludnev
it should be something like q": "{!parent which=$parent_filter scoreMode=Max}+{!lucene v=$child_filter} +{!func v=$sort_func}", "parent_filter": "content_type:parent" "child_filter": "content_type:child" "indent": "true" "fl": "*,[child parentFilter=$parent_filter childFilter=$child_filter]" "sort

Re: Derive suggestions across multiple fields

2015-06-09 Thread Zheng Lin Edwin Yeo
Is there a way to increase the 'len' of the suggester? The error says it must be lesser than 32767 but my content has up to 35578. It is working for fields that are shorter, but the content of my rich text documents are very big, thus leading to the error above. Regards, Edwin On 8 June 2015 at

TZ & rounding

2015-06-09 Thread jon kerling
Hi, I'm using Solr 4.10.0.I'm trying to figure out how to use the TZ param.I've noticed that i have to use date math in order for this to work,also I've got to use rounding when I query Solr in order to use the TZ param. The issue is that when i query I'd like to get recent hours for my search,

"TokenStream contract violation: close() call missing" error in 4.9.0

2015-06-09 Thread Ryan, Michael F. (LNG-DAY)
I'm using Solr 4.9.0. I'm trying to figure out what would cause an error like this to occur a rare, non-deterministic manner: java.lang.IllegalStateException: TokenStream contract violation: close() call missing at org.apache.lucene.analysis.Tokenizer.setReader(Tokenizer.java:90)

Collections API calling two actions in a single URL

2015-06-09 Thread Zheng Lin Edwin Yeo
For the collections API, is it possible to combine 2 or more actions into a single URL? For example, I'll like to create a new collection and also the alias at the same time. Can I call both action=CREATE and action=CREATEALIAS in the same URL? Regards, Edwin

Date Format Conversion Function Query

2015-06-09 Thread Ali Nazemian
Dear all, Hi, I was wondering is there any function query for converting date format in Solr? If no, how can I implement such function query myself? -- A.Nazemian

CheckIndex failed for Solr 4.7.2 index

2015-06-09 Thread Guy Moshkowich
We are using Solr 4.7.2 and we found that when we run CheckIndex.checkIndex on one of the Solr shards we are getting the error below. Both replicas of the shard had the same error. The shard index looked healthy: 1) It appeared active in the Solr admin page. 2) We could run searches against it. 3

Re: TZ & rounding

2015-06-09 Thread Chris Hostetter
: I'm using Solr 4.10.0.I'm trying to figure out how to use the TZ : param.I've noticed that i have to use date math in order for this to : work,also I've got to use rounding when I query Solr in order to use the : TZ param. I'm having trouble understanding your question. The TZ param, as do

Re: TZ & rounding

2015-06-09 Thread Upayavira
On Tue, Jun 9, 2015, at 05:27 PM, Chris Hostetter wrote: > > : I'm using Solr 4.10.0.I'm trying to figure out how to use the TZ > : param.I've noticed that i have to use date math in order for this to > : work,also I've got to use rounding when I query Solr in order to use > the > : TZ param.

Re: TZ & rounding

2015-06-09 Thread Chris Hostetter
: So, are you saying that you are expected to store UTC dates in your : index, but if you happen to know that a user is in a different timezone, : you can round those dates for them according to their timezone instead : of UTC? : : That's how I'd interpret it, but useful to confirm. Date formatt

Re: CheckIndex failed for Solr 4.7.2 index

2015-06-09 Thread Michael McCandless
IBM's J9 JVM unfortunately still has a number of nasty bugs affecting Lucene; most likely you are hitting one of these. We used to test J9 in our continuous Jenkins jobs, but there were just too many J9-specific failures and we couldn't get IBM's attention to resolve them, so we stopped. For now

Re: "TokenStream contract violation: close() call missing" error in 4.9.0

2015-06-09 Thread Benson Margulies
What tokenizer are you using? I think, but I'm not entirely sure, that this would require a bug in a tokenizer. On Tue, Jun 9, 2015 at 10:21 AM, Ryan, Michael F. (LNG-DAY) wrote: > I'm using Solr 4.9.0. I'm trying to figure out what would cause an error like > this to occur a rare, non-determin

Re: Date Format Conversion Function Query

2015-06-09 Thread Erick Erickson
I'm not sure what you're asking for, give us an example input/output pair? Best, Erick On Tue, Jun 9, 2015 at 8:47 AM, Ali Nazemian wrote: > Dear all, > Hi, > I was wondering is there any function query for converting date format in > Solr? If no, how can I implement such function query myself?

Re: SolrCloud and configuration files on ZooKeeper

2015-06-09 Thread Erick Erickson
The thing that's confusing is this line: [zk: 127.0.0.1:2181(CONNECTED) 4] ls /configs/test [currency.xml, protwords.txt, managed-schema, solrconfig.xml, synonyms.txt, elevate.xml, stopwords.txt, params.json, lang] it says right there "managed-schema". So my suspicion is that you uploaded this to

Assign rich-text document's title name from clustering results

2015-06-09 Thread Zheng Lin Edwin Yeo
Hi, I'm currently using Solr 5.1, and I'm thinking of ways to allow the system to automatically give the rich-text documents that are being indexed a title automatically, instead of user entering it in manually, as we might have to index a whole folder of documents together, so it is not wise for

AngularJS

2015-06-09 Thread William Bell
Finding DIH issue with the new AngularJS DIH section, while indexing... 1,22613/s ? Last Update: 22:50:50 *Indexing since 0:1:38.204* Requests: 1, Fetched: 1,22613/s, Skipped: 0, Processed: 1,22613/s Started: 3 minutes ago -- Bill Bell billnb...@gmail.com cell 720-256-8076

Performance RptWithGeometrySpatialField ?

2015-06-09 Thread William Bell
Any performance implications for RptWithGeometrySpatialField ? We use simple radius (Circle) using {!geofilt}, and MultiValued fields for Points. Replace it any try? How about caching? Recommendations? -- Bill Bell billnb...@gmail.com cell 720-256-8076

Re: Date Format Conversion Function Query

2015-06-09 Thread Ali Nazemian
Dear Erick, Hi, Actually I want to convert date format from Geregorian calendar (solr default) to Perisan calendar. You may ask why i do not do that at client side? Here is why: I want to provide a way to extract data from solr in the csv format. I know that solr has csv ResponseWriter that could

Indexing documents in Chinese

2015-06-09 Thread Zheng Lin Edwin Yeo
Hi, I'm trying to index rich-text documents that are in chinese. Currently, there's no problem with indexing, but there's problem with the searching. Does anyone knows what is the best Tokenizer and Filter Factory to use? I'm now using the solr.StandardTokenizerFactory which I heard that it's not

Re: Indexing documents in Chinese

2015-06-09 Thread Alexandre Rafalovitch
You may find the series of article on CJK analysis/search helpful: http://discovery-grindstone.blogspot.com.au/ It's a little out of date, but should be a very solid intro. Regards, Alex. Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter: http://www.solr-start.com/ On 10 J