โ03-04-2022 07:34 AM
โ03-16-2022 08:38 PM
@James Smithโ You can reach out to Michael.Dibble@guycarp.com or please follow this doc;
โ03-04-2022 07:40 AM
โ03-04-2022 07:56 AM
I guess when is read from one directory is copied to RAM and than from there save it in another place (there are also concurrent reads, writes etc. so probably because of that it consume more space). As cluster still have many free memory it wasn't cleaned automatically. You can try to force clean it by using spark.catalog.clearCache()
โ03-04-2022 08:12 AM
Thanks for the ideas/suggestion. Unfortunately doing spark.cataglog.clearCache() does not return the memory / clean it.
โ03-04-2022 09:01 AM
โ03-11-2022 09:16 AM
Hi Fatma. The article says:
"The Delta cache works for all Parquet files and is not limited to Delta Lake format files. The Delta cache supports reading Parquet files in .... ...... It does not support other storage formats such as CSV, JSON, and ORC.
I am copying tif files from a Azure Data Lake Storage Gen2 to the /dbfs/ usin dbutils.fs.cp command. So I don't think that the article is relevant is it?
โ03-16-2022 08:57 AM
@James Smithโ
The current implementation of dbutils.fs is single-threaded, meaning that regardless of whether itโs executed on the driver or inside a Spark job, it will perform recursive operations in a single-threaded loop.
The current implementation performs the initial listing on the driver and subsequently launches a Spark job to perform the per-file operations.
So the memory will definitely be in use, but the thing is the unreferenced objects should be cleaned up. Else this would cause the heap to pile up (memory leak).
โ03-16-2022 09:06 AM
Hi @Rajeev Kumarโ . I understand why memory is used during the transfer of the file. But should the memory not be returned after the file has been moved? I do not understand why this does not happen?
โ03-16-2022 09:13 AM
Did the GC cycle happen after the cp command? The memory will be reclaimed based on the requirement for the new coming objects. We do not explicitly clean any memory.. it is taken care by the JVM.
and yes ideally it should, the unreferenced objects are to be cleared during GC.
If this is not happening then there might me some memory leak issue.
We can run an inti script to collect heap dump of driver and executor then we can show the objects occupying most of the memory and then can act accordingly.
โ03-16-2022 09:52 AM
"Did the GC cycle happen after the cp command?"
How would I know if this happened or not?
โ03-16-2022 09:16 AM
@James Smithโ please file a case if you can.
โ03-16-2022 09:53 AM
Can you tell me how to do that please? I have not done it before.
โ03-16-2022 10:25 AM
You can file it to Azure. And they will reach out to us.
โ03-16-2022 10:34 AM
Can you provide me with a link to where I would submit this case, and details as to what you would like me to write? I'm not really sure.
โ03-16-2022 08:38 PM
@James Smithโ You can reach out to Michael.Dibble@guycarp.com or please follow this doc;
Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโt want to miss the chance to attend and share knowledge.
If there isnโt a group near you, start one and help create a community that brings people together.
Request a New Group