Hi guys, I don't have a direct answer to your question but I have another proposal:
why don't replace the blobstore by a pojo containing a list of gae blob objects. They are limited to 1 Mbytes each but you can split your files into a collection that you gather via the proper structure (a java collection) You can then access the full servlet api (POST to store them, GET to retrieve them) The recent availability allows you to serve a blob while you fetch the next one. I see only 1 issue in this solution as of now: the 30s limit on interactive request meaning that each file has to be served back in less than 30s. Maybe too small depending on size of your files. regards didier On Feb 24, 5:13 am, Rick Smith <[email protected]> wrote: > I am also looking for a similar solution. Currently my application is > running on a local server and I have uploaded more than 50000 thousands file > in SVN. Now I want to shift on Google app engine and I have already done > most of the hardwork. But I do not found a programatic way to upload these > file to blob store directly and I am still waiting for a concrete solution > as I can't upload each file one by one using file system. > > It will be highly appreciated if some one from google take on this and > provide us a solution so that we can move on GAE. > > Regards > > Rick -- 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.
