0 votes
in PySpark by
Why are Partitions immutable in PySpark?

1 Answer

0 votes
by

In PySpark, every transformation generates a new partition. Partitions use HDFS API to make partitions immutable, distributed, and fault-tolerant. Partitions are also aware of data locality.

...