Why Apache Arrow is faster with PySpark?

Balachandar Paulraj
2 min readSep 16, 2021

--

Apache Arrow defines a language-independent columnar memory format for in-memory analytics. It contains a set of technologies that enable big data systems to process and move data fast.

Before going through the performance improvements provided by Apache Arrow, let’s quickly go through the usual process happening in PySpark and Pandas without Apache Arrow format. Also, in order to evaluate this, let’s consider a scenario where we need to convert Spark dataframe(with 4 rows) to Pandas.

SPARK DATAFRAME TO PANDAS WITHOUT ARROW:

I hope the above diagram explained the process required to convert Spark DataFrame to Pandas Dataframe. Anyways, Let’s go through the process required to convert Spark DataFrame to Pandas Dataframe in detail.

  1. Before conversion, Spark pulls the records to the driver node.
  2. Each row would get serialized into Python’s pickle format
  3. Send the pickle format back to worker process.
  4. Worker process deserializes/unpickles each record into a list of tuples.
  5. Pandas DataFrame is created from the list using from_records() method.

Cons:

  1. As all the records are moved to driver, most of the cases the driver memory couldn’t fit a huge dataframe and might fail. Though this can be fixed by increasing driver memory, this needs to be done as an additional step.
  2. Python serialization/deserialization process executes very slowly.
  3. Deriving a pandas DataFrame using from_records slowly iterates over each record to convert to Pandas format.

SPARK DATAFRAME TO PANDAS THROUGH ARROW:

Let’s see how Apache Arrow format helps to expedite the processing for the aforementioned scenario.

  1. As Arrow leverages columnar memory format memory format, there is no need to serialize anymore as Arrow data can be sent directly to the Python process.
  2. Pyarrow can utilize zero-copy methods to create a pandas.DataFrame from entire chunks of data at once instead of processing individual record like from_records method.

This post only covers benefits of Arrow with respect to one use case : conversion from Spark DataFrame to Pandas and vice-versa. Similarly, there are other benefits and I’m planning to cover it in my upcoming blogs. Thank you for time and reading this post.

--

--