Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Broadcast hint is a way for users to manually annotate a query and suggest to the query optimizer the join method. It is very useful when the query optimizer cannot make optimal decision with respect to join methods due to conservativeness or the lack of proper statistics.
The DataFrame API has broadcast hint since Spark 1.5. However, we do not have an equivalent functionality in SQL queries. We propose adding Hive-style broadcast hint to Spark SQL.
For more information, please see the attached document. One note about the doc: in addition to supporting "MAPJOIN", we should also support "BROADCASTJOIN" and "BROADCAST" in the comment, e.g. the following should be accepted:
SELECT /*+ MAPJOIN(b) */ ... SELECT /*+ BROADCASTJOIN(b) */ ... SELECT /*+ BROADCAST(b) */ ...
Attachments
Attachments
Issue Links
- is related to
-
SPARK-16590 Improve LogicalPlanToSQLSuite to check generated SQL directly
- Resolved
- relates to
-
SPARK-18209 More robust view canonicalization without full SQL expansion
- Resolved
- links to