I m on paid unbound plan so 600ms should
I'm on paid, unbound plan, so 600ms should not be my CPU limit.
8 Replies
DM'd the account ID
@kikap_ - what error are you actually seeing though? Unbound doesn't mean 15 minutes of CPU time here.
@Matt you mean seeing in the logs? because since it's a "headless" worker, I don't see anything, except for the fact that I expect much more than 1000 items in the KV.
question though: each write to the queue counts as a subrequest too?
Each time you call
.send()
- yes
.sendBatch()
is only 1 - and if you can do some batching on the client/producer side, you shouldokay, so that's probably my problem. I just exchanged KV ops/invocation limit to the Queue ops/invocation limit which is the same number
A KV put or an R2 put or a Queue send = each is "1"
You can do any mix of those, up to 1000 per invocation - e.g. each time your
queue()
is invoked on a batch of messageslol, there's no sendBatch() for Rust