Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
1.2.0
-
None
-
spark-ec2 launched 10 node cluster of type c3.8xlarge
Description
I'm trying to repartition a json dataset for better cpu optimization and save in parquet format for better performance. The Json dataset is about 200gb
from pyspark.sql import SQLContext
sql_context = SQLContext(sc)
rdd = sql_context.jsonFile('s3c://some_path')
rdd = rdd.repartition(256)
rdd.saveAsParquetFile('hdfs://some_path')
In ganglia when the dataset first loads it's about 200G in memory which is expected. However once it attempts the repartition, it balloons over 2.5x in memory which is never returned making any subsequent operations fail from memory errors.
I'm also seeing a similar memory leak behavior when running repeated queries on a dataset.
rdd = sql_context.parquetFile('hdfs://some_path')
rdd.registerTempTable('events')
sql_context.sql( anything )
sql_context.sql( anything )
sql_context.sql( anything )
sql_context.sql( anything )
will result in a memory usage pattern of.
http://cl.ly/image/180y2D3d1A0X
It seems like intermediate results are not being garbage collected or something. Eventually I have to kill my session to keep running queries.