What is Wall Time data? Why is it slow?

What is Wall Time data? Why is it slow? 10000ms
No description
9 Replies
Cyb3r-Jak3
Cyb3r-Jak34mo ago
Wall Time is real world time where as CPU time is the time that was spent executing your worker. IE if your worker takes 100 ms to complete a request but only 10 ms to complete then you would have Wall Time of 110 ms and CPU time of 10 ms, which you are billed for. In that screenshot, you will be billed for 169ms of CPU time
yinxingmaiming6409
yinxingmaiming6409OP4mo ago
Does this mean that my network to the worker's network is poor? Is it slow to receive messages?
Walshy
Walshy4mo ago
It means your Worker ran for 10 seconds, we don't know why - you'd need to look at your code. This is purely the time running the Worker not ingress network time. It may be you're doing a fetch to an origin that's slow, you're waiting on some task for a while, I don't know.
yinxingmaiming6409
yinxingmaiming6409OP4mo ago
I am confused about the resource restrictions on worker access to CF, do I not need to comply with HTTP restrictions?
Walshy
Walshy4mo ago
what do you mean? which restrictions exactly? You'll need to return a HTTP response if getting a HTTP request but that's about it
yinxingmaiming6409
yinxingmaiming6409OP4mo ago
What I mean is, for example, vectorize, it doesn't specify how many times an upsert can be called per second, but HTTP limits it to a maximum of 1200 calls per 5 minutes. I didn't use an HTTP interface, and the worker I used was also limited by the number of HTTP requests per account?
Walshy
Walshy4mo ago
API rate limits do not apply to bindings but you may hit the subrequest per invocation limit: https://developers.cloudflare.com/workers/platform/limits/#account-plan-limits Which for Standard is 1000/invocation
yinxingmaiming6409
yinxingmaiming6409OP4mo ago
No description
yinxingmaiming6409
yinxingmaiming6409OP4mo ago
Thank you, finally someone knows the restrictions in this area. Do you want to bind operator requests?

Did you find this page helpful?