Skip to main content

I am currently trying to improve the performance of a data extraction process, and I want to know if an SSD (Solid State Drive) would be beneficial for my particular workflow. The process does not get close to memory limitations, so there is no writing of temporary files (that I am aware of) to disk during the translation. The process finishes by writing a shapefile in a zip file to a local network drive. I would like to know if FME temporarily writes the shapefile to my PC harddrive before it is zipped, because if it DOES, that would suggest that an SSD would be beneficial. But if the zipping process is done entirely in memory, then I doubt an SSD would be of benefit.

Can anyone answer my question?

Hi @thejando,

I created a Workspace test to write a zip file and checked the log file about to create a temp files before create a zipfile:

Thanks,

Danilo


If you do get an SSD disk as a non-primary disk, make sure you define the FME_TEMP environment variable and point to it.

More info here: https://knowledge.safe.com/articles/176/fme-temp-environment-variable.html


Hi @thejando,

I created a Workspace test to write a zip file and checked the log file about to create a temp files before create a zipfile:

Thanks,

Danilo

Thanks for your help @danilo_inovacao. I have to admit I was using an earlier version of FME (FME 2015) which logs the information in a less obvious manner. The necessary log information is still there in FME 2015, but I missed it.

 


If you do get an SSD disk as a non-primary disk, make sure you define the FME_TEMP environment variable and point to it.

More info here: https://knowledge.safe.com/articles/176/fme-temp-environment-variable.html

Thanks for the tip @david_r

Reply