You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Alexandru Fluerici (JIRA)" <ji...@apache.org> on 2016/05/17 10:56:13 UTC

[jira] [Commented] (SOLR-9099) Make a dataimport.properties in the core folder when using a shared config

    [ https://issues.apache.org/jira/browse/SOLR-9099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15286394#comment-15286394 ] 

Alexandru Fluerici commented on SOLR-9099:
------------------------------------------

feedback on this idea ? I guess more code should be added, where it should check if the current core is using a configset and if so it should use the data dir of the core

> Make a dataimport.properties in the core folder when using a shared config
> --------------------------------------------------------------------------
>
>                 Key: SOLR-9099
>                 URL: https://issues.apache.org/jira/browse/SOLR-9099
>             Project: Solr
>          Issue Type: Bug
>          Components: contrib - DataImportHandler
>    Affects Versions: 5.5, 6.0
>            Reporter: Alexandru Fluerici
>              Labels: easyfix, newbie, patch
>             Fix For: 5.5, 6.0
>
>
> When you have multiple cores with the same shared config there is only one "dataimport.properties" file that is located in the shared config directory, and gets overwritten when one of the cores gets an update.
> This can lead to incomplete data as all the cores will consider that an update was made even if that update was just run only on a specific core.
> At the moment I have made a change to my local SOLR class but it would be nice to see this in the repo itself.
> This is the change: 
> {code}
> @@ -117,7 +117,7 @@ public class SimplePropertiesWriter extends DIHProperties {
>        if (core == null) {
>          configDir = SolrResourceLoader.locateSolrHome().toString();
>        } else {
> -        configDir = core.getResourceLoader().getConfigDir();
> +        configDir = core.getResourceLoader().getDataDir();
>        }
>      }
>    }
> {code}



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

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org