Supabase实时数据库监听器的计费方式是如何的?

huangapple go评论57阅读模式
英文:

How exactly are Supabase realtime DB listeners billed?

问题

I'm trying to gauge potential costs for running my app on Supabase, I've read through the pricing documentation but I'm not clear on how exactly realtime database reads are billed.

For e.g, the docs outline some realtime limits on the free tier:

  • 200 concurrent Realtime connections
  • 2 million Realtime messages

What exactly is a "Realtime message" in this case? The Realtime docs go on to state:

You can uniquely reference a channel by its topic you define when you initialize your Supabase Realtime client. Everyone connected to the same Channel topic will receive the same messages.

Clients can send and receive messages bi-directionally over a Channel. The Realtime backend can also push messages to all clients connected to the same Channel.

A single client can receive change records from Postgres, Broadcast messages from other clients and Presence updates all over the same Channel.

  • It seem like a single realtime Postgres DB listener update will be counted as a message. Is this correct?
  • If yes, would that be 1 message per connected client?
英文:

I'm trying to gauge potential costs for running my app on Supabase, I've read through the pricing documentation but I'm not clear on how exactly realtime database reads are billed.

For e.g, the docs outline some realtime limits on the free tier:

  • 200 concurrent Realtime connections
  • 2 million Realtime messages

What exactly is a "Realtime message" in this case? The Realtime docs go on to state:

> You can uniquely reference a channel by its topic you define when you initialize your Supabase Realtime client. Everyone connected to the same Channel topic will receive the same messages.

> Clients can send and receive messages bi-directionally over a Channel. The Realtime backend can also push messages to all clients connected to the same Channel.

> A single client can receive change records from Postgres, Broadcast messages from other clients and Presence updates all over the same Channel.

  • It seem like a single realtime Postgres DB listener update will be counted as a message. Is this correct?
  • If yes, would that be 1 message per connected client?

答案1

得分: 0

It seem like a single realtime Postgres DB listener update will be counted as a message. Is this correct?
是的,这是正确的。

If yes, would that be 1 message per connected client?
是的,每个已连接的客户端将算作1条消息。

英文:

> It seem like a single realtime Postgres DB listener update will be counted as a message. Is this correct?

Yes, that is correct.

> If yes, would that be 1 message per connected client?

Yes, it's 1 message per connected client.

huangapple
  • 本文由 发表于 2023年5月21日 12:48:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/76298340.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定