RE: Index fetch failed

2019-09-02 Thread Akreeti Agarwal
Hello, Please help me with the solution for below error. Memory details of slave server: total used free sharedbuffers cached Mem: 15947 15460487 62144 6007 -/+ buffers/cache: 9308 6639 Swap:0 0

Re: ZooKeeper error in solr.log

2019-09-02 Thread Shawn Heisey
On 9/2/2019 6:04 AM, Gell-Holleron, Daniel wrote: The error I get in the log is below: 2019-09-02 09:17:22.812 ERROR (qtp1192171522-16) [ ] o.a.s.h.RequestHandlerBase java.lang.ArrayIndexOutOfBoundsException: 1 at org.apache.solr.handler.admin.ZookeeperStatusHandler.monitorZookeeper(

Re: SolrNet...multiValued.

2019-09-02 Thread Shawn Heisey
On 9/2/2019 8:58 AM, Britto Raj wrote: I am working MNC and doing Prototype using SolrNet and Solr. I have few questions and got stuck not able to move forward.. 4. When i try to access using SolrQueryResults results = solr.Query(new SolrQuery("title:\"changeme4\"")); It throws e

Re: ZooKeeper error in solr.log

2019-09-02 Thread David M Giannone
Get Outlook for Android From: Gell-Holleron, Daniel Sent: Monday, September 2, 2019 8:04:42 AM To: solr-user@lucene.apache.org Subject: [EXTERNAL] RE: ZooKeeper error in solr.log Hello, The error I get in the log is below: 2019-09-02 0

SolrNet...multiValued.

2019-09-02 Thread Britto Raj
Hello All, I am working MNC and doing Prototype using SolrNet and Solr. I have few questions and got stuck not able to move forward.. 1. I have created a collection e.g Product without any field. 2. Using SolrNet.. created one Field like below. public class Product { [

Re: solr.HTMLStripCharFilterFactory issue

2019-09-02 Thread Big Gosh
Thank you for your answer, very clear and precise. On Mon, 2 Sep 2019 at 15:52, Erick Erickson wrote: > This is expected behavior, assuming you’re asking for your stored field as > part of the “fl” list. > > The default behavior is to store the raw input and return it unaltered. > The stored d

Re: solr.HTMLStripCharFilterFactory issue

2019-09-02 Thread Erick Erickson
This is expected behavior, assuming you’re asking for your stored field as part of the “fl” list. The default behavior is to store the raw input and return it unaltered. The stored data is recorded before _any_ analysis, including charFilters. Otherwise it’d be surprising to see, say, the origi

Re: solr.HTMLStripCharFilterFactory issue

2019-09-02 Thread Erik Hatcher
Analysis has no effect on the stored (what you get back from fl) value. The html stripping is happening behind the scenes on the indexed/searchable terms. Erik > On Sep 2, 2019, at 09:30, Big Gosh wrote: > > Hi, > > I've configured in solr 8.2.0 a field type as follows: > > position

solr.HTMLStripCharFilterFactory issue

2019-09-02 Thread Big Gosh
Hi, I've configured in solr 8.2.0 a field type as follows: I expected that the search returns the field stripped, instead HTML tags are still in the field. Is this correct or I mad

Re: Question: Solr perform well with thousands of replicas?

2019-09-02 Thread Erick Erickson
> why so many collection/replica: it's our customer needs, for example: each > database table mappings a collection. I always cringe when I see statements like this. What this means is that your customer doesn’t understand search and needs guidance in the proper use of any search technology, So

RE: ZooKeeper error in solr.log

2019-09-02 Thread Gell-Holleron, Daniel
Hello, The error I get in the log is below: 2019-09-02 09:17:22.812 ERROR (qtp1192171522-16) [ ] o.a.s.h.RequestHandlerBase java.lang.ArrayIndexOutOfBoundsException: 1 at org.apache.solr.handler.admin.ZookeeperStatusHandler.monitorZookeeper(ZookeeperStatusHandler.java:185) a

Re: ZooKeeper error in solr.log

2019-09-02 Thread Shawn Heisey
On 9/2/2019 4:03 AM, Gell-Holleron, Daniel wrote: I’m having trouble retrieving ZK status in SolrCloud. As far as I know, I’ve followed all configuration instructions. The ZK_HOST, ZK_CLIENT_TIMEOUT and SOLR_HOST settings are configured along with a myid file in the data directory. The zoo.cfg

ZooKeeper error in solr.log

2019-09-02 Thread Gell-Holleron, Daniel
Hello, I'm having trouble retrieving ZK status in SolrCloud. [cid:image008.png@01D5617D.76F32470] As far as I know, I've followed all configuration instructions. The ZK_HOST, ZK_CLIENT_TIMEOUT and SOLR_HOST settings are configured along with a myid file in the data directory. The zoo.cfg conta

Re: Question: Solr perform well with thousands of replicas?

2019-09-02 Thread Hongxu Ma
Thanks @Jörn and @Erick I enlarged my JVM memory, so far it's stable (but used many memory). And I will check lower-level errors according to your suggestion if error happens. About my scenario: * why so many collection/replica: it's our customer needs, for example: each database table mapp

RE: Idle Timeout while DIH indexing and implicit sharding in 7.4

2019-09-02 Thread Vadim Ivanov
Timeout causes DIH to finish with error message. So, If I check DIH response to be sure that DIH session have finished without any mistakes it causes some trouble :) I haven't check yet whether all records successfully imported to solr. Supposed that after timeout shard does not accept reco

Re: Idle Timeout while DIH indexing and implicit sharding in 7.4

2019-09-02 Thread Mikhail Khludnev
It seems like reasonable behavior. SolrWriter hangs while import is running, it holds DistributedZkUpdateProcessor, which holds SolrCmdDistributor, which keep client connection to shards open, which causes timeout. It might be worked around by supplying custom SolrWriter which finishes UpdateProces