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 2021/10/11 20:20:57 UTC

[GitHub] [spark] c21 opened a new pull request #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

c21 opened a new pull request #34247:
URL: https://github.com/apache/spark/pull/34247


   <!--
   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'.
     8. If you want to add or modify an error type or message, please read the guideline first in
        'core/src/main/resources/error/README.md'.
   -->
   
   ### 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.
   -->
   This is a re-proposal of https://github.com/apache/spark/pull/34034. Ignore duplicated join keys when building hash relation for LEFT SEMI / LEFT ANTI shuffled hash join. The original PR was also covering broadcast hash join, and caused regression for broadcast shuffle exchange reuse in https://github.com/apache/spark/pull/34034#issuecomment-939862907 . So here we do not covert broadcast hash join. Shuffled hash join do not have the shuffle reuse problem.
   
   Make the deduplication work with broadcast exchange is kind of non-trivial for me now, because:
   
   For two `BroadcastExchangeExec`, one with `ignoreDuplicatedKey` being true (called `exchange_A`), and the other with `ignoreDuplicatedKey` being false (called `exchange_B`):
   
   * If we decide these two `BroadcastExchangeExec`s are not equal, then we have regression that we reuse fewer exchange after the change, as https://github.com/apache/spark/pull/34034#issuecomment-939862907 .
   * If we decide these two `BroadcastExchangeExec`s are equal, then we might have correctness issue when `exchange_B` reuses result of `exchange_A`. Also these two `BroadcastExchangeExec`s should not be equal as they already have different results in underlying hash relations.
   
   I still see it's valuable to have the optimization for shuffled hash join only. So leave the optimization for broadcast hash join as a followup as it needs more thoughts.
   
   ### 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.
   -->
   Help reduce the hash table size of join for LEFT SEMI and LEFT ANTI, reduce OOM possibility of shuffled hash join.
   
   ### Does this PR introduce _any_ user-facing change?
   <!--
   Note that it means *any* user-facing change including all aspects such as the documentation fix.
   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 possible, please also clarify if this is a user-facing change compared to the released Spark versions or within the unreleased branches such as master.
   If no, write 'No'.
   -->
   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.
   -->
   Added unit test in `JoinSuite.scala`.


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


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


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/48643/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/48578/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] cloud-fan commented on pull request #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

Posted by GitBox <gi...@apache.org>.
cloud-fan commented on pull request #34247:
URL: https://github.com/apache/spark/pull/34247#issuecomment-941887543


   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.

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] cloud-fan commented on pull request #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

Posted by GitBox <gi...@apache.org>.
cloud-fan commented on pull request #34247:
URL: https://github.com/apache/spark/pull/34247#issuecomment-941887543


   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.

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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






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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   **[Test build #144100 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144100/testReport)** for PR 34247 at commit [`77f3e7e`](https://github.com/apache/spark/commit/77f3e7e6cb243bb6d3b20bcf7d150a712cabe8db).


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   **[Test build #144100 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144100/testReport)** for PR 34247 at commit [`77f3e7e`](https://github.com/apache/spark/commit/77f3e7e6cb243bb6d3b20bcf7d150a712cabe8db).


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   **[Test build #144165 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144165/testReport)** for PR 34247 at commit [`be82dcf`](https://github.com/apache/spark/commit/be82dcf830660475a20e21961974228793833987).


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   **[Test build #144165 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144165/testReport)** for PR 34247 at commit [`be82dcf`](https://github.com/apache/spark/commit/be82dcf830660475a20e21961974228793833987).


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] c21 commented on pull request #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   Thank you @cloud-fan for review!


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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






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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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






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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/48578/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/144165/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   **[Test build #144100 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144100/testReport)** for PR 34247 at commit [`77f3e7e`](https://github.com/apache/spark/commit/77f3e7e6cb243bb6d3b20bcf7d150a712cabe8db).
    * 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.

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   **[Test build #144165 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144165/testReport)** for PR 34247 at commit [`be82dcf`](https://github.com/apache/spark/commit/be82dcf830660475a20e21961974228793833987).


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


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


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


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


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] c21 commented on pull request #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   The unit test failure in github action seems irrelevant to this PR, seeing other PR has same error - https://github.com/imback82/spark-4/actions/runs/1334887155 . 


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] cloud-fan closed pull request #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

Posted by GitBox <gi...@apache.org>.
cloud-fan closed pull request #34247:
URL: https://github.com/apache/spark/pull/34247


   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


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


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] cloud-fan closed pull request #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

Posted by GitBox <gi...@apache.org>.
cloud-fan closed pull request #34247:
URL: https://github.com/apache/spark/pull/34247


   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] c21 commented on pull request #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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






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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] c21 commented on pull request #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   cc @cloud-fan and @viirya, could you help take a look when you have time? Thanks.


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/144165/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/144100/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/48643/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34247: [SPARK-36794][SQL] Ignore duplicated join keys when building relation for SEMI/ANTI shuffled hash join

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/144100/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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