Getting error on GAE: Max number of files and blobs is 10000

前端 未结 1 472
挽巷
挽巷 2020-12-12 05:24

I am trying to migrate a Wordpress environment into a Google App Engine project. The current Wordpress environment is quite large. While deploying the files I get this error

相关标签:
1条回答
  • 2020-12-12 05:35

    You're hitting the Deployments quota.

    Hm, a paid option to exceed the value doesn't seem to be available. Might be worthy to ask for it, per the documentation:

    Is your app exceeding the default limits? If you have Silver, Gold, or Platinum support package, you can contact your support representative to request higher throughput limits. Otherwise, you can apply for more Mail API quota or file a feature request for any other quota increase.

    Meanwhile you could try to split your app in multiple modules and upload them separately (hoping that app really means module in the Deployments quota wording - versions really apply to modules, not to apps as a whole).

    If splitting into modules doesn't work you could split the functionality into multiple apps, pointing to each-other to make them look more like a single app, potentially with nicely crafted custom sub-domain mappings. A nightmare, I'm not even sure I should be suggesting that :)

    If the high number of files in the upload comes primarily from static content you could also consider serving some of that content from CDNs, separate apps or storing it in the GAE storage (practically limited only by the amount you're willing to pay) and serving it dynamically.

    0 讨论(0)
提交回复
热议问题