sanpwc commented on a change in pull request #103:
URL: https://github.com/apache/ignite-3/pull/103#discussion_r620217513
##########
File path:
modules/api/src/main/java/org/apache/ignite/configuration/schemas/runner/LocalConfigurationSchema.java
##########
@@ -15,23 +15,32 @@
* limitations under the License.
*/
-package org.apache.ignite.configuration.extended;
+package org.apache.ignite.configuration.schemas.runner;
import org.apache.ignite.configuration.annotation.ConfigValue;
import org.apache.ignite.configuration.annotation.ConfigurationRoot;
+import org.apache.ignite.configuration.annotation.Value;
import org.apache.ignite.configuration.storage.ConfigurationType;
/**
- *
+ * Local node configuration schema.
*/
@SuppressWarnings("PMD.UnusedPrivateField")
@ConfigurationRoot(rootName = "local", type = ConfigurationType.LOCAL)
public class LocalConfigurationSchema {
- /** */
+ /** It is a copy of appropriate property from the cluster configuration. */
+ @Value(hasDefault = true)
+ String[] metastorageMembers = new String[0];
+
+ /**
+ *
+ */
@ConfigValue
private BaselineConfigurationSchema baseline;
Review comment:
Seems that we don't need given field here. BaselineConfigutation will
have ConfiguarionType.DISTIRBUTED.
--
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:
[email protected]