It's https://billing.support.cloudflare.com/support/s/case/500Nv00000CZtu8
18 Replies
We use R2 for the cost efficiency. A few thousand/month is too high for our use case for now. It's interesting that the default limit for resource-intensive items like buckets is 1000, while for lightweight resources like API tokens, which likely cost them nothing, the default is only 50 tokens.
I don't think buckets are really resource intensive to them, probably as lightweight as tokens are. I suppose that's besides the point though, did you get an autoreply on that ticket/how many days unanswered?
We received the initial automated response 7 days ago
Thanks, raised. I'm curious if this is possible at all for non-enterprise which we will learn
Hello, is it possible to move one R2 bucket to another Cloudflare account?
Not with a few clicks. Can use rclone or Super Slurper (CF's own migration tool) supports R2, I believe even from other accounts: https://developers.cloudflare.com/r2/data-migration/super-slurper/#destination-r2-bucket-options limited to max 1 tb objects though
Does R2 Workers bindings delete() only take a max of 1000 keys?
getting
Error: delete: The number of keys in the request must be between 1 and 1000 inclusive. (10027)
but does not say any limits in the docs for deletes other than for listing.Rclone could probably make use of server side copy
Hi everyone, I'm facing an issue with my domain.(set up as a custom domain in R2 for public access). I'm intermittently getting a DNS_PROBE_FINISHED_NXDOMAIN error when trying to access resources in my R2 bucket. The DNS records seem correct, and sometimes it works fine, but other times it doesn't. I'm not sure if this is a Cloudflare issue or just a matter of DNS propagation. Any insights or advice would be greatly appreciated. Thanks!
what's the r2 custom domain?
app.kalfone.com
Looks fine to me, no dnssec issues, 1.1.1.1/8.8.8.8/9.9.9.9 can resolve fine. How long ago did you set it up?
it's been about 30 hours, what i dont uderstand is the inconsistency
yea the inconsitency does sound weird and it's been enough time. Did you try switching dns resolvers to 1.1.1.1/8.8.8.8/9.9.9.9? Are you in a country or environment that may be hijacking/messing with your dns?
https://developers.cloudflare.com/r2/api/s3/tokens/#temporary-access-credentials
You could use this API to generate restricted temporary credentials.
Cloudflare Docs
Authentication | Cloudflare R2 docs
You can generate an API token to serve as the Access Key for usage with existing S3-compatible SDKs or XML APIs.
I did on my desktop, even tho it worked at first with 1.1.1.1 and 8.8.8.8, later it kinda stoped, with the inconsistency issue im not really sure.
also I am in Ecuador and I don't think we have policies that could mess with dns.
Right now it seems to be working fine but hopefully it was only a matter of time and not a deeper problem, either way ill let you know, thanks
R2 delete can be used through s3 compatible api, which has max 1000 keys
https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjects.html
DeleteObjects - Amazon Simple Storage Service
This operation enables you to delete multiple objects from a bucket using a single HTTP request. If you know the object keys that you want to delete, then this operation provides a suitable alternative to sending individual delete requests, reducing per-request overhead.
I have to find a different way to efficiently delete tens of thousands of objects efficiently now