beliefer commented on a change in pull request #27863: 
[SPARK-31109][MESOS][DOC] Add version information to the configuration of Mesos
URL: https://github.com/apache/spark/pull/27863#discussion_r390248850
 
 

 ##########
 File path: 
resource-managers/mesos/src/main/scala/org/apache/spark/deploy/mesos/config.scala
 ##########
 @@ -140,56 +155,64 @@ package object config {
       .doc("Network labels to pass to CNI plugins.  This is a comma-separated 
list " +
         "of key-value pairs, where each key-value pair has the format 
key:value. " +
         "Example: key1:val1,key2:val2")
+      .version("2.3.0")
       .stringConf
       .createOptional
 
   private[spark] val DRIVER_CONSTRAINTS =
     ConfigBuilder("spark.mesos.driver.constraints")
       .doc("Attribute based constraints on mesos resource offers. Applied by 
the dispatcher " +
         "when launching drivers. Default is to accept all offers with 
sufficient resources.")
+      .version("2.2.1")
       .stringConf
       .createWithDefault("")
 
   private[spark] val DRIVER_FRAMEWORK_ID =
     ConfigBuilder("spark.mesos.driver.frameworkId")
+      .version("2.1.0")
       .stringConf
       .createOptional
 
   private[spark] val EXECUTOR_URI =
-    ConfigBuilder("spark.executor.uri").stringConf.createOptional
+    
ConfigBuilder("spark.executor.uri").version("0.8.0").stringConf.createOptional
 
   private[spark] val PROXY_BASE_URL =
-    ConfigBuilder("spark.mesos.proxy.baseURL").stringConf.createOptional
+    
ConfigBuilder("spark.mesos.proxy.baseURL").version("2.3.0").stringConf.createOptional
 
   private[spark] val COARSE_MODE =
     ConfigBuilder("spark.mesos.coarse")
       .doc("If set to true, runs over Mesos clusters in \"coarse-grained\" 
sharing mode, where " +
         "Spark acquires one long-lived Mesos task on each machine. If set to 
false, runs over " +
         "Mesos cluster in \"fine-grained\" sharing mode, where one Mesos task 
is created per " +
         "Spark task.")
-      .booleanConf.createWithDefault(true)
+      .version("0.6.0")
 
 Review comment:
   No JIRA ID, commit ID: 
63051dd2bcc4bf09d413ff7cf89a37967edc33ba#diff-eaf125f56ce786d64dcef99cf446a751

----------------------------------------------------------------
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]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to