I am playing around with MongoDB and the pymongo API. I can put an image file in to GridFS - seems straight forward:

>>> f = open('myimage.jpg', 'r')
>>> fs = gridfs.GridFS(db)
>>> fid = fs.put(f)
>>> fid
ObjectId('4efde2c27c7778121800000a')

Looks like it has worked. I can also query GridFS using the _id returned:

>>> fs.exists(fid)
True

But I dont seem to be able to get the WHOLE file back out - it looks like I am getting a chunK?

>>> fs.get(fid).read()
'\xff\xd8\xff\xe0\x00\x10JFIF\x00\x01\x01\x01\x00Z\x00Z\x00\x00\xff\xdb\x00C\x00
\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01
\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x02\x01\x01
\x02\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x01\x02\x02\x02\x02\x02\x02
\x02\x02\x02\x02\xff\xdb\x00C\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x0
1\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0
2\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0
2\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\xff\xc0\x00\x11\x08\x03\x8d\x0
2X\x03\x01"\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1f\x00\x00\x01\x05\x01\x01\
x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x02\x03\x04\x05\x06\x07\x08\
t\n\x0b\xff\xc4\x00\xb5\x10\x00\x02\x01\x03\x03\x02\x04\x03\x05\x05\x04\x04\x00\
x00\x01}\x01\x02\x03\x00\x04\x11\x05\x12!1A\x06\x13Qa\x07"q\x142\x81\x91\xa1\x08
#B\xb1\xc1\x15R\xd1\xf0$3br\x82\t\n\x16\x17\x18\x19'
>>> f.tell()
352256L

I did a tell() on the original file and you can see that it is much larger than what I get out of GridFS. If I do a tell() on the file that I get back from GridFS it is in the region of 274. (I understand that tell() just tells you the pointer location in the file, but it gives an indication of how big it is after reading.)

I am obviously missing something here! How can I get the file back out of GridFS in its entirety?

I am running v2.0.2 of mongodb and v2.1 of pymongo on v2.7 of python.

link|improve this question
You can use GridOut.length to see how many bytes are actually stored which could give you an indication as to whether you are not getting all of the bytes out or if the file wasn't fully stored. – cpburnz Dec 30 '11 at 16:48
@cpburnz - Thanks - Yes, I tried that too, returns a value of 274 (same as using tell()), which leads me to think this is a chunk that I am getting back. – RobertMS Dec 30 '11 at 16:51
What version of pymongo are you using? – dcrosta Dec 30 '11 at 17:16
Sorry, should have included that in the question - I am using v2.1 of pymongo and running v2.0.2 of mongod. – RobertMS Dec 30 '11 at 17:26
1  
The code you have above should work. One thing to note is that if you've already read() or seek()-ed on the file, then GridFS will only begin writing into the database from the current file "cursor" position. If you want to be careful (and you're working with seekable files), you can add f.seek(0, 0) before fs.put(...) to explicitly seek back to the beginning. – dcrosta Dec 30 '11 at 19:31
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.