Snowflake Postgresのコスト評価

Snowflake Postgresインスタンスを使用する場合、アカウントは3つの消費モードに基づいて課金されます。

  • インスタンスコンピューティング:コンピューティング料金は、アカウントで作成された各Snowflake Postgresインスタンスに対して選択された COMPUTE_FAMILY に基づき、1時間あたりのクレジットで計測されます。

  • 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インスタンスにおける時間単位のクレジット使用状況を確認できます。

  • METERING_DAILY_HISTORY ビュー をクエリし、 WHERE 句で service_type IN ('POSTGRES_COMPUTE', 'POSTGRES_COMPUTE_HA') を指定すると、過去365日(1年)のアカウントのすべてのSnowflake Postgresインスタンスにおける1日単位のクレジット使用状況を確認できます。