You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Emir Arnautović <em...@sematext.com> on 2018/06/01 07:54:40 UTC

Re: Update Solr Document

Hi Rushikesh,
There is no update of documents in Solr - it is always indexing a new document to a new segment. That means that indexing operation is equally heavy on any collection. But that does not mean that updates will take equal time. There are other activities that are heavier on larger indices like commits and segment merges that can prevent updates to be visible or can exhaust resources so that indexing new document takes longer. You will usually indexing throughput going down as index size goes up.

HTH,
Emir
--
Monitoring - Log Management - Alerting - Anomaly Detection
Solr & Elasticsearch Consulting Support Training - http://sematext.com/



> On 31 May 2018, at 14:59, Rushikesh Garadade <ru...@gmail.com> wrote:
> 
> Hi solr-user,
> 
> I am using Solr 7.2. I am newbie in solr , please forgive my nuisance.
> 
> 
> Lets say I have one solr collection(say Collection X) with 100
> Documents(lets say 5 fields in one Document) and I have another collection(say
> Collection Y) with 1 lakh Documents (same 5 fields in one Document that we
> have in Collection X).
> 
> Then,
> If I update only one field from one document from collection THEN
> Is "time required to update in collection X" == "time required to update in
> collection Y" ?
> 
> question is: Is solr updates individual doc irrespective of collection
> size? if not how re-indexing works on Document update?
> 
> Thanks,
> Rushikesh Garadade