Snowflake Postgres 成本评估¶
当您使用 Snowflake Postgres 实例时,系统会根据三种使用模式向您的账户收费。
实例计算:计算费用基于为账户中创建的每个 Snowflake Postgres 实例所选择的 COMPUTE_FAMILY,并按每小时消耗的积分计费。
Instance storage: Cost for storage depends on the amount of storage allocated across all Snowflake Postgres instances in your account. Charges are based on a flat monthly rate per terabyte (TB) per month but are metered on a byte-month basis.
Data transfer: Standard Snowflake data transfer costs apply for all data transfer in and out of Snowflake Postgres instances. This includes data replication between Snowflake Postgres primary instances and any read replicas they have.
有关每种使用模式的定价细节的详细信息,请参阅 Snowflake 服务消耗表。
监控 Snowflake Postgres 实例的存储消耗¶
您可以通过查询 POSTGRES_STORAGE_USAGE_HISTORY 视图 来查看 Snowflake Postgres 实例的存储消耗。
监控 Snowflake Postgres 实例的计算消耗¶
您可以通过查询以下视图来查看 Snowflake Postgres 实例的总计算消耗:
您可以查询 METERING_HISTORY 视图,并在 WHERE 子句中指定
service_type IN ('POSTGRES_COMPUTE', 'POSTGRES_COMPUTE_HA'),以查看过去 365 天(1 年)内账户下所有 Snowflake Postgres 实例的每小时 Credit 使用情况。您可以查询 METERING_DAILY_HISTORY 视图,并在 WHERE 子句中指定
service_type IN ('POSTGRES_COMPUTE', 'POSTGRES_COMPUTE_HA'),以查看过去 365 天(1 年)内账户下所有 Snowflake Postgres 实例的每天 Credit 使用情况。