i know the 1.4.0 version was released, the limit was raised to 32mb. http://googleappengine.blogspot.com/2010/12/happy-holidays-from-app-engine-team-140.html so i wanna upload my dem data . the data dem.bil is under the /war/dem.bil directory.and these are my codes to fetch the data dem.bil that is 3M: try{ URLConnection a = url.openConnection(); InputStream b = a.getInputStream(); int len = a.getContentLength(); if (len < 0) { return null; } //System.out.println("Total: "+len); byte[] c = new byte[len]; b.read(c,0,len); return c; }catch (Exception e) { e.printStackTrace(); return null; } } but when it goes to InputStream b = a.getInputStream(); it's debug is "com.google.appengine.api.urlfetch.ResponseTooLargeException: The response from url localhost:8888/dem.bil was too large. ".so can you can tell me why?or some wrong with my codes? thanks. xiu
Cyrille Vincey wrote: > I've been testing Ikai's bulkload mapper (see url below) with a pretty big > csv file (200 Mb). > It works great, and I encourage most of you to consider implementing this > for entity uploads. > > Yet, I do face one last issue with an unexpected quota : blobstore bytes > read. > This quota cannot be tuned via the billing settings, and it's not clear > whether it limits the speed of my process or not when it's reached. > > > See ? Yep, it's a lot of bytes readÅ > Could someone confirm that the blob csv file is *NOT* fully fetched each > time the mapper iterates on a new line ? > > (ikai's post) > http://ikaisays.com/2010/08/11/using-the-app-engine-mapper-for-bulk-data-imp > ort/ -- 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.
