--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengi...@googlegroups.com.
To post to this group, send email to google-a...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/de9092cc-4953-496c-8b6b-f4e220f1ea6e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Where is the "data" actully stored? Just files in the 'filesystem'?
Might find it worthwhile to use Google Storage instead for the data files
... Particular if can make 'ranged' requests. ie can seek directly and read part of a file, rather than the whole file.
(I've found the 'filesystem' itself to often be slow in AppEngine)
(I've found the 'filesystem' itself to often be slow in AppEngine)
But would it really be quicker to transfer the files over the web for the Google App to process?
Surely it must be quicker to store the necessary data locally to the app?
Copying over the network from that repository, vs copying from dedicated Google Storage, is probably not significantly different
On Mon, Apr 6, 2015 at 8:28 AM, Barry Hunter <barryb...@gmail.com> wrote:
Copying over the network from that repository, vs copying from dedicated Google Storage, is probably not significantly different+1
:-( GCS is about half the speed of using the local FS. See the table below.