Hi Henry, The Quota of 10,000 files is an App Engine deployment quota. This information is publicly available on our App Engine documentation regarding Quotas[1]. This quota enforces a maximum of 10,000 files per day.
As an alternative to uploading files when deploying App Engine Applications, I suggest that you consider using Cloud Storage[2] with your application[3]. This will allow you to theoretically have millions of files and you will not need to worry about the deployment quotas. If you wish to keep using this method (not make any changes to your codebase), when your application does face this deployment issue, you can attempt to request a higher quota as mentioned in the documentation[4]. Keep in mind that all quota requests are subject to the approval of engineering, which means that it can be denied. Regarding your other projects, I cannot tell you why you are not faced with the limitation of 10,000 files. Google Groups are for general questions, product discussions and not in-depth technical issues. As such, I am unable to tell you why it works in the other projects. My hypothesis is that a Quota increase request was made and it was approved, but this is my theory and only that. TL;DR: Use Cloud Storage. Less stress in regards to quotas. [1]: https://cloud.google.com/appengine/quotas#Deployments [2]: https://cloud.google.com/storage [3]: https://cloud.google.com/appengine/docs/standard/java/using-cloud-storage [4]: https://cloud.google.com/appengine/quotas#When_a_Resource_is_Depleted -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/98c5598a-c501-4012-b660-e04283086119%40googlegroups.com.
