Why does datapoint.zip exist?
Is data_point.zip
an exact copy of the run
directory? If so, why are there both the run directory and a compressed version of the run
directory?
Is there a way to disable the creation of data_point.zip
? I'm not running anything on the cloud. but my large runs are taking forever to compress, adding 15+ minutes to run time.
Also, this issue may be exacerbated by this other issue, which does in my case affect Linux as well.
Comments
@Determinant while not a direct solution to having data_point.zip not made, one option to make it smaller is a reporting measure that throw away many of the files from the run directory prior to the zip being made. If you are are interested in that I can add an answer with the relevant ruby code. I don't think we currently have that measure published anywhere. We have used it on large analyses with lots of time series results.
Thanks @David Goldwasser, yes, please post that. Maybe it can help out. Hi again @David Goldwasser, just pinging to see if that Reporting Measure can still be made available. Thanks
@Determinant here is example code to put in reporting measure to delete simulation files. You can repeat this code for any type of file you want to delete. Just make sure this is the last reporting measure in the workflow so you are not deleting files that other reporting measures might need.
Thanks @David Goldwasser, I'll work on converting this to a Reporting Measure.