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/13 19:06:20 UTC

[GitHub] [spark] dongjoon-hyun opened a new pull request #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

dongjoon-hyun opened a new pull request #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566
 
 
   ### What changes were proposed in this pull request?
   
   This PR aims to fix `dev-run-integration-tests.sh` to ignore empty params correctly.
   
   ### Why are the changes needed?
   
   The following script run `mvn` integration test like the following.
   ```
   $ resource-managers/kubernetes/integration-tests/dev/dev-run-integration-tests.sh
   ...
   build/mvn integration-test 
   -f /Users/dongjoon/APACHE/spark/pom.xml 
   -pl resource-managers/kubernetes/integration-tests 
   -am
   -Pscala-2.12
   -Pkubernetes
   -Pkubernetes-integration-tests 
   -Djava.version=8 
   -Dspark.kubernetes.test.sparkTgz=N/A 
   -Dspark.kubernetes.test.imageTag=N/A 
   -Dspark.kubernetes.test.imageRepo=docker.io/kubespark 
   -Dspark.kubernetes.test.deployMode=minikube 
   -Dtest.include.tags=k8s 
   -Dspark.kubernetes.test.namespace= 
   -Dspark.kubernetes.test.serviceAccountName= 
   -Dspark.kubernetes.test.kubeConfigContext= 
   -Dspark.kubernetes.test.master= 
   -Dtest.exclude.tags= 
   -Dspark.kubernetes.test.jvmImage=spark 
   -Dspark.kubernetes.test.pythonImage=spark-py 
   -Dspark.kubernetes.test.rImage=spark-r
   ```
   
   After this PR, the empty parameters like the following will be skipped like the original design.
   ```
   -Dspark.kubernetes.test.namespace= 
   -Dspark.kubernetes.test.serviceAccountName= 
   -Dspark.kubernetes.test.kubeConfigContext= 
   -Dspark.kubernetes.test.master= 
   -Dtest.exclude.tags= 
   ```
   
   ### Does this PR introduce any user-facing change?
   
   No.
   
   ### How was this patch tested?
   
   Pass the Jenkins K8S integration 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] dongjoon-hyun commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585927353
 
 
   Thank you for review, @liyinan926 . I'll rebase in order to resolve the conflicts.

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun closed pull request #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566
 
 
   

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585932089
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118376/
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585965830
 
 
   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 commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585952743
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23133/
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585965839
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23134/
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585924562
 
 
   **[Test build #118376 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118376/testReport)** for PR 27566 at commit [`21125e5`](https://github.com/apache/spark/commit/21125e56875de11309a3ea98e124ed40b8261fa2).

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585929011
 
 
   **[Test build #118377 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118377/testReport)** for PR 27566 at commit [`069c203`](https://github.com/apache/spark/commit/069c203bcd8f5221b411d3467c850b72d4ffb199).

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585935509
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118377/
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585965003
 
 
   Kubernetes integration test status failure
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/23134/
   

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585952729
 
 
   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 commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585932089
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118376/
   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] dongjoon-hyun commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585937214
 
 
   Merged to master/3.0.

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585965839
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23134/
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585934971
 
 
   **[Test build #118377 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118377/testReport)** for PR 27566 at commit [`069c203`](https://github.com/apache/spark/commit/069c203bcd8f5221b411d3467c850b72d4ffb199).
    * 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] SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585931904
 
 
   **[Test build #118376 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118376/testReport)** for PR 27566 at commit [`21125e5`](https://github.com/apache/spark/commit/21125e56875de11309a3ea98e124ed40b8261fa2).
    * 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] SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585952523
 
 
   Kubernetes integration test starting
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/23134/
   

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585932082
 
 
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585935500
 
 
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585935500
 
 
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585943887
 
 
   Kubernetes integration test starting
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/23133/
   

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585965830
 
 
   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 commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585935509
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118377/
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585932082
 
 
   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] dongjoon-hyun commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
dongjoon-hyun commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585924567
 
 
   Hi, @liyinan926 . Could you review 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 commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585924562
 
 
   **[Test build #118376 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118376/testReport)** for PR 27566 at commit [`21125e5`](https://github.com/apache/spark/commit/21125e56875de11309a3ea98e124ed40b8261fa2).

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585952729
 
 
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585952743
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23133/
   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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585929011
 
 
   **[Test build #118377 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118377/testReport)** for PR 27566 at commit [`069c203`](https://github.com/apache/spark/commit/069c203bcd8f5221b411d3467c850b72d4ffb199).

----------------------------------------------------------------
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 #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27566: [SPARK-30816][K8S][TESTS] Fix dev-run-integration-tests.sh to ignore empty params
URL: https://github.com/apache/spark/pull/27566#issuecomment-585952629
 
 
   Kubernetes integration test status failure
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/23133/
   

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