You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We attempted to fix it with #314 by truncating the raw list of peers to push to 3500, but that didn't work.
It didn't work because if we have 3500 records existing on CF, and want to push 3500 where some of those are new, then we'll exceed the quota because the devp2p dns to-cloudflare command will attempt to push new and updated records before deleting stale ones.
If we naively modify the deploy command to delete the stale records first, we could potentially create a negative space in the records before filling it, which could be risky if the record create/update command fails for any reason.
The text was updated successfully, but these errors were encountered:
etclabscore/discv4-dns-lists#323
This patch modifies the deployment
pattern by deleting one stale record
before creating a new record, rather
than leaving all the stales to be deleted
at the end.
Date: 2023-12-07 08:24:07-07:00
Signed-off-by: meows <b5c6@protonmail.com>
The cloudflare record quota is 3500.
This failure #322 is caused by exceeding it (or attempting to). https://github.com/etclabscore/discv4-dns-lists/actions/runs/7127904738/job/19408807629#step:13:20
We attempted to fix it with #314 by truncating the raw list of peers to push to 3500, but that didn't work.
It didn't work because if we have 3500 records existing on CF, and want to push 3500 where some of those are new, then we'll exceed the quota because the
devp2p dns to-cloudflare
command will attempt to push new and updated records before deleting stale ones.If we naively modify the deploy command to delete the stale records first, we could potentially create a negative space in the records before filling it, which could be risky if the record create/update command fails for any reason.
The text was updated successfully, but these errors were encountered: