I have a gzip'd pickled file that is 4mb in size. Each time I open the file and load it the time it takes to unpickle takes longer. The contents of the file never change and the size stays the same.

Test Times:
1st Run: 27.5s
2nd Run: 44.1s
3rd Run: 52.7s

The code I'm using is as follows:

f = gzip.open( filepath, "rb" )
pickleFile = cPickle.Unpickler( f )
paData = pickleFile.load()
f.close()

Any idea why it is taking longer to load each time I run?

link|improve this question
1  
Are you loading it more than once into the same running Python process, or are you running a new process each time? – Greg Hewgill Jun 29 '11 at 1:16
I'm assuming the same process as I don't have anything setup for multiprocessing. – Neil Grey Jun 29 '11 at 1:17
1  
I'm not referring to multiprocessing. What happens between test runs? Are you exiting the Python process, or are you loading your pickled file three times within the same Python process? – Greg Hewgill Jun 29 '11 at 1:24
I'm not exiting the python process between runs. – Neil Grey Jun 29 '11 at 1:27
2  
Is this the full code? How are you doing your timing? Perhaps you're forgetting to subtract the initial value of "clock()" each time. – Seth Johnson Jun 29 '11 at 2:09
show 4 more comments
feedback

1 Answer

up vote 0 down vote accepted

I created two test pickle file 3MBs and 22MBs, and zipped it.

I don't understand what you are doing because I just did a test and this code:

def get_time():
    return int(time.time())

while(count < 10):    
    filepath='/home/shared/word_out.gz'
    start = get_time()
    f = gzip.open( filepath, "rb" )
    pickleFile = cPickle.Unpickler( f )
    paData = pickleFile.load()
    f.close()
    end = get_time()

    print 'Time ellapsed' , end - start
    count+=1

Always prints out the same as I run it.

3 MB File:

Time ellapsed 1
Time ellapsed 1
Time ellapsed 0
Time ellapsed 1
Time ellapsed 1
Time ellapsed 0
Time ellapsed 1
Time ellapsed 1
Time ellapsed 0
Time ellapsed 1

22MB File:

Time ellapsed 5
Time ellapsed 4
Time ellapsed 2
Time ellapsed 2
Time ellapsed 3
Time ellapsed 2
Time ellapsed 3
Time ellapsed 2
Time ellapsed 2
Time ellapsed 2 
link|improve this answer
Is pickle affected by the depth of the data it's loading in? My file is essentially a dictionary of dictionary's taking the form of: paData = {'type':'anim', 'frames':{frame:nodeData}, 'image':'imgpath'} and nodeData = {'attr_name':(value,bool)} ... this comment is just in relation to differences in times. – Neil Grey Jun 29 '11 at 2:27
Seems you're right Nix. I've stripped the code completely out of it's original context, run a test like yours and now I'm getting consistent times. Odd though that the same test within the full-context produces a different result... back to the drawing board. – Neil Grey Jun 29 '11 at 2:37
What type of stuff is being done in the "full-context" code ? – Nix Jun 29 '11 at 11:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.