• Post author:
  • Post category:PySpark
  • Post last modified:March 27, 2024
  • Reading time:11 mins read
You are currently viewing PySpark repartition() – Explained with Examples

pyspark.sql.DataFrame.repartition() method is used to increase or decrease the RDD/DataFrame partitions by number of partitions or by single column name or multiple column names. This function takes 2 parameters; numPartitions and *cols, when one is specified the other is optional. repartition() is a wider transformation that involves shuffling of the data hence, it is considered an expensive operation.

Key Points –

  • repartition() is used to increase or decrease the number of partitions.
  • repartition() creates even partitions when compared with coalesce().
  • It is a wider transformation.
  • It is an expensive operation as it involves data shuffle and consumes more resources.
  • repartition() can take int or column names as param to define how to perform the partitions.
  • If parameters are not specified, it uses the default number of partitions.
  • As part of performance optimization, recommends avoiding using this function.

1. Quick Examples of PySpark repartition()

Following are quick examples of PySpark repartition() of DataFrame.


# Repartition by number
df2 = df.repartition(5)

# Repatition by column name
df2 = df.repartition("state")

# Repatition by column name
df2 = df.repartition(5, "state")

# Repatition by multiple columns
df2 = df.repartition("state","department")

2. DataFrame.repartition()

repartition() is a method of pyspark.sql.DataFrame class that is used to increase or decrease the number of partitions of the DataFrame. When you create a DataFrame, the data or rows are distributed across multiple partitions across many servers. so repartition data into different fewer or higher partitions use this method.

2.1 Syntax

Following is the syntax of DataFrame.repartition()


# Syntax of repartition()
DataFrame.repartition(numPartitions, *cols)

2.2 Parameters & Return Type

Following are the parameters of repartition() and this returns a DataFrame with repartitioned data.

  • numPartitions – Target Number of partitions. If not specified the default number of partitions is used.
  • *cols – Single or multiple columns to use in repartition.

3. PySpark DataFrame repartition()

The repartition re-distributes the data from all partitions into a specified number of partitions which leads to a full data shuffle which is a very expensive operation when you have billions or trillions of data. To see how it works, let’s create a DataFrame with some test data.


# Imports
from pyspark.sql import SparkSession

# Create Spark Session
spark = SparkSession.builder.appName('SparkByExamples.com') \
        .master("local[5]").getOrCreate()

# Create PySpark DataFrame
simpleData = [("James","Sales","NY",90000,34,10000),
    ("Michael","Sales","NY",86000,56,20000),
    ("Robert","Sales","CA",81000,30,23000),
    ("Maria","Finance","CA",90000,24,23000),
    ("Raman","Finance","CA",99000,40,24000),
    ("Scott","Finance","NY",83000,36,19000),
    ("Jen","Finance","NY",79000,53,15000),
    ("Jeff","Marketing","CA",80000,25,18000),
    ("Kumar","Marketing","NY",91000,50,21000)
  ]

schema = ["employee_name","department","state","salary","age","bonus"]
df = spark.createDataFrame(data=simpleData, schema = schema)
df.show()

# Write to CSV file
df.write.mode("overwrite").csv("/tmp/partition.csv")

By default, DataFrame is created with default partitions based on your environment and setup. The following example creates multiple part files at the specified location. The number of partitions = number of part files. Note that if you run this multiple times, you will get different values in part files for each run.

PySpark repartition

3.1 Repartition by Number

Now let’s repartition this data to 3 partitions by sending value 3 to numPartitions param.


# repartition()
df2 = df.repartition(numPartitions=3)
print(df2.rdd.getNumPartitions())

# Write DataFrame to CSV file
df2.write.mode("overwrite").csv("/tmp/partition.csv")

It repartitions the DataFrame into 3 partitions.

3.2 Repartition by Column

Using repartition() method you can also do the PySpark DataFrame partition by single column name, or multiple columns. Let’s repartition the PySpark DataFrame by column, in the following example, repartition() re-distributes the data by column name state.


# repartition by column
df2 = df.repartition("state")
print(df2.rdd.getNumPartitions())

# Write
df2.write.mode("overwrite").csv("/tmp/partition.csv")

3.3. Repartition by Multiple Columns

Let’s repartition the PySpark DataFrame by multiple columns. The following example re-distributes the data by columns state and department.


# repartition by multiple column
df2 = df.repartition("state","department")
print(df2.rdd.getNumPartitions())

# Write
df2.write.mode("overwrite").csv("/tmp/partition.csv")

4. PySpark RDD Repartition

In RDD, you can create parallelism at the time of the creation of an RDD using parallelize(), textFile() and wholeTextFiles().


rdd = spark.sparkContext.parallelize((0,20))
print("From local[5]"+str(rdd.getNumPartitions()))

rdd1 = spark.sparkContext.parallelize((0,25), 6)
print("parallelize : "+str(rdd1.getNumPartitions()))

rddFromFile = spark.sparkContext.textFile("/tmp/test.txt",10)
print("TextFile : "+str(rddFromFile.getNumPartitions()))

The above example yields the below output.


From local[5] : 5
Parallelize : 6
TextFile : 10

spark.sparkContext.parallelize(Range(0,20),6) distributes RDD into 6 partitions and the data is distributed as below.


rdd1.saveAsTextFile("/tmp/partition")
//Writes 6 part files, one for each partition
Partition 1 : 0 1 2
Partition 2 : 3 4 5
Partition 3 : 6 7 8 9
Partition 4 : 10 11 12
Partition 5 : 13 14 15
Partition 6 : 16 17 18 19

1.1 RDD repartition()

PySpark RDD repartition() method is used to increase or decrease the partitions. The below example decreases the partitions from 10 to 4 by moving data from all partitions.


rdd2 = rdd1.repartition(4)
print("Repartition size : "+str(rdd2.getNumPartitions()))
rdd2.saveAsTextFile("/tmp/re-partition")

This yields output Repartition size : 4 and the repartition re-distributes the data(as shown below) from all partitions which is a full shuffle leading to a very expensive operation when dealing with billions and trillions of data.


Partition 1 : 1 6 10 15 19
Partition 2 : 2 3 7 11 16
Partition 3 : 4 8 12 13 17
Partition 4 : 0 5 9 14 18

Conclusion

You have learned the advantages and disadvantages of using the PySpark repartition() function which does the re-distribution of RDD/DataFrame data into lower or higher numbers.

Calling groupBy(), union(), join(), and similar functions on DataFrame results in shuffling data between multiple executors and even machines and finally repartitions data into 200 partitions by default. PySpark default defines shuffling partition to 200 using spark.sql.shuffle.partitions configuration. You can change the partitions to custom partitions by using repartition() method.

Related Articles

References

Naveen Nelamali

Naveen Nelamali (NNK) is a Data Engineer with 20+ years of experience in transforming data into actionable insights. Over the years, He has honed his expertise in designing, implementing, and maintaining data pipelines with frameworks like Apache Spark, PySpark, Pandas, R, Hive and Machine Learning. Naveen journey in the field of data engineering has been a continuous learning, innovation, and a strong commitment to data integrity. In this blog, he shares his experiences with the data as he come across. Follow Naveen @ LinkedIn and Medium