s0nskar commented on code in PR #3719:
URL: https://github.com/apache/celeborn/pull/3719#discussion_r3879143565
##########
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala:
##########
@@ -6901,6 +6903,24 @@ object CelebornConf extends Logging {
.booleanConf
.createWithDefault(true)
+ val TAGS_WORKER_REGISTRATION_ENABLED: ConfigEntry[Boolean] =
+ buildConf("celeborn.tags.worker.registration.enabled")
+ .categories("master")
+ .version("0.7.0")
Review Comment:
Addressed
##########
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala:
##########
@@ -6901,6 +6903,24 @@ object CelebornConf extends Logging {
.booleanConf
.createWithDefault(true)
+ val TAGS_WORKER_REGISTRATION_ENABLED: ConfigEntry[Boolean] =
+ buildConf("celeborn.tags.worker.registration.enabled")
+ .categories("master")
+ .version("0.7.0")
+ .doc("When true, the master honors tags advertised by workers at
registration " +
+ "(merged with the config-store tags). When false, worker-supplied tags
are ignored.")
+ .booleanConf
+ .createWithDefault(true)
+
+ val WORKER_TAGS: ConfigEntry[Seq[String]] =
+ buildConf("celeborn.worker.tags")
+ .categories("worker")
+ .version("0.7.0")
Review Comment:
Addressed
--
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]