some of this documentation existed before it was posible to do it, that's why I'm asking for a confi
some of this documentation existed before it was posible to do it, that's why I'm asking for a confirmation if someone is using them
d1 read replication shows the right material in my own tabs and incognito right at the top.read-only replicas Cloudflare D1 shows the new posts as well.
read_replication_mode again.

Exceeded maximum DB sizeThis error means that either you are inserting more than the limit for a single DB according to your plan (500MB/10GB), OR, that you are exceeding your account storage limit, again according to your plan.
My database is very quiet just now (but not silent, it's still receiving queries from all over).This is not concrete. What is quiet, and what is "still receiving queries from all over"?
Is there something that prevents replica creation if the DB isn't getting enough traffic?No, replicas are always "created" as in ready to start, one in each region. But, the traffic is what keeps them alive. No traffic, and they will shutdown again.
This is not concrete. What is quiet, and what is "still receiving queries from all over"?What I was trying to convey is that there is consistent non-zero traffic in every region, and that I expected read replicas in every region to be queried. "Quiet" as in "not enough to overload the primary DB".
.withSession() calls to my worker and see what happens. Thanks again.Your application can use read replicas with D1 Sessions API.
Hi im a noob to d1 and my biggest concern is obviously avoiding something like tea app disaster.What is the "tea app disaster"?
What is the "tea app disaster"?Recent data breach from an app called Tea: https://www.bbc.com/news/articles/c7vl57n74pqo


d1 read replicationread-only replicas Cloudflare D1read_replication_modeconst result = await env.DB.withSession()
.prepare(`SELECT * FROM Customers WHERE CompanyName = 'Bs Beverages'`)
.run();
console.log({
servedByRegion: result.meta.served_by_region ?? "",
servedByPrimary: result.meta.served_by_primary ?? "",
});.withSession()Your application can use read replicas with D1 Sessions API.