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.
GridOut.lengthto 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:48read()orseek()-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 addf.seek(0, 0)beforefs.put(...)to explicitly seek back to the beginning. – dcrosta Dec 30 '11 at 19:31