You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2020/02/26 08:03:32 UTC

[GitHub] [spark] beliefer opened a new pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

beliefer opened a new pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704
 
 
   ### What changes were proposed in this pull request?
   1.Add version information to the configuration of `Python`.
   2.Update the docs of `Python`.
   
   I sorted out some information show below.
   
   Item name | Since version | JIRA ID | Commit ID | Note
   -- | -- | -- | -- | --
   spark.python.worker.reuse | 1.2.0 | SPARK-3030 | 2aea0da84c58a179917311290083456dfa043db7#diff-0a67bc4d171abe4df8eb305b0f4123a2 |  
   spark.python.task.killTimeout | 2.2.2 | SPARK-22535 | be68f86e11d64209d9e325ce807025318f383bea#diff-0a67bc4d171abe4df8eb305b0f4123a2 |  
   spark.python.use.daemon | 2.3.0 | SPARK-22554 | 57c5514de9dba1c14e296f85fb13fef23ce8c73f#diff-9008ad45db34a7eee2e265a50626841b |  
   spark.python.daemon.module | 2.4.0 | SPARK-22959 | afae8f2bc82597593595af68d1aa2d802210ea8b#diff-9008ad45db34a7eee2e265a50626841b |  
   spark.python.worker.module | 2.4.0 | SPARK-22959 | afae8f2bc82597593595af68d1aa2d802210ea8b#diff-9008ad45db34a7eee2e265a50626841b |  
   spark.executor.pyspark.memory | 2.4.0 | SPARK-25004 | 7ad18ee9f26e75dbe038c6034700f9cd4c0e2baa#diff-6bdad48cfc34314e89599655442ff210 |  
   
   
   
   ### Why are the changes needed?
   Supplemental configuration version information.
   
   
   ### Does this PR introduce any user-facing change?
   No
   
   
   ### How was this patch tested?
   Exists UT
   

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#discussion_r384328371
 
 

 ##########
 File path: core/src/main/scala/org/apache/spark/internal/config/Python.scala
 ##########
 @@ -22,26 +22,32 @@ import org.apache.spark.network.util.ByteUnit
 
 private[spark] object Python {
   val PYTHON_WORKER_REUSE = ConfigBuilder("spark.python.worker.reuse")
+    .version("1.2.0")
     .booleanConf
     .createWithDefault(true)
 
   val PYTHON_TASK_KILL_TIMEOUT = ConfigBuilder("spark.python.task.killTimeout")
+    .version("2.2.2")
 
 Review comment:
   SPARK-22535, commit ID: be68f86e11d64209d9e325ce807025318f383bea#diff-0a67bc4d171abe4df8eb305b0f4123a2

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-609306084
 
 
   Merged to branch-3.0 too

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#discussion_r384328926
 
 

 ##########
 File path: core/src/main/scala/org/apache/spark/internal/config/Python.scala
 ##########
 @@ -22,26 +22,32 @@ import org.apache.spark.network.util.ByteUnit
 
 private[spark] object Python {
   val PYTHON_WORKER_REUSE = ConfigBuilder("spark.python.worker.reuse")
+    .version("1.2.0")
     .booleanConf
     .createWithDefault(true)
 
   val PYTHON_TASK_KILL_TIMEOUT = ConfigBuilder("spark.python.task.killTimeout")
+    .version("2.2.2")
     .timeConf(TimeUnit.MILLISECONDS)
     .createWithDefaultString("2s")
 
   val PYTHON_USE_DAEMON = ConfigBuilder("spark.python.use.daemon")
+    .version("2.3.0")
     .booleanConf
     .createWithDefault(true)
 
   val PYTHON_DAEMON_MODULE = ConfigBuilder("spark.python.daemon.module")
+    .version("2.4.0")
     .stringConf
     .createOptional
 
   val PYTHON_WORKER_MODULE = ConfigBuilder("spark.python.worker.module")
+    .version("2.4.0")
 
 Review comment:
   SPARK-22959, commit ID: afae8f2bc82597593595af68d1aa2d802210ea8b#diff-9008ad45db34a7eee2e265a50626841b

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591359720
 
 
   **[Test build #118953 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118953/testReport)** for PR 27704 at commit [`341437b`](https://github.com/apache/spark/commit/341437b012521e2fc48724954eac93a441bf7c4f).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591360613
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118953/
   Test PASSed.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591292579
 
 
   **[Test build #118953 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118953/testReport)** for PR 27704 at commit [`341437b`](https://github.com/apache/spark/commit/341437b012521e2fc48724954eac93a441bf7c4f).

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#discussion_r384328521
 
 

 ##########
 File path: core/src/main/scala/org/apache/spark/internal/config/Python.scala
 ##########
 @@ -22,26 +22,32 @@ import org.apache.spark.network.util.ByteUnit
 
 private[spark] object Python {
   val PYTHON_WORKER_REUSE = ConfigBuilder("spark.python.worker.reuse")
+    .version("1.2.0")
     .booleanConf
     .createWithDefault(true)
 
   val PYTHON_TASK_KILL_TIMEOUT = ConfigBuilder("spark.python.task.killTimeout")
+    .version("2.2.2")
     .timeConf(TimeUnit.MILLISECONDS)
     .createWithDefaultString("2s")
 
   val PYTHON_USE_DAEMON = ConfigBuilder("spark.python.use.daemon")
+    .version("2.3.0")
 
 Review comment:
   SPARK-22554, commit ID: 57c5514de9dba1c14e296f85fb13fef23ce8c73f#diff-9008ad45db34a7eee2e265a50626841b

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591293160
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591360613
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118953/
   Test PASSed.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#discussion_r384329063
 
 

 ##########
 File path: core/src/main/scala/org/apache/spark/internal/config/Python.scala
 ##########
 @@ -22,26 +22,32 @@ import org.apache.spark.network.util.ByteUnit
 
 private[spark] object Python {
   val PYTHON_WORKER_REUSE = ConfigBuilder("spark.python.worker.reuse")
+    .version("1.2.0")
     .booleanConf
     .createWithDefault(true)
 
   val PYTHON_TASK_KILL_TIMEOUT = ConfigBuilder("spark.python.task.killTimeout")
+    .version("2.2.2")
     .timeConf(TimeUnit.MILLISECONDS)
     .createWithDefaultString("2s")
 
   val PYTHON_USE_DAEMON = ConfigBuilder("spark.python.use.daemon")
+    .version("2.3.0")
     .booleanConf
     .createWithDefault(true)
 
   val PYTHON_DAEMON_MODULE = ConfigBuilder("spark.python.daemon.module")
+    .version("2.4.0")
     .stringConf
     .createOptional
 
   val PYTHON_WORKER_MODULE = ConfigBuilder("spark.python.worker.module")
+    .version("2.4.0")
     .stringConf
     .createOptional
 
   val PYSPARK_EXECUTOR_MEMORY = ConfigBuilder("spark.executor.pyspark.memory")
+    .version("2.4.0")
 
 Review comment:
   SPARK-25004, commit ID: 7ad18ee9f26e75dbe038c6034700f9cd4c0e2baa#diff-6bdad48cfc34314e89599655442ff210

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591293167
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23702/
   Test PASSed.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon closed pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
HyukjinKwon closed pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704
 
 
   

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591292579
 
 
   **[Test build #118953 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118953/testReport)** for PR 27704 at commit [`341437b`](https://github.com/apache/spark/commit/341437b012521e2fc48724954eac93a441bf7c4f).

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591293167
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23702/
   Test PASSed.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#discussion_r384328692
 
 

 ##########
 File path: core/src/main/scala/org/apache/spark/internal/config/Python.scala
 ##########
 @@ -22,26 +22,32 @@ import org.apache.spark.network.util.ByteUnit
 
 private[spark] object Python {
   val PYTHON_WORKER_REUSE = ConfigBuilder("spark.python.worker.reuse")
+    .version("1.2.0")
     .booleanConf
     .createWithDefault(true)
 
   val PYTHON_TASK_KILL_TIMEOUT = ConfigBuilder("spark.python.task.killTimeout")
+    .version("2.2.2")
     .timeConf(TimeUnit.MILLISECONDS)
     .createWithDefaultString("2s")
 
   val PYTHON_USE_DAEMON = ConfigBuilder("spark.python.use.daemon")
+    .version("2.3.0")
     .booleanConf
     .createWithDefault(true)
 
   val PYTHON_DAEMON_MODULE = ConfigBuilder("spark.python.daemon.module")
+    .version("2.4.0")
 
 Review comment:
   SPARK-22959, commit ID: afae8f2bc82597593595af68d1aa2d802210ea8b#diff-9008ad45db34a7eee2e265a50626841b

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
beliefer commented on a change in pull request #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#discussion_r384328175
 
 

 ##########
 File path: core/src/main/scala/org/apache/spark/internal/config/Python.scala
 ##########
 @@ -22,26 +22,32 @@ import org.apache.spark.network.util.ByteUnit
 
 private[spark] object Python {
   val PYTHON_WORKER_REUSE = ConfigBuilder("spark.python.worker.reuse")
+    .version("1.2.0")
 
 Review comment:
   SPARK-3030, commit ID: 2aea0da84c58a179917311290083456dfa043db7#diff-0a67bc4d171abe4df8eb305b0f4123a2

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591360603
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591737779
 
 
   Merged to master.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591360603
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27704: [SPARK-30909][CORE][DOC] Add version information to the configuration of Python
URL: https://github.com/apache/spark/pull/27704#issuecomment-591293160
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org