Mukvin commented on code in PR #674:
URL: https://github.com/apache/geaflow/pull/674#discussion_r2533772894
##########
geaflow/geaflow-common/src/main/java/org/apache/geaflow/common/config/keys/ExecutionConfigKeys.java:
##########
@@ -638,4 +638,38 @@ public class ExecutionConfigKeys implements Serializable {
.defaultValue(false)
.description("if enable detail job metric");
+ // ------------------------------------------------------------------------
+ // cluster constants
+ // ------------------------------------------------------------------------
+
+ public static final ConfigKey CLUSTER_DRIVER_PREFIX = ConfigKeys
+ .key("geaflow.cluster.driver.prefix")
+ .defaultValue("driver-")
+ .description("driver name prefix");
+
+ public static final ConfigKey CLUSTER_CONTAINER_PREFIX = ConfigKeys
+ .key("geaflow.cluster.container.prefix")
+ .defaultValue("container-")
+ .description("container name prefix");
+
+ public static final ConfigKey CLUSTER_MASTER_LOG_SUFFIX = ConfigKeys
+ .key("geaflow.cluster.master.log.suffix")
+ .defaultValue("master.log")
+ .description("master log file suffix");
+
+ public static final ConfigKey CLUSTER_DRIVER_LOG_SUFFIX = ConfigKeys
+ .key("geaflow.cluster.driver.log.suffix")
+ .defaultValue("driver.log")
+ .description("driver log file suffix");
+
+ public static final ConfigKey CLUSTER_CONTAINER_LOG_SUFFIX = ConfigKeys
+ .key("geaflow.cluster.container.log.suffix")
+ .defaultValue("container.log")
+ .description("container log file suffix");
+
+ public static final ConfigKey CLUSTER_DEFAULT_MASTER_ID = ConfigKeys
+ .key("geaflow.cluster.default.master.id")
+ .defaultValue(0)
+ .description("default master id");
Review Comment:
fiexed, remove useless changed.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]