You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by "Noble Paul (JIRA)" <ji...@apache.org> on 2009/08/10 13:11:14 UTC

[jira] Updated: (SOLR-1355) add an enable value in master/slave configuration

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

Noble Paul updated SOLR-1355:
-----------------------------

      Description: 
add an enable tag for master/slave so that it can be changed in the runtime with a variable 
{code:xml}

  <lst name="master">
    <!-- instead of true keep a variable ${enable.master} and use it instead of hardcoding the value-->
    <str name="enable">true</str>
    <str name="replicateAfter">commit</str>
    <str name="confFiles">schema.xml,stopwords.txt</str>
 </lst>
 <lst name="slave">
   <str name="enable">true</str>
   <str name="masterUrl">http://localhost:8983/solr/replication</str>
   <str name="pollInterval">00:00:60</str>
 </lst>
{code}

  was:
add an enable tag for master/slave so that it can be changed in the runtime with a variable 
{code:xml}

  <lst name="master">
    <str name="enable">${enable.master}</str>
    <str name="replicateAfter">commit</str>
    <str name="confFiles">schema.xml,stopwords.txt</str>
 </lst>
 <lst name="slave">
       <str name="enable">${enable.slave}</str>
   <str name="masterUrl">http://localhost:8983/solr/replication</str>
   <str name="pollInterval">00:00:60</str>
 </lst>
{code}

    Fix Version/s: 1.4

> add an enable value in master/slave configuration
> -------------------------------------------------
>
>                 Key: SOLR-1355
>                 URL: https://issues.apache.org/jira/browse/SOLR-1355
>             Project: Solr
>          Issue Type: Improvement
>          Components: replication (java)
>            Reporter: Noble Paul
>            Assignee: Noble Paul
>            Priority: Minor
>             Fix For: 1.4
>
>
> add an enable tag for master/slave so that it can be changed in the runtime with a variable 
> {code:xml}
>   <lst name="master">
>     <!-- instead of true keep a variable ${enable.master} and use it instead of hardcoding the value-->
>     <str name="enable">true</str>
>     <str name="replicateAfter">commit</str>
>     <str name="confFiles">schema.xml,stopwords.txt</str>
>  </lst>
>  <lst name="slave">
>    <str name="enable">true</str>
>    <str name="masterUrl">http://localhost:8983/solr/replication</str>
>    <str name="pollInterval">00:00:60</str>
>  </lst>
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.