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/10/01 19:43:12 UTC

[GitHub] [spark] shrutig opened a new pull request #29926: SPARK-32996][Web-UI][3.0] Handle empty ExecutorMetrics in ExecutorMetricsJsonSerializer

shrutig opened a new pull request #29926:
URL: https://github.com/apache/spark/pull/29926


   ### What changes were proposed in this pull request?
   This  change updates the test file location. This change was raised to `master` branch in `https://github.com/apache/spark/pull/29872`
   
   When `peakMemoryMetrics` in `ExecutorSummary` is `Option.empty`, then the `ExecutorMetricsJsonSerializer#serialize` method does not execute the `jsonGenerator.writeObject` method. This causes the json to be generated with `peakMemoryMetrics` key added to the serialized string, but no corresponding value. 
   This causes an error to be thrown when it is the next key `attributes` turn to be added to the json:
   `com.fasterxml.jackson.core.JsonGenerationException: Can not write a field name, expecting a value
   `
   
   
   ### Why are the changes needed?
   At the start of the Spark job, if `peakMemoryMetrics` is `Option.empty`, then it causes 
   a `com.fasterxml.jackson.core.JsonGenerationException` to be thrown when we navigate to the Executors tab in Spark UI.
   Complete stacktrace:
   
   > com.fasterxml.jackson.core.JsonGenerationException: Can not write a field name, expecting a value
   > 	at com.fasterxml.jackson.core.JsonGenerator._reportError(JsonGenerator.java:2080)
   > 	at com.fasterxml.jackson.core.json.WriterBasedJsonGenerator.writeFieldName(WriterBasedJsonGenerator.java:161)
   > 	at com.fasterxml.jackson.databind.ser.BeanPropertyWriter.serializeAsField(BeanPropertyWriter.java:725)
   > 	at com.fasterxml.jackson.databind.ser.std.BeanSerializerBase.serializeFields(BeanSerializerBase.java:721)
   > 	at com.fasterxml.jackson.databind.ser.BeanSerializer.serialize(BeanSerializer.java:166)
   > 	at com.fasterxml.jackson.databind.ser.std.CollectionSerializer.serializeContents(CollectionSerializer.java:145)
   > 	at com.fasterxml.jackson.module.scala.ser.IterableSerializer.serializeContents(IterableSerializerModule.scala:26)
   > 	at com.fasterxml.jackson.module.scala.ser.IterableSerializer.serializeContents$(IterableSerializerModule.scala:25)
   > 	at com.fasterxml.jackson.module.scala.ser.UnresolvedIterableSerializer.serializeContents(IterableSerializerModule.scala:54)
   > 	at com.fasterxml.jackson.module.scala.ser.UnresolvedIterableSerializer.serializeContents(IterableSerializerModule.scala:54)
   > 	at com.fasterxml.jackson.databind.ser.std.AsArraySerializerBase.serialize(AsArraySerializerBase.java:250)
   > 	at com.fasterxml.jackson.databind.ser.DefaultSerializerProvider._serialize(DefaultSerializerProvider.java:480)
   > 	at com.fasterxml.jackson.databind.ser.DefaultSerializerProvider.serializeValue(DefaultSerializerProvider.java:319)
   > 	at com.fasterxml.jackson.databind.ObjectMapper._configAndWriteValue(ObjectMapper.java:4094)
   > 	at com.fasterxml.jackson.databind.ObjectMapper.writeValueAsString(ObjectMapper.java:3404)
   > 	at org.apache.spark.ui.exec.ExecutorsPage.allExecutorsDataScript$1(ExecutorsTab.scala:64)
   > 	at org.apache.spark.ui.exec.ExecutorsPage.render(ExecutorsTab.scala:76)
   > 	at org.apache.spark.ui.WebUI.$anonfun$attachPage$1(WebUI.scala:89)
   > 	at org.apache.spark.ui.JettyUtils$$anon$1.doGet(JettyUtils.scala:80)
   > 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:687)
   > 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
   > 	at org.sparkproject.jetty.servlet.ServletHolder.handle(ServletHolder.java:873)
   > 	at org.sparkproject.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1623)
   > 	at org.apache.spark.ui.HttpSecurityFilter.doFilter(HttpSecurityFilter.scala:95)
   > 	at org.sparkproject.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1610)
   > 	at org.sparkproject.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:540)
   > 	at org.sparkproject.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:255)
   > 	at org.sparkproject.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1345)
   > 	at org.sparkproject.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:203)
   > 	at org.sparkproject.jetty.servlet.ServletHandler.doScope(ServletHandler.java:480)
   > 	at org.sparkproject.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:201)
   > 	at org.sparkproject.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1247)
   > 	at org.sparkproject.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:144)
   > 	at org.sparkproject.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:753)
   > 	at org.sparkproject.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:220)
   > 	at org.sparkproject.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
   > 	at org.sparkproject.jetty.server.Server.handle(Server.java:505)
   > 	at org.sparkproject.jetty.server.HttpChannel.handle(HttpChannel.java:370)
   > 	at org.sparkproject.jetty.server.HttpConnection.onFillable(HttpConnection.java:267)
   > 	at org.sparkproject.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:305)
   > 	at org.sparkproject.jetty.io.FillInterest.fillable(FillInterest.java:103)
   > 	at org.sparkproject.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
   > 	at org.sparkproject.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:333)
   > 	at org.sparkproject.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:310)
   > 	at org.sparkproject.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:168)
   > 	at org.sparkproject.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:126)
   > 	at org.sparkproject.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:366)
   > 	at org.sparkproject.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:698)
   > 	at org.sparkproject.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:804)
   > 	at java.base/java.lang.Thread.run(Thread.java:834)
   
   
   
   
   
   ### Does this PR introduce _any_ user-facing change?
   No
   
   
   ### How was this patch tested?
   Unit tests
   


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



