Solr Hit Highlighting

2016-10-24 Thread Al Hudson
Hello All, I’m new to the world of Solr and hoping someone on this list can help me hit highlighting in solr. I am trying to set up a hit highlighting in Solr and have been seeing some strange issues. My core.xml file has a single tag which houses all the text in a document. Using the

Re: OOM Error

2016-10-24 Thread Susheel Kumar
Thanks, Pushkar. The Solr was already killed by OOM script so i believe we can't get heap dump. Hi Shawn, I used Solr service scripts to launch Solr and it looks like bin/solr doesn't include by default the below JVM parameter. "-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/path/to/the/dump"

Re: Related Search

2016-10-24 Thread Erick Erickson
Rick: The priority isn't particularly helpful for two reasons: 1> it's the default so often gets set without intent. 2> what the originator thinks of as major may or may not translate into someone actually doing work on it. In this case there's a lot of work that'd need to be done. "some model"

Related Search

2016-10-24 Thread Rick Leir
Hi all, There is an issue 'Create a Related Search Component' which has been open for some years now. It has a priority: major. https://issues.apache.org/jira/browse/SOLR-2080 I discovered it linked from Lucidwork's very useful blog on ecommerce:

Re: OOM Error

2016-10-24 Thread Shawn Heisey
On 10/24/2016 4:27 PM, Susheel Kumar wrote: > I am seeing OOM script killed solr (solr 6.0.0) on couple of our VM's > today. So far our solr cluster has been running fine but suddenly today > many of the VM's Solr instance got killed. I had 8G of heap allocated on 64 > GB machines with 20+ GB of

Re: OOM Error

2016-10-24 Thread Pushkar Raste
Did you look into the heap dump ? On Mon, Oct 24, 2016 at 6:27 PM, Susheel Kumar wrote: > Hello, > > I am seeing OOM script killed solr (solr 6.0.0) on couple of our VM's > today. So far our solr cluster has been running fine but suddenly today > many of the VM's Solr

OOM Error

2016-10-24 Thread Susheel Kumar
Hello, I am seeing OOM script killed solr (solr 6.0.0) on couple of our VM's today. So far our solr cluster has been running fine but suddenly today many of the VM's Solr instance got killed. I had 8G of heap allocated on 64 GB machines with 20+ GB of index size on each shards. What could be

RE: CachedSqlEntityProcessor with delta-import

2016-10-24 Thread Mohan, Sowmya
Thanks James. That's what I was using before. But I also wanted to perform deletes using deletedPkQuery and hence switched to delta imports. The problem with using deletedPkQuery with the full import is that dataimporter.last_index_time is no longer accurate. Below is an example of my

Re: Solr 6.0 Highlighting Not Working

2016-10-24 Thread jimtronic
Perhaps you need to wrap your inner "" and "" tags in the CDATA structure? -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-6-0-Highlighting-Not-Working-tp4302787p4302835.html Sent from the Solr - User mailing list archive at Nabble.com.

autoAddReplicas:true not working

2016-10-24 Thread Chetas Joshi
Hello, I have the following configuration for the Solr cloud and a Solr collection This is Solr on HDFS and Solr version I am using is 5.5.0 No. of hosts: 52 (Solr Cloud) shard count: 50 replicationFactor: 1 MaxShardsPerNode: 1 autoAddReplicas: true Now, one of my

Solr Cloud A/B Deployment Issue

2016-10-24 Thread jimtronic
We are running into a timing issue when trying to do a scripted deployment of our Solr Cloud cluster. Scenario to reproduce (sometimes): 1. launch 3 clean solr nodes connected to zookeeper. 2. create a 1 shard collection with replicas on each node. 3. load data (more will make the problem worse)

Solr Job opportunity - Noida, India

2016-10-24 Thread Aman Tandon
Hi Everyone, If anyone is interested to apply for noida, India location for Solr Developer position, then please forward me your resume with the contact number and email. *Company Name: Genpact Headstrong Capital Markey* *Experience required:- 3 - 7 years* With Regards Aman Tandon

Solr 6.0 Highlighting Not Working

2016-10-24 Thread Teague James
Can someone please help me troubleshoot my Solr 6.0 highlighting issue? I have a production Solr 4.9.0 unit configured to highlight responses and it has worked for a long time now without issues. I have recently been testing Solr 6.0 and have been unable to get highlighting to work. I used my 4.9

Re: Using nested subdocuments in SOLR

2016-10-24 Thread Erick Erickson
1> I'd add a field "type" (or something) that had some way to distinguish the two records. Consider "product" and "company" for the two field values. As Alexandre said, internally these are _separate_ records. 2> Each record needs a unique ID ( in your schema). If you don't, subsequent records

RE: Using nested subdocuments in SOLR

2016-10-24 Thread Preeti Bhat
HI Alexandre, I have below questions. 1) need to tag your parent/child documents with document type-> What do we mean by this? Should this be done in the schema.xml /managed-schema. 2) When we say individual id's what do we mean? I am asking this because, I might have the child ids and parent

Re: Using nested subdocuments in SOLR

2016-10-24 Thread Alexandre Rafalovitch
(tl;dr) Yes Solr supports nested documents, with the company link instances becoming children records/documents. However, they are stored separately, so the parent and child documents would be searched and return separately unless you use appropriate queries, document transformers, etc. You'd

RE: Can we query across collections in SOLR?

2016-10-24 Thread Preeti Bhat
Thanks every one for the insights, I am able to get some ideas from the links. Thanks and Regards, Preeti Bhat Shore Group Associates LLC (C) +91-996-644-8187 www.ShoreGroupAssociates.com -Original Message- From: Dennis Gove [mailto:dpg...@gmail.com] Sent: Sunday, October 23, 2016 10:06

Using nested subdocuments in SOLR

2016-10-24 Thread Preeti Bhat
HI All, I have a requirement which needs the documents to be stored in the below format. Could someone please advise on whether this is possible in SOLR? { Id:1 Name:"ABC" CompanyLink:[ {CompanyId:2, email:abc@dba.com} , {CompanyId:4, email:abc@dbcc.com} ] } Is

Re: Transactions behaviour on Batch insert / update

2016-10-24 Thread Mikhail Khludnev
Hello Ganesh, By default the half of batch fails. https://lucene.apache.org/solr/6_2_1/solr-core/org/apache/solr/update/processor/TolerantUpdateProcessorFactory.html can fail only certain problematic rows. FWIW, you can send delete for uncommitted documents, it wipes them from ram buffer, that's

Transactions behaviour on Batch insert / update

2016-10-24 Thread Ganesh M
Hi all, We are planning to make use of batch update / insert of solr documents, with batch size of around 100 documents per batch. Bit curious on how transactions are maintained per batch. I do knew SOLR is not meant for transaction based, but want to know whether SOLR is designed to throw