krishnact / gaevfs

Automatically exported from code.google.com/p/gaevfs
Apache License 2.0
0 stars 1 forks source link

Virtual file size limit of 1.0MB #1

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Due to limits on GAE datastore entity size, the maximum file that can be
written to the GaeVFS virtual file system is 1.0MB. An entity chaining
mechanism needs to be implemented to remove this limit. It's probably best
to implement this in custom InputStream and OutputStream classes. It's
important that it not be necessary to have the entire file (>1.0MB)
resident in memory; for example, it should be possible to write a file to
the servlet response output stream without ever having the entire file in
memory.

Review this for possible code sharing:
http://code.google.com/p/google-file-service/

Original issue reported on code.google.com by vbonfa...@gmail.com on 23 Jun 2009 at 8:16

GoogleCodeExporter commented 8 years ago

Original comment by vbonfa...@gmail.com on 23 Jun 2009 at 8:18

GoogleCodeExporter commented 8 years ago
fixed for 0.3 release

Original comment by vbonfa...@gmail.com on 8 Jul 2009 at 10:39