Re: [google-appengine] Transferring large amount of data

2010-05-12 Thread Ikai L (Google)
The two ideas off the top of my head are: 1. Break the file into pieces and use multiple URLFetch calls 2. Have the file uploaded into the Blobstore, then have the other machine download this file using HTTP. On Tue, May 11, 2010 at 5:19 PM, Ajay Chitre wrote: > Hello, > > What are the various

[google-appengine] Transferring large amount of data

2010-05-11 Thread Ajay Chitre
Hello, What are the various options available for transferring large amount of data out of AppEngine? I tried SDC but I got 'The request to API call urlfetch.Fetch() was too large' message. I guess, FTP wouldn't work because some of the classes under java.net.* package are black-listed. Here's