Snowflake Postgres 成本评估

当您使用 Snowflake Postgres 实例时,系统会根据三种使用模式向您的账户收费。

  • Instance compute: Compute charges are based on the COMPUTE_FAMILY chosen for each Snowflake Postgres instance created in your account and are metered on a credits per hour basis.
  • 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.

Details on pricing specifics for each mode of consumption can be found in the Snowflake Service Consumption Table.

监控 Snowflake Postgres 实例的存储消耗

You can view storage usage consumption for Snowflake Postgres instances by querying the POSTGRES_STORAGE_USAGE_HISTORY view.

监控 Snowflake Postgres 实例的计算消耗

您可以通过查询以下视图来查看 Snowflake Postgres 实例的总计算消耗:

  • You can query the METERING_HISTORY view and specify service_type IN ('POSTGRES_COMPUTE', 'POSTGRES_COMPUTE_HA') in the WHERE clause to see the hourly credit usage across all Snowflake Postgres instances for an account within the last 365 days (1 year).
  • You can query the METERING_DAILY_HISTORY view and specify service_type IN ('POSTGRES_COMPUTE', 'POSTGRES_COMPUTE_HA') in the WHERE clause to see the daily credit usage across all Snowflake Postgres instances for an account within the last 365 days (1 year).