30 多个请求导致了 22w 个查询 request,😭现在千万别用 cloudflare serverless database(D1)

查看 217|回复 14
scalaer
OP
  
你这个“30 多个”指的是 RPS, 你说的 "22W 个" 是 Total 吧,所以别让大家用的原因是什么呢?
scalaer
OP
  
@NessajCN 上面那个统计是 worker 接收到的统计, 实际请求量应该就是 30 多个左右吧
@oldshensheep 是的,应该 io 一次就算一个请求了,还没有找到加 index 的位置,先下线吧😭
oldshensheep   
@metrue 踩了坑提醒大家,22w 个全是 d1 的 read request
Rheinmetal   
加索引不是写个 SQL 就行了嘛
scalaer
OP
  
Rows read measure how many rows a query reads (scans), regardless of the size of each row. For example, if you have a table with 5000 rows and run a SELECT * FROM table as a full table scan, this would count as 5,000 rows read. A query that filters on an unindexed column may return fewer rows to your Worker, but is still required to read (scan) more rows to determine which subset to return.
是不是频繁全表扫描的问题?
您需要登录后才可以回帖 登录 | 立即注册

返回顶部