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

[GitHub] [spark] rednaxelafx opened a new pull request #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

rednaxelafx opened a new pull request #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955
 
 
   ### What changes were proposed in this pull request?
   
   Spark SQL's whole-stage codegen (WSCG) supports dumping the generated code to help with debugging. One way to get the generated code is through `df.queryExecution.debug.codegen`, or SQL `EXPLAIN CODEGEN` statement.
   
   The generated code is currently printed without specific ordering, which can make debugging a bit annoying. This PR makes a minor improvement to sort the codegen dump by the `codegenStageId`, ascending.
   
   After this change, the following query:
   ```scala
   spark.range(10).agg(sum('id)).queryExecution.debug.codegen
   ```
   will always dump the generated code in a natural, stable order. A version of this example with shorter output is:
   ```
   spark.range(10).agg(sum('id)).queryExecution.debug.codegenToSeq.map(_._1).foreach(println)
   *(1) HashAggregate(keys=[], functions=[partial_sum(id#8L)], output=[sum#15L])
   +- *(1) Range (0, 10, step=1, splits=16)
   
   *(2) HashAggregate(keys=[], functions=[sum(id#8L)], output=[sum(id)#12L])
   +- Exchange SinglePartition, true, [id=#30]
      +- *(1) HashAggregate(keys=[], functions=[partial_sum(id#8L)], output=[sum#15L])
         +- *(1) Range (0, 10, step=1, splits=16)
   ```
   
   The number of codegen stages within a single SQL query tends to be very small, most likely < 50, so the overhead of adding the sorting shouldn't be significant.
   
   
   ### Why are the changes needed?
   
   Minor improvement to aid WSCG debugging.
   
   ### Does this PR introduce any user-facing change?
   
   No user-facing change for end-users; minor change for developers who debug WSCG generated code.
   
   ### How was this patch tested?
   
   Manually tested the output; all other tests still pass.

----------------------------------------------------------------
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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601021211
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120026/
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601135876
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120029/
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601021211
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120026/
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601024120
 
 
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601023723
 
 
   **[Test build #120029 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120029/testReport)** for PR 27955 at commit [`c64b778`](https://github.com/apache/spark/commit/c64b778401562ecd9022790cee7e51749d9b5f8e).

----------------------------------------------------------------
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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601023723
 
 
   **[Test build #120029 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120029/testReport)** for PR 27955 at commit [`c64b778`](https://github.com/apache/spark/commit/c64b778401562ecd9022790cee7e51749d9b5f8e).

----------------------------------------------------------------
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] maropu commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
maropu commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601137742
 
 
   Thanks! 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 removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601024120
 
 
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601014831
 
 
   **[Test build #120026 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120026/testReport)** for PR 27955 at commit [`c64b778`](https://github.com/apache/spark/commit/c64b778401562ecd9022790cee7e51749d9b5f8e).

----------------------------------------------------------------
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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601012226
 
 
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601021139
 
 
   **[Test build #120026 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120026/testReport)** for PR 27955 at commit [`c64b778`](https://github.com/apache/spark/commit/c64b778401562ecd9022790cee7e51749d9b5f8e).
    * This patch **fails due to an unknown error code, -9**.
    * 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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601024128
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24747/
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601012226
 
 
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601135870
 
 
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601135876
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120029/
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601014831
 
 
   **[Test build #120026 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120026/testReport)** for PR 27955 at commit [`c64b778`](https://github.com/apache/spark/commit/c64b778401562ecd9022790cee7e51749d9b5f8e).

----------------------------------------------------------------
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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601021200
 
 
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601024128
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24747/
   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] maropu commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
maropu commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601138759
 
 
   Since I think this PR improves debugability, I merged this into 3.0, too.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] kiszk commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
kiszk commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601022485
 
 
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601135870
 
 
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601134839
 
 
   **[Test build #120029 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120029/testReport)** for PR 27955 at commit [`c64b778`](https://github.com/apache/spark/commit/c64b778401562ecd9022790cee7e51749d9b5f8e).
    * 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 commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601012237
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24744/
   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] maropu closed pull request #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
maropu closed pull request #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955
 
 
   

----------------------------------------------------------------
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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601012237
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24744/
   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 #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27955: [SPARK-31187][SQL] Sort the whole-stage codegen debug output by codegenStageId
URL: https://github.com/apache/spark/pull/27955#issuecomment-601021200
 
 
   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