How many requests are you doing? It could simply be you are doing too many queries for the database
How many requests are you doing? It could simply be you are doing too many queries for the database to handle.
npx wrangler d1 info <db-name>
SELECT * FROM sqlite_master; or use https://github.com/nora-soderlund/cloudflare-d1-backupsmax(indexed_column) should save some reads (i think)
npx wrangler d1 info <db-name>SELECT * FROM sqlite_master;max(indexed_column)