MemoryError with Pickle in Python

33,772

Solution 1

If your data in the dictionaries are numpy arrays, there are packages (such as joblib and klepto) that make pickling large arrays efficient, as both the klepto and joblib understand how to use minimal state representation for a numpy.array. If you don't have array data, my suggestion would be to use klepto to store the dictionary entries in several files (instead of a single file) or to a database.

See my answer to a very closely related question https://stackoverflow.com/a/25244747/2379433, if you are ok with pickling to several files instead of a single file, would like to save/load your data in parallel, or would like to easily experiment with a storage format and backend to see which works best for your case. Also see: https://stackoverflow.com/a/21948720/2379433 for other potential improvements, and here too: https://stackoverflow.com/a/24471659/2379433.

As the links above discuss, you could use klepto -- which provides you with the ability to easily store dictionaries to disk or database, using a common API. klepto also enables you to pick a storage format (pickle, json, etc.) --also HDF5 (or a SQL database) is another good option as it allows parallel access. klepto can utilize both specialized pickle formats (like numpy's) and compression (if you care about size and not speed of accessing the data).

klepto gives you the option to store the dictionary with "all-in-one" file or "one-entry-per" file, and also can leverage multiprocessing or multithreading -- meaning that you can save and load dictionary items to/from the backend in parallel. For examples, see the above links.

Solution 2

This is an inherent problem of pickle, which is intended for use with rather small amounts of data. The size of the dictionaries, when loaded into memory, are many times larger than on disk.

After loading a pickle file of 100MB, you may well have a dictionary of almost 1GB or so. There are some formulas on the web to calculate the overhead, but I can only recommend to use some decent database like MySQL or PostgreSQL for such amounts of Data.

Share:
33,772
flotr
Author by

flotr

Updated on July 18, 2022

Comments

  • flotr
    flotr almost 2 years

    I am processing some data and I have stored the results in three dictionaries, and I have saved them to the disk with Pickle. Each dictionary has 500-1000MB.

    Now I am loading them with:

    import pickle
    with open('dict1.txt', "rb") as myFile:
        dict1 = pickle.load(myFile)
    

    However, already at loading the first dictionary I get:

    *** set a breakpoint in malloc_error_break to debug
    python(3716,0xa08ed1d4) malloc: *** mach_vm_map(size=1048576) failed (error code=3)
    *** error: can't allocate region securely
    *** set a breakpoint in malloc_error_break to debug
    Traceback (most recent call last):
      File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pickle.py", line 858, in load
        dispatch[key](self)
      File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pickle.py", line 1019, in load_empty_dictionary
        self.stack.append({})
    MemoryError
    

    How to solve this? My computer has 16GB of RAM so I find it unusual that loading a 800MB dictionary crashes. What I also find unusual is that there were no problems while saving the dictionaries.

    Further, in future I plan to process more data resulting in larger dictionaries (3-4GB on the disk), so any advice how to improve the efficiency is appreciated.

  • flotr
    flotr over 9 years
    Thanks for your answer. I have retained pickle, but I have radically modified my code to produce numpy arrays with a considerably smaller footprint. Now it works fine.
  • flotr
    flotr over 9 years
    Yeah... I knew that the size is not equal, but I didn't expect that this ratio may be 10x...
  • Farid Alijani
    Farid Alijani over 4 years
    could you clarify your answer more? How? code snippet ?
  • Jett
    Jett over 4 years
    When I try to use Version 32bits of Python to load pickled dict data excessed to 1.7GB, it was hunged for a long long long time. But version 64bits Python will not.
  • MSS
    MSS almost 4 years
    @Mike I am using mutliprocessing.Pool with Pandas. After apply_async, if the pandas dataframe is a bit large, it throws me MemoryError. Can I use klepto to alleviate that ?
  • Mike McKerns
    Mike McKerns almost 4 years
    @MSS: hard to tell from your question without more detail. Possibly. Klepto can push the data onto disk, and thus out of memory, and give you an interface to access portions of the data at a time. Depending on your use case, I expect either klepto or dask may help.