SimplySerenity
06/03/2021, 9:45 PMSimplySerenity
06/03/2021, 9:45 PMKitakamiKyle
06/03/2021, 9:55 PMKitakamiKyle
06/03/2021, 10:04 PMVanessaš¦©
06/03/2021, 11:48 PMKIX
. Thanks!
However, I am noticing a lot of latency (~440ms) from Los Angeles to that DO.
My existing infrastructure running on GCP gets me ~120ms (with a dispatcher [similar to worker] in Oregon, and a reflector [similar to DO] in Tokyo).
Is there a way to make it faster?brett
06/03/2021, 11:59 PMVanessaš¦©
06/04/2021, 12:00 AMbrett
06/04/2021, 12:06 AMbrett
06/04/2021, 12:07 AMbrett
06/04/2021, 12:07 AMbrett
06/04/2021, 12:07 AMVanessaš¦©
06/04/2021, 12:07 AMVanessaš¦©
06/04/2021, 12:08 AMbrett
06/04/2021, 12:08 AMbrett
06/04/2021, 12:09 AMVanessaš¦©
06/04/2021, 12:10 AMVanessaš¦©
06/04/2021, 12:11 AMVanessaš¦©
06/04/2021, 12:11 AMbrett
06/04/2021, 12:15 AMbrett
06/04/2021, 12:17 AMbrett
06/04/2021, 12:19 AMVanessaš¦©
06/04/2021, 12:21 AMbrett
06/04/2021, 12:22 AMbrett
06/04/2021, 12:23 AMbrett
06/04/2021, 12:23 AMVanessaš¦©
06/04/2021, 12:24 AMbrett
06/04/2021, 12:24 AM.get
between the fetches and/or reconnectionVanessaš¦©
06/04/2021, 12:26 AMdrhodes
06/04/2021, 12:27 AMwrangler publish --delete-class ClassNameHere
, but then I get the error message Cannot create binding for class ClassNameHere because it is not currently configured to implement durable objects. Did you forget to apply a --new-class migration to it?
Any ideas what the solution is here?drhodes
06/04/2021, 12:43 AMbash
GET https://api.cloudflare.com/client/v4/accounts/{accountID}/workers/durable_objects/namespaces
This will return you:
json
{
"result": [
{
"id": "{yourDurableObjectId}",
"name": "someName",
"script": "someScript",
"class": "ClassNameHere"
}
],
"success": true,
"errors": [],
"messages": []
}
You then run:
bash
DELETE https://api.cloudflare.com/client/v4/accounts/{accountId}/workers/durable_objects/namespaces/{yourDurableObjectId}