渠道 API 的计费是如何完成的?

发布于 2024-10-28 08:11:06 字数 626 浏览 0 评论 0原文

我选择 google-app-engine 因为它的可扩展性,现在我尝试了解一旦发布该产品我将需要支付多少费用。

我在谷歌应用程序引擎文档中来回查找问题的答案,但找不到。我在“配额”页面中找到了一些详细信息,我找到了我可以免费获得多少以及计费默认配额是多少。

结算页面中,有 CPU 等的数字,以及资源和单位以及数量它花费了。但我在哪里找不到每个频道调用/创建的费用,等等。

我什至无法尝试使用管理控制台中的内容进行计算,因为当前的数字现在是 0(因为有 2 个用户)他们是程序员)。

我如何准备好发布(希望)每天都会创建大量渠道的产品?

有没有我漏掉的页面,或者有计算的工具吗?

谢谢!

编辑: Moishe,感谢您快速且可读的答案。所以这里还有一些问题: 1. 如果需要的话,您认为我能够获得更多的频道数量配额吗?我看到有一个特殊的表格可以要求更多配额,但我不确定其中是否包含 Channel-API 功能... 2. 您是否发表过“如何高效使用channel-API”的帖子?我看到了一些关于重用每个用户的令牌的内容。还有更多吗?

再次感谢。

I've chosen google-app-engine because of its scalability, and now I try to understand how much I will have to pay once I release the product.

I've looked back and forth in the google app engine documentation to find an answer for question and couldn't find. I found few details in the "Quotas" page, I found how much I can get for free and how much is the Billing Default Quota.

In Billing Page there are number for CPU, etc with Resource and Unit and how much it cost. But no where could I find how much will it cost me per channel calls/created, etc.

I can't even try to make calculations with what's in the Admin console, because the current numbers there now are 0 (since there are 2 users which are the programmers).

How can I be ready for the releasing of the product that (hopefully) will have a huge number of channels created daily?

Is there a page I missed, or is there a tool for calculating?

Thanks!

EDIT:
Moishe, thanks for the quick and readable answer. So here are some more questions:
1. Do you think - if needed - that I will be able to get even more quota for the number of channels? I saw there's a special form to ask for more quotas, but I'm not sure that includes the Channel-API feature...
2. Are there any posts you've made for "how to use channel-API efficiently"? I saw some stuff about reusing the tokens per user. Is there more?

Thanks again.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三生路 2024-11-04 08:11:06

创建通道大约需要 2.7 CPU 秒。每个 CPU 小时的成本为 0.10 美元。因此,创建每个频道的成本

(2.7 / 3 600) * $0.10 = $7.5 × 10^-5

因此,创建 1000 个频道将花费 0.075 美元,即 7.5 美分。

对于通过通道发送的任何数据,您还需要支付正常的传出带宽费用。

CPU 成本可能不是最大的问题;您更有可能遇到配额上限,然后耗尽资金。付费应用程序每天最多创建 86400 个频道(1 个/秒)。

Creating a channel costs about 2.7 CPU-seconds. A CPU-hour costs $0.10. So, each channel created costs

(2.7 / 3 600) * $0.10 = $7.5 × 10^-5

So creating 1000 channels will cost $0.075, or 7.5 cents.

You'll also get charged the normal outgoing bandwidth costs for any data sent over a channel.

The CPU cost probably isn't the biggest concern; you're more likely to run into quota caps then running out of money. Paid apps are limited to 86400 channel creations/day (1/second).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文