Hi,
If you are using gcloud for deployment, you won’t have any option to change the disk size. If you get an error in this case, I recommend to report it to the Issue Tracker <https://cloud.google.com/support/docs/issue-trackers> so that we would be able to investigate it further. If you are using a hook to deploy your app, you may configure your build via a build config file <https://cloud.google.com/cloud-build/docs/build-config#structure_of_a_build_config_file>. So you would have the option on changing the disk size. But as noted here <https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#Build.BuildOptions.FIELDS.disk_size_gb>, “diskSizeGb” is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 1000GB; builds that request more than the maximum are rejected with an error. So, it seems you should make a refactoring on your code as Maximiliano noted. -- 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/50536aea-00d1-4394-b492-0eea42ed88b5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