---------------------------------------------------------------------
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 pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702450502






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



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


[GitHub] [spark] SparkQA commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702448784


   **[Test build #129319 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129319/testReport)** for PR 29926 at commit [`5edeb0f`](https://github.com/apache/spark/commit/5edeb0f0f8e53982741e9da5ccde315c0bafd48e).
    * 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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29926: SPARK-32996][Web-UI][3.0] Handle empty ExecutorMetrics in ExecutorMetricsJsonSerializer

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702360504


   Can one of the admins verify this patch?


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



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


[GitHub] [spark] viirya commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Handle empty ExecutorMetrics in ExecutorMetricsJsonSerializer

Posted by GitBox <gi...@apache.org>.
viirya commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702361301


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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702449311






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



---------------------------------------------------------------------
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 pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702360102


   **[Test build #129318 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129318/testReport)** for PR 29926 at commit [`5edeb0f`](https://github.com/apache/spark/commit/5edeb0f0f8e53982741e9da5ccde315c0bafd48e).


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



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


[GitHub] [spark] viirya closed pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
viirya closed pull request #29926:
URL: https://github.com/apache/spark/pull/29926


   


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



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


[GitHub] [spark] SparkQA commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702388182


   Kubernetes integration test starting
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/33932/
   


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



---------------------------------------------------------------------
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 pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702449311






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



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


[GitHub] [spark] viirya commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
viirya commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702390210


   look good pending 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



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


[GitHub] [spark] SparkQA commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702449593


   **[Test build #129318 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129318/testReport)** for PR 29926 at commit [`5edeb0f`](https://github.com/apache/spark/commit/5edeb0f0f8e53982741e9da5ccde315c0bafd48e).
    * 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



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


[GitHub] [spark] SparkQA commented on pull request #29926: SPARK-32996][Web-UI][3.0] Handle empty ExecutorMetrics in ExecutorMetricsJsonSerializer

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702360102


   **[Test build #129318 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129318/testReport)** for PR 29926 at commit [`5edeb0f`](https://github.com/apache/spark/commit/5edeb0f0f8e53982741e9da5ccde315c0bafd48e).


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



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


[GitHub] [spark] AmplabJenkins commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702399811






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



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


[GitHub] [spark] viirya commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
viirya commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702449552


   Thanks! Merging to master.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



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


[GitHub] [spark] AmplabJenkins commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702450502






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



---------------------------------------------------------------------
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 pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702365381


   **[Test build #129319 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129319/testReport)** for PR 29926 at commit [`5edeb0f`](https://github.com/apache/spark/commit/5edeb0f0f8e53982741e9da5ccde315c0bafd48e).


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



---------------------------------------------------------------------
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 pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702399821


   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/33932/
   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



---------------------------------------------------------------------
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 pull request #29926: [SPARK-32996][Web-UI][FollowUP] Handle empty ExecutorMetrics in ExecutorMetricsJsonSerializer

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702360504


   Can one of the admins verify this patch?


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



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


[GitHub] [spark] SparkQA commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702399709


   Kubernetes integration test status failure
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/33932/
   


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



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


[GitHub] [spark] SparkQA commented on pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702365381


   **[Test build #129319 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/129319/testReport)** for PR 29926 at commit [`5edeb0f`](https://github.com/apache/spark/commit/5edeb0f0f8e53982741e9da5ccde315c0bafd48e).


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



---------------------------------------------------------------------
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 pull request #29926: [SPARK-32996][Web-UI][FollowUP] Move ExecutorSummarySuite to proper path

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #29926:
URL: https://github.com/apache/spark/pull/29926#issuecomment-702399811


   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



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