[GitHub] spark issue #6751: [SPARK-8300] DataFrame hint for broadcast join.

2017-10-11 Thread fjh100456
Github user fjh100456 commented on the issue: https://github.com/apache/spark/pull/6751 With `/*+ broadcast(table) */`, it works well, thank you very much. --- - To unsubscribe, e-mail:

[GitHub] spark issue #6751: [SPARK-8300] DataFrame hint for broadcast join.

2017-10-10 Thread sridharsubramanian62
Github user sridharsubramanian62 commented on the issue: https://github.com/apache/spark/pull/6751 Let me know if this does not help [SPARK-16475] Broadcast Hint for SQL Queries - ASF JIRA | | | | [SPARK-16475] Broadcast Hint for SQL Queries - ASF

[GitHub] spark issue #6751: [SPARK-8300] DataFrame hint for broadcast join.

2017-10-10 Thread fjh100456
Github user fjh100456 commented on the issue: https://github.com/apache/spark/pull/6751 Is there an example? I use broadcast like the following, but it perform an error.Would you be so kind as to show me an example? >spark-sql> select a.* from tableA a left outer join

[GitHub] spark issue #6751: [SPARK-8300] DataFrame hint for broadcast join.

2017-10-10 Thread sridharsubramanian62
Github user sridharsubramanian62 commented on the issue: https://github.com/apache/spark/pull/6751 Its available from spark 2.2.0. On Tuesday, October 10, 2017, 1:46:27 PM PDT, Reynold Xin wrote: Isn't the hint available in SQL?

[GitHub] spark issue #6751: [SPARK-8300] DataFrame hint for broadcast join.

2017-10-10 Thread rxin
Github user rxin commented on the issue: https://github.com/apache/spark/pull/6751 Isn't the hint available in SQL? --- - To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands,

[GitHub] spark issue #6751: [SPARK-8300] DataFrame hint for broadcast join.

2017-10-10 Thread fjh100456
Github user fjh100456 commented on the issue: https://github.com/apache/spark/pull/6751 @rxin @marmbrus Is there another way to broadcast table with the spark-sql now, except by `spark.sql.autoBroadcastJoinThreshold`? And if no, is it a good way to broadcast table by user