Remix.run Logo
sreekanth850 3 days ago

No matter if its hosted on Azure GCP or AWS, latency is real. Cloud providers doesn't magically eliminates the Geography and phhysics. Private network don't eliminates latency magically. In general, Any small latency hike can potentially create performance bottlenecks for write operations in strong consistency DB like postgres or MySQL because each write operation go through a round trip from your server to remote planetscale server that create transaction overhead. Complex transactions with multiple statements can amplify this latency due to this round trip. But you could potentially reduce this latency by hosting your app near to where planet scale host their DB cluster though. But that is a dependency or compromise. Edit: A few writes per second? Probably fine. Hundreds of writes per second? Those extra milliseconds become a real bottleneck.

mattrobenolt 3 days ago | parent | next [-]

You can simply place your database in the same AWS or GCP region and the same AZs.

aiisthefiture 3 days ago | parent | prev | next [-]

Your database will get slower before the latency is an issue.

hobofan 3 days ago | parent | prev [-]

> Hundreds of writes per second? Those extra milliseconds become a real bottleneck.

Of course it's nicer if the database can handle it, but if you are doing hundreds of sequential non-pipelined writes per second, there is a good chance that there is something wrong with your application logic.

sreekanth850 3 days ago | parent [-]

Not universal, there are systems that need high frequency, low latency, strong consistency, writes.

hobofan 3 days ago | parent [-]

Yes, but for the majority of those, rhose would be individial transactions per e.g. request, so the impact would be a fixed latency penalty rather than a multiplicative one.