Hi, I have the same question. I need a specific folder in flexible environment to be writable because I am using a chunk uploader that does not support Cloud Storage for temporary storing chunked files. Chunked were deleted once the whole file has completed uploading.
On Tuesday, April 25, 2017 at 2:22:24 AM UTC+8, Jordan (Cloud Platform Support) wrote: > > Is there a specific reason why you require the need to perform writes to > your 'public/app' folder? Scalable applications in the cloud should > normally never perform writes to the local filesystem, as data written in > an App Engine instance is released with the instance when it is no longer > needed (e.g. when incoming traffic reduces and your App Engine instances > scale down > <https://cloud.google.com/appengine/docs/flexible/php/an-overview-of-app-engine#instance_scaling> > ). > > It is recommended you perform writes to a non-volatile/persistent location > like Google Cloud Storage <https://cloud.google.com/storage/> or the Google > Cloud Datastore <https://cloud.google.com/datastore/> that can be > written/read by your application running in multiple App Engine instances. > You can follow the Reading and Writing Files > <https://cloud.google.com/appengine/docs/standard/php/googlestorage/> > guide for PHP which explains how to use Google Cloud Storage as a wrapper > for reading and writing files in an App Engine PHP app. > -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/0b3aacd5-d9dc-46b3-8ca4-0f90640271f5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
