Skip to main content
Solved

Does FME Workbench write files to disk before zipping them?

  • September 29, 2017
  • 4 replies
  • 21 views

thejando
Contributor
Forum|alt.badge.img+4

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?

Best answer by danilo_fme

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

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

4 replies

danilo_fme
Celebrity
Forum|alt.badge.img+51
  • Celebrity
  • 2077 replies
  • Best Answer
  • September 29, 2017

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


david_r
Celebrity
  • 8394 replies
  • September 29, 2017

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


thejando
Contributor
Forum|alt.badge.img+4
  • Author
  • Contributor
  • 28 replies
  • October 17, 2017

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.

 


thejando
Contributor
Forum|alt.badge.img+4
  • Author
  • Contributor
  • 28 replies
  • October 17, 2017

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