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/03/27 08:35:43 UTC

[GitHub] [spark] ulysses-you opened a new pull request #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

ulysses-you opened a new pull request #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049
 
 
   <!--
   Thanks for sending a pull request!  Here are some tips for you:
     1. If this is your first time, please read our contributor guidelines: https://spark.apache.org/contributing.html
     2. Ensure you have added or run the appropriate tests for your PR: https://spark.apache.org/developer-tools.html
     3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP][SPARK-XXXX] Your PR title ...'.
     4. Be sure to keep the PR description updated to reflect all changes.
     5. Please write your PR title to summarize what this PR proposes.
     6. If possible, provide a concise example to reproduce the issue for a faster review.
     7. If you want to add a new configuration, please read the guideline first for naming configurations in
        'core/src/main/scala/org/apache/spark/internal/config/ConfigEntry.scala'.
   -->
   
   ### What changes were proposed in this pull request?
   <!--
   Please clarify what changes you are proposing. The purpose of this section is to outline the changes and how this PR fixes the issue. 
   If possible, please consider writing useful notes for better and faster reviews in your PR. See the examples below.
     1. If you refactor some codes with changing classes, showing the class hierarchy will help reviewers.
     2. If you fix some SQL features, you can provide some references of other DBMSes.
     3. If there is design documentation, please add the link.
     4. If there is a discussion in the mailing list, please add the link.
   -->
   In `TaskSchedulerImpl`, Spark will upper schedule mode `SchedulingMode.withName(schedulingModeConf.toUpperCase(Locale.ROOT))`.
   But at other place, Spark does not. Such as [AllJobsPage](https://github.com/apache/spark/blob/5945d46c11a86fd85f9e65f24c2e88f368eee01f/core/src/main/scala/org/apache/spark/ui/jobs/AllJobsPage.scala#L304).
   
   ### Why are the changes needed?
   <!--
   Please clarify why the changes are needed. For instance,
     1. If you propose a new API, clarify the use case for a new API.
     2. If you fix a bug, you can clarify why it is a bug.
   -->
   We should have the same behavior.
   Before this pr, it's ok to set `spark.scheduler.mode=fair` logically. 
   But Spark will throw warn log
   ```
   java.util.NoSuchElementException: No value found for 'fair'
   	at scala.Enumeration.withName(Enumeration.scala:124)
   	at org.apache.spark.ui.jobs.AllJobsPage$$anonfun$22.apply(AllJobsPage.scala:314)
   	at org.apache.spark.ui.jobs.AllJobsPage$$anonfun$22.apply(AllJobsPage.scala:314)
   	at scala.Option.map(Option.scala:146)
   	at org.apache.spark.ui.jobs.AllJobsPage.render(AllJobsPage.scala:314)
   	at org.apache.spark.ui.WebUI$$anonfun$2.apply(WebUI.scala:90)
   	at org.apache.spark.ui.WebUI$$anonfun$2.apply(WebUI.scala:90)
   	at org.apache.spark.ui.JettyUtils$$anon$3.doGet(JettyUtils.scala:90)
   ```
   
   ### Does this PR introduce any user-facing change?
   <!--
   If yes, please clarify the previous behavior and the change this PR proposes - provide the console output, description and/or an example to show the behavior difference if possible.
   If no, write 'No'.
   -->
   Almost no. 
   
   ### How was this patch tested?
   <!--
   If tests were added, say they were added here. Please make sure to add some test cases that check the changes thoroughly including negative and positive cases if possible.
   If it was tested in a way different from regular unit tests, please clarify how you tested step by step, ideally copy and paste-able, so that other reviewers can test and check, and descendants can verify in the future.
   If tests were not added, please describe why they were not added and/or why it was difficult to add.
   -->
   Exists Test.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606398019
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120623/
   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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604882644
 
 
   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] Ngone51 commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
Ngone51 commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604902453
 
 
   > But if we use SchedulingMode at other place in future, we may forget upper it too. 
   
   
   Lets try:
   
   ```
   ConfigBuilder("spark.scheduler.mode")
         .stringConf
         .transform(_.toUpperCase(Locale.ROOT))
         .createWithDefault(SchedulingMode.FIFO.toString)
   ```

----------------------------------------------------------------
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] dongjoon-hyun commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-605157013
 
 
   Hi, @ulysses-you . Please update the PR title and description accordingly.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604974623
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120483/
   Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606086676
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25303/
   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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604882652
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25180/
   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] ulysses-you commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
