SQL Azure 服务器作为计费单位
azure 培训套件演示之一说道:
每个帐户有零个或多个逻辑 服务器
- 通过通用门户进行配置
- 建立计费工具
每个逻辑服务器都有一个或多个 数据库
- 包含有关数据库和数据库的元数据用法
- 身份验证、地理位置、计费、报告单位
- 生成的基于 DNS 的名称
每个数据库都有标准的 SQL 对象
- 用户、表、视图、索引等
- 一致性单位
所以现在我迷路了 :D 。数据库本身不就是计费单位吗?
我的意思是,我认为服务器就像逻辑容器,您需要根据数据库的数量和大小付费。服务器如何计费?
谢谢。
One of the azure training kit presentation says:
Each account has zero or more logical
servers
- Provisioned via a common portal
- Establishes a billing instrument
Each logical server has one or more
databases
- Contains metadata about database & usage
- Unit of authentication, geo-location, billing, reporting
- Generated DNS-based name
Each database has standard SQL objects
- Users, Tables, Views, Indices, etc
- Unit of consistency
So now I'm lost :D. Were not the databases themselves the units of billing?
I mean, I thought that servers were just like logical containers and you were charged per number and size of databases. How servers are billed?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在订阅中,当您设置 SQL Azure 时,您可以有效地创建位于六个数据中心之一的逻辑服务器。默认情况下,订阅支持单个逻辑服务器。我猜您必须联系 Microsoft 才能增加此配额。无论如何,您根本不需要为“服务器”付费——没有分配数据空间。
您严格按数据库付费。每个数据库层都有一个月费率,根据每天的最大数据库大小每天进行摊销。如果您的数据库大小是动态的,这将为您节省金钱。例如:假设您有一个 Web 版数据库,它有两层:1GB 和 5GB。假设在这个月的大部分时间里,您的每日使用量低于 1GB,但在一周内,您的运行量约为 1.5GB。您将按该周的 5GB 费率付费,但在该月的其余时间按 1GB 费率付费(这比支付整个月的 5GB 费率节省了很多)。
如果加载一个 5GB 数据库,其价格相当于拥有五个 1GB 数据库,即使这些 1GB 数据库存在于不同的逻辑服务器中。
In your subscription, when you set up SQL Azure, you effectively create a logical server, located in one of six data centers. By default, a subscription supports a single logical server. I'm guessing you'd have to contact Microsoft to increase this quota. In any case, you don't pay at all for the "server" - there's no data space allocated.
You pay strictly per database. Each database tier has a monthly rate, amortized daily based on maximum database size for each day. This will save you money if your database size is dynamic. For instance: Assume you have a Web edition database, which has two tiers: 1GB and 5GB. Let's say that most of the month, your daily usage falls below 1GB, but for a week, you run at about 1.5GB. You'll pay at the 5GB rate for that week, but at the 1GB rate for the rest of the month (this is a significant savings over paying the 5GB rate for the entire month).
If you load up a 5GB database, the price is equivalent to having five 1GB databases, even if those 1GB databases existed in different logical servers.
我想知道有多少律师和律师?程序员将这些描述放在一起:/
从技术上讲,数据库与服务器结合在一起,并按千兆字节/月计费。
I wonder how many lawyers & programmers put that description together :/
Technically a database is married to a server and is billed by by gigabyte/month.