【发布时间】:2014-11-05 02:03:31
【问题描述】:
我将我的 GAE 应用程序部署为模块。 appengine-web.xml 如下。
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>myapp</application>
<version>200</version>
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
<use-google-connector-j>true</use-google-connector-j>
<module>batch</module>
<instance-class>B1</instance-class>
<basic-scaling>
<max-instances>1</max-instances>
<idle-timeout>10m</idle-timeout>
</basic-scaling>
</appengine-web-app>
但我的应用返回超过配额错误。
请求:
https://200-dot-batch-dot-myapp.appspot.com
回复:
Over Quota
This application is temporarily over its serving quota. Please try again later.
实际上,“Backend Instance Hours”(9.00 of 9.00 Instance Hours)的免费使用已用完,但我的应用的计费状态已启用。
为什么我遇到了超出配额的错误?又该如何避免呢?
【问题讨论】:
-
您是否查看过应用引擎仪表板中的预算设置?
-
计费状态:已启用。最大每日预算为“0.00 美元”。这是否意味着无限?还是禁用结算?
-
这意味着没有预算。增加它。
-
感谢您的回复。我添加了我的预算并且工作正常。