Re: Remove operation of partial update doesn't work

2015-07-12 Thread Mohsen Saboorian
Solved as I updated to latest solr 5.2.1. I seems that solr 4.10 is buggy with partial remove operation. On Wed, Jul 8, 2015 at 8:44 PM, Mohsen Saboorian wrote: > Can you post your solrj code? > در تاریخ 8 ژوئیهٔ 2015 19:32، "Alessandro Benedetti" < > benedetti.ale...@gmail.com> نوشت: > >> I jus

Re: Trouble getting a solr join query done

2015-07-12 Thread Antonio David Pérez Morales
Hi Yusnel I think the query is invalid. It should be "q=clothes&fq={!join from=type_id to=id fromIndex=products}" or "q=*:*&fq={!join from=type_id to=id fromIndex=products}clothes" as long as you are using an edismax parser or df param for default field, where "clothes" query is matched to. Regar

Re: Solr cloud error during document ingestion

2015-07-12 Thread Mikhail Khludnev
I suggest to check http://10.222.238.35:8983/solr/serviceorder_shard1_replica2 logs to find root

Re: How to get SortedDocValues in lucene-5.2.1

2015-07-12 Thread Mikhail Khludnev
To be honest, I've never consider it as a problem, beside of https://issues.apache.org/jira/browse/SOLR-7730 On Sun, Jul 12, 2015 at 5:58 AM, Nickolay41189 wrote: > But what about using cache? In my old code I used it. I need the same > functionality. > > > > -- > View this message in context:

Re: Solr cloud error during document ingestion

2015-07-12 Thread Erick Erickson
Probably not related to your problem, but if you're sending lots of docs at Solr, committing every 100 is very aggressive. I'm assuming you're committing from the client, which, while OK doesn't scale very well if you ever decide to have more than 1 client sending docs. I'd recommend setting your

Re: Best way to facets with value preprocessing (w/ docValues)

2015-07-12 Thread Toke Eskildsen
Konstantin Gribov wrote: > Any thoughts on it? Can something like this be merged into trunk to support > docValues on `solr.TextField`? > [1]: https://github.com/grossws/solr-dvtf This looks like a perfect fit for one of our setups, where current index re-open time is several minutes due to 2 a

RE: Solr cloud error during document ingestion

2015-07-12 Thread Tarala, Magesh
I narrowed down the cause. And it is a character issue! The .msg file content I'm extracting using Tika parser has this text (daños) If I remove the character n with the tilde, it works. Explicitly convert to UTF-8 before sending it to solr? Erick - I'm in the QA phase. I'll be ingesting aroun

Re: Solr cloud error during document ingestion

2015-07-12 Thread Erick Erickson
How are you ingesting documents? ExtractingRequestHandler? That loads all the work to the Solr node(s) you might want to consider using SolrJ as that gives you much more control as well as the ability to farm out the work to N clients. Another blog: https://lucidworks.com/blog/indexing-with-solrj/

RE: Solr cloud error during document ingestion

2015-07-12 Thread Tarala, Magesh
I'm using solrj to ingest the documents. But I'm using only one client now. Yes Erick, it is weird. You are right, it is already in UTF-8 and so even if I convert it explicitly it is the same string and so, same issue... I'm still stumped:( The code is straight forward. I am using Tika and sol

Re: Solr cloud error during document ingestion

2015-07-12 Thread Shawn Heisey
On 7/11/2015 9:33 PM, Tarala, Magesh wrote: > I'm using 4.10.2 in a 3 node solr cloud setup > I have a collection with 3 shards and 2 replicas each. > I'm ingesting solr documents via solrj. > > While ingesting the documents, I get the following error: > > 264147944 [updateExecutor-1-thread-268]

Re: Auto-suggest in Solr

2015-07-12 Thread Zheng Lin Edwin Yeo
Thank you so much. I'll read up on that and try that out. Regards, Edwin On 12 July 2015 at 00:41, Erick Erickson wrote: > Cool! I've bookmarked it, much more thorough > > Erick > > On Sat, Jul 11, 2015 at 8:13 AM, Walter Underwood > wrote: > > Thanks, this is very helpful. > > > > Sugge

Re: Running Solr 5.2.1 on WIndows using NSSM

2015-07-12 Thread Zheng Lin Edwin Yeo
Hi Adrian, I got this to work for Solr 5.1, but when I tried this in Solr 5.2.1, it gives the error "Windows could not start the solr5.2.1 service on Local Computer. The service did not return an error. This could be an internal Windows error or an internal service error." As Solr 5.2.1 is not us

Solr "search in different servers based on search keyword"

2015-07-12 Thread Arijit Saha
Hi Solr/ lucene Experts, We are planning to build a solr/ lucene search application. As per design requirement, the files (on which search operation require to be done) will be lying in separate server. We want to use Solr / lucene to perform search operation on files lying in different remote s

FieldCache error for multivalued fields in json facets.

2015-07-12 Thread Iana Bondarska
Hi, I'm using json query api for solr 5.2. When query for metrics for multivalued fields, I get error: can not use FieldCache on multivalued field: sales. I've found in solr wiki that to avoid using fieldcache I should set facet.method parameter to "enum". Now my question is how can I add facet.en