[GitHub] [lucene-solr] mbwaheed commented on a change in pull request #1369: SOLR-14213: Allow enabling shared store to be scriptable

2020-03-26 Thread GitBox
mbwaheed commented on a change in pull request #1369: SOLR-14213: Allow 
enabling shared store to be scriptable
URL: https://github.com/apache/lucene-solr/pull/1369#discussion_r398892436
 
 

 ##
 File path: solr/bin/solr
 ##
 @@ -1975,6 +1975,10 @@ if [ "$SOLR_MODE" == 'solrcloud' ]; then
 
 CLOUD_MODE_OPTS+=('-DzkRun')
   fi
+  
+  if [ -n "$SHARE_STORE_ENABLED" ]; then
 
 Review comment:
   Why not SHARE**D**_STORE_ENABLED?


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

-
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org



[GitHub] [lucene-solr] mbwaheed commented on a change in pull request #1369: SOLR-14213: Allow enabling shared store to be scriptable

2020-03-26 Thread GitBox
mbwaheed commented on a change in pull request #1369: SOLR-14213: Allow 
enabling shared store to be scriptable
URL: https://github.com/apache/lucene-solr/pull/1369#discussion_r398893770
 
 

 ##
 File path: solr/core/src/java/org/apache/solr/core/SolrXmlConfig.java
 ##
 @@ -568,4 +568,17 @@ private static PluginInfo 
getTracerPluginInfo(XmlConfigFile config) {
 Node node = config.getNode("solr/tracerConfig", false);
 return (node == null) ? null : new PluginInfo(node, "tracerConfig", false, 
true);
   }
+  
+  private static SharedStoreConfig loadSharedStoreConfig(NamedList nl) 
{
+if (nl == null) {
+  // shared store is not configured
+  return null;
+} 
+boolean enabled = Boolean.parseBoolean(
+required("sharedStore", "sharedStoreEnabled", removeValue(nl, 
"sharedStoreEnabled")));
+if (enabled) {
+  return new SharedStoreConfig();
+}
 
 Review comment:
   Maybe it works for now, but later we might want to properly add an enabled 
property to SharedStoreConfig and create SharedStoreConfig even enabled is 
false. 


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

-
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org