Skip to content

Instantly share code, notes, and snippets.

@luminousmen
Created November 10, 2019 09:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save luminousmen/8dffa01a02bb58946b1299a621e44897 to your computer and use it in GitHub Desktop.
Save luminousmen/8dffa01a02bb58946b1299a621e44897 to your computer and use it in GitHub Desktop.
Example bucketing in pyspark
import os
import pyspark.sql.functions as F
from pyspark.sql import SparkSession
if __name__ == "__main__":
spark = SparkSession.builder.master("local").getOrCreate()
spark.conf.set(
"spark.sql.legacy.allowCreatingManagedTableUsingNonemptyLocation", "true"
)
spark.conf.set("spark.sql.autoBroadcastJoinThreshold", -1)
df = spark.range(1, 16000, 1, 16).select(
F.col("id").alias("key"), F.rand(12).alias("value")
)
df.write.saveAsTable("unbucketed", format="parquet", mode="overwrite")
df.write.bucketBy(16, "key").sortBy("value").saveAsTable(
"bucketed", format="parquet", mode="overwrite"
)
t1 = spark.table("unbucketed")
t2 = spark.table("bucketed")
t3 = spark.table("bucketed")
# Unbucketed - bucketed join. Both sides need to be repartitioned.
t1.join(t2, "key").explain()
# Unbucketed - bucketed join. Unbucketed side is correctly repartitioned, and only one shuffle is needed.
t1.repartition(16, "key").join(t2, "key").explain()
# Unbucketed - bucketed join. Unbucketed side is incorrectly repartitioned, and two shuffles are needed
t1.repartition("key").join(t2, "key").explain()
# Bucketed - bucketed join. Both sides have the same bucketing, and no shuffles are needed.
t3.join(t2, "key").explain()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment