Hello We have a php app running on app engine, flexible environment, and we need to do a bulk file operation on on a google cloud storage, like copy a 200 files from one place to another in a bucket.
We were using php libraries out there, but as they all are doing the copy operations file by file with api, it was taking too long. No multi-thread is available for them, so we went more and found the gsutil. As gsutil can do bulk operations in multi-thread, we used shell_exec() in php to call gsutil with -m option, and it was running really fast on local development. But we are getting "command not found" error on app engine, we tried to manually put gsutil there, but after that we start getting "permission denied". Our task is to do bulk operations of google cloud storage in parallel manner, anything suggestions? -- 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/751123f7-8d03-4c21-bac0-949bc9ec4faf%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
