[ 
https://issues.apache.org/jira/browse/SOLR-6820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Timothy Potter reopened SOLR-6820:
----------------------------------

Copy-and-paste error in the configset solrconfig.xml files, the int parameter 
is missing the name!

{code}
    <updateLog>
      <str name="dir">${solr.ulog.dir:}</str>
      <int name="">${solr.ulog.numVersionBuckets:65536}</int>
    </updateLog>
{code}

but should be:

{code}
    <updateLog>
      <str name="dir">${solr.ulog.dir:}</str>
      <int name="numVersionBuckets">${solr.ulog.numVersionBuckets:65536}</int>
    </updateLog>
{code}

It doesn't look like this causes any failures but looks bad.

> The sync on the VersionInfo bucket in DistributedUpdateProcesser#addDocument 
> appears to be a large bottleneck when using replication.
> -------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: SOLR-6820
>                 URL: https://issues.apache.org/jira/browse/SOLR-6820
>             Project: Solr
>          Issue Type: Sub-task
>          Components: SolrCloud
>            Reporter: Mark Miller
>            Assignee: Timothy Potter
>             Fix For: Trunk, 5.2
>
>         Attachments: SOLR-6820.patch, threads.png
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to