ulysses-you commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604899525
 
 
   > I think we should uppercase every where instead of lowercase, which is not acceptable for `SchedulingMode`.
   
   Yeah. It can be. 
   But if we use `SchedulingMode` at other place in future, we may forget upper it too.  I think the most simple way is keeping the raw string.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604958370
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120474/
   Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604974030
 
 
   **[Test build #120483 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120483/testReport)** for PR 28049 at commit [`de1df1e`](https://github.com/apache/spark/commit/de1df1e8854d33be7859ea4e08ac1fae499c20ac).
    * This patch **fails Spark unit 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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604974616
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604913130
 
 
   **[Test build #120483 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120483/testReport)** for PR 28049 at commit [`de1df1e`](https://github.com/apache/spark/commit/de1df1e8854d33be7859ea4e08ac1fae499c20ac).

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604882652
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25180/
   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] Ngone51 commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
Ngone51 commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606350219
 
 
   retest this please.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606352561
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25325/
   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 commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604882119
 
 
   **[Test build #120474 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120474/testReport)** for PR 28049 at commit [`5d3ff51`](https://github.com/apache/spark/commit/5d3ff516de8f28e981121597de81c0b27986ae47).

----------------------------------------------------------------
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] ulysses-you commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
ulysses-you commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-607549935
 
 
   @dongjoon-hyun Thanks for merging.  Thanks @Ngone51 .

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606085993
 
 
   **[Test build #120599 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120599/testReport)** for PR 28049 at commit [`de1df1e`](https://github.com/apache/spark/commit/de1df1e8854d33be7859ea4e08ac1fae499c20ac).

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606352561
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25325/
   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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606352555
 
 
   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] SparkQA commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604913130
 
 
   **[Test build #120483 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120483/testReport)** for PR 28049 at commit [`de1df1e`](https://github.com/apache/spark/commit/de1df1e8854d33be7859ea4e08ac1fae499c20ac).

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606398014
 
 
   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] SparkQA commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606397470
 
 
   **[Test build #120623 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120623/testReport)** for PR 28049 at commit [`de1df1e`](https://github.com/apache/spark/commit/de1df1e8854d33be7859ea4e08ac1fae499c20ac).
    * 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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604882644
 
 
   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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604913705
 
 
   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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604958365
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606085993
 
 
   **[Test build #120599 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120599/testReport)** for PR 28049 at commit [`de1df1e`](https://github.com/apache/spark/commit/de1df1e8854d33be7859ea4e08ac1fae499c20ac).

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604913705
 
 
   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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606398019
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120623/
   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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604974616
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
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] Ngone51 commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
Ngone51 commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606083874
 
 
   retest this please.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604882119
 
 
   **[Test build #120474 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120474/testReport)** for PR 28049 at commit [`5d3ff51`](https://github.com/apache/spark/commit/5d3ff516de8f28e981121597de81c0b27986ae47).

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606086659
 
 
   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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604974623
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120483/
   Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606398014
 
 
   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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604958370
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120474/
   Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606086676
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25303/
   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 commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606149176
 
 
   **[Test build #120599 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120599/testReport)** for PR 28049 at commit [`de1df1e`](https://github.com/apache/spark/commit/de1df1e8854d33be7859ea4e08ac1fae499c20ac).
    * This patch **fails Spark unit 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 commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606149665
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606149665
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604957981
 
 
   **[Test build #120474 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120474/testReport)** for PR 28049 at commit [`5d3ff51`](https://github.com/apache/spark/commit/5d3ff516de8f28e981121597de81c0b27986ae47).
    * This patch **fails Spark unit 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] Ngone51 commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
Ngone51 commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-607048295
 
 
   LGTM, cc @dongjoon-hyun 

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606149671
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120599/
   Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604913709
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25188/
   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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606086659
 
 
   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] SparkQA removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606352230
 
 
   **[Test build #120623 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120623/testReport)** for PR 28049 at commit [`de1df1e`](https://github.com/apache/spark/commit/de1df1e8854d33be7859ea4e08ac1fae499c20ac).

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606352230
 
 
   **[Test build #120623 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120623/testReport)** for PR 28049 at commit [`de1df1e`](https://github.com/apache/spark/commit/de1df1e8854d33be7859ea4e08ac1fae499c20ac).

----------------------------------------------------------------
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] dongjoon-hyun closed pull request #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun closed pull request #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049
 
 
   

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604958365
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606149671
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120599/
   Test FAILed.

----------------------------------------------------------------
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 #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-606352555
 
 
   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 #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #28049: [SPARK-31285][CORE] Do not upper case schedule mode in TaskSchedulerImpl
URL: https://github.com/apache/spark/pull/28049#issuecomment-604913709
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25188/
   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] ulysses-you commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config

Posted by GitBox <gi...@apache.org>.
ulysses-you commented on issue #28049: [SPARK-31285][CORE] uppercase schedule mode string at config
URL: https://github.com/apache/spark/pull/28049#issuecomment-605410964
 
 
   > Hi, @ulysses-you . Please update the PR title and description accordingly.
   
   Done.
   
   The failed test seems fly away. Please help test.

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