this post was submitted on 09 Jun 2023
2 points (75.0% liked)

Python

3217 readers
1 users here now

News and discussions about the programming language Python


founded 5 years ago
MODERATORS
 

I have a large object that I want to save to the disk because it takes a minute to generate. The OOM reaper kills the process while pickle.dump ing the object.

It's a tuple of dicts of tuple of array.array.

Can pickle dump in chunks? If not, is there another technique I can use?

top 4 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 1 year ago (1 children)

You mean numpy arrays? I think the most efficient way to store them is via np.save. You could try creating a new directory and store all of your arrays there with clever file naming to retrieve the dictionary structure later.

Alternatively if you are up to trying to use pytorch you can convert the arrays to tensors and use torch.save to save the entire dictionary in one file. Installing pytorch just for this might be a bit overkill as it is a >1GB installation tho.

[–] [email protected] 0 points 1 year ago (1 children)

It's a tuple of dicts of tuples of array.array, no numpy or torch :(

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

So python standard library lists?

[–] [email protected] 1 points 1 year ago

If you're pickling that much data you should definitely consider using a more appropriate data format. Maybe a database or HDF5?