Ah, that's leakage from an upcoming feature. Specifically the one labeled "Service for storing and serving large files" on our public roadmap:
http://code.google.com/appengine/docs/roadmap.html This won't be available for a little while. If you only need 10MB files, in the mean time I suggest checking out Vince's GaeVFS project: http://code.google.com/p/gaevfs/ This project works around this limitation by breaking files up to 10MB into 1MB chunks for storage in the datastore and reassembles them for serving. On Wed, Nov 11, 2009 at 2:35 PM, Rob <[email protected]> wrote: > > Hi, > > The javadoc for the low level data API says that Blobs can't be bigger > than 1MB. I'm trying to create a system where the user can upload > images and other files, so I want to be able to exceed that. This > page... > > > http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/DataTypeUtils.html > > says to use a "BlobKey", but I don't see that class anywhere. Where > is it? How do you use it? > > thanks, > Rob > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en -~----------~----~----~----~------~----~------~--~---
