Spark does not delete temporary directories

2015-05-07 Thread Taeyun Kim
Hi, After a spark program completes, there are 3 temporary directories remain in the temp directory. The file names are like this: spark-2e389487-40cc-4a82-a5c7-353c0feefbb7 And the Spark program runs on Windows, a snappy DLL file also remains in the temp directory. The file name is like

RE: Spark does not delete temporary directories

2015-05-07 Thread Taeyun Kim
Kim; user@spark.apache.org Subject: Re: Spark does not delete temporary directories Default value for spark.worker.cleanup.enabled is false: private val CLEANUP_ENABLED = conf.getBoolean(spark.worker.cleanup.enabled, false) I wonder if the default should be set as true. Cheers

Re: Spark does not delete temporary directories

2015-05-07 Thread Sean Owen
11:37 AM To: Taeyun Kim; Ted Yu; Todd Nist; user@spark.apache.org Subject: RE: Spark does not delete temporary directories I think the temporary folders are used to store blocks and shuffles. That doesn't depend on the cluster manager. Ideally they should be removed after the application

RE: Spark does not delete temporary directories

2015-05-07 Thread Haopu Wang
Kim [mailto:taeyun@innowireless.com] Sent: Friday, May 08, 2015 9:42 AM To: 'Ted Yu'; 'Todd Nist'; user@spark.apache.org Subject: RE: Spark does not delete temporary directories Thanks, but it seems that the option is for Spark standalone mode only. I've (lightly) tested the options

Re: Spark does not delete temporary directories

2015-05-07 Thread Ted Yu
Default value for spark.worker.cleanup.enabled is false: private val CLEANUP_ENABLED = conf.getBoolean(spark.worker.cleanup.enabled, false) I wonder if the default should be set as true. Cheers On Thu, May 7, 2015 at 6:19 AM, Todd Nist tsind...@gmail.com wrote: Have you tried to set the

Re: Spark does not delete temporary directories

2015-05-07 Thread Todd Nist
Have you tried to set the following? spark.worker.cleanup.enabled=true spark.worker.cleanup.appDataTtl=seconds” On Thu, May 7, 2015 at 2:39 AM, Taeyun Kim taeyun@innowireless.com wrote: Hi, After a spark program completes, there are 3 temporary directories remain in the temp