Earlier quoted context omitted.
Support and also all-around enterprise readiness. Even on the enterprise tier, their permissions management is a pale shadow of what IAM grants you on AWS or GCP, to the point where you will put your compliance as risk. No documentation on setting up SAML/SSO for their management console. It's very, very clear that their internal growth engines are set to ludicrous growth rates (to try and justify their outrageous st…
please find the docs for SSO setup for the CF dashboard here: https://developers.cloudflare.com/cloudflare-one/application...
Cloudflare Sippy: Incrementally Migrate Data from AWS S3 to Reduce Egress Fees
161–168 of 168 posts
Re: Cloudflare Sippy: Incrementally Migrate Data from AWS S3 to Reduce Egress Fees
#162Earlier quoted context omitted.
Bulk deletes on S3 should be done using a Life Cycle Policy to avoid the per object delete cost
This (although as others said it’s the list cost, not the delete). If you want to nuke a bucket don’t waste your time with the API and just age the files out. I’ve done this with buckets with tens of millions of files and five minute’s work.
>>
PUT, COPY, POST, LIST requests (per 1,000 requests) = $0.005
GET, SELECT, and all other requests (per 1,000 requests) = $0.0004
>>
"You pay for requests made against your S3 buckets and objects. S3 request costs are based on the request type, and are charged on the quantity of requests as listed in the table below" https://aws.amazon.com/s3/pricing/#:~:text=You%20pay%20for%2...
Re: Cloudflare Sippy: Incrementally Migrate Data from AWS S3 to Reduce Egress Fees
#163Earlier quoted context omitted.
Of course it can.
So, the CloudFront setup process only surfaces S3, ELBs, API Gateways, Mediastore, and Mediapackage domains as origin domains. I do notice that it will let me type in an arbitrary domain - is that how you're supposed to stick bare EC2 instances behind CloudFront? Just provide it something like realoriginserverplsdonthack.example.com and use some other method (e.g. VPC configuration) to prevent bypassing CloudFront?
If you want to lock ec2 access to cloudfront only you can do it in SG with "managed prefix list for CloudFront".
Re: Cloudflare Sippy: Incrementally Migrate Data from AWS S3 to Reduce Egress Fees
#164Earlier quoted context omitted.
This, CF is the only service that I find amazing, and that I do not use for anything. Compared to AWS, I think I prefer the "we're your unopinionated infra provider, if you want a WAF we have that too", vs the CF "block the world, especially the developing world, give zero craps about it". I fundamentally would be unhappy as their customer even if their service were stellar because I do not want my apps to be associa…
The geographical blocks are not enforced by Cloudflare as a blanket ban, but are chosen by each account owner (it's a setting you configure). I've worked with a few companies that saw this as a very valuable service (like small domestic companies blocking international traffic, especially from Russia and China, because we had no presence there anyway and that cut down bot traffic by like 95%). Likewise, TOR access is…
Re: Cloudflare Sippy: Incrementally Migrate Data from AWS S3 to Reduce Egress Fees
#165Earlier quoted context omitted.
Yeah https://developers.cloudflare.com/images/image-resizing/ https://developers.cloudflare.com/images/image-resizing/url-... Example: src="/cdn-cgi/image/width=80,quality=75/uploads/avatar1.jpg About /cdn-cgi/image/ It's a fixed prefix that identifies that this is a special path handled by Cloudflare’s built-in Worker. --- Price at Cloudflare : 50,000 monthly resizing requests included with Pro, Business. $9 per add…
that is a lot cheaper than Vercel in term of store image but egress seems expensive since they charge per cache image served as well. Do you know if Cloudinary is a better option?
Re: Cloudflare Sippy: Incrementally Migrate Data from AWS S3 to Reduce Egress Fees
#166Earlier quoted context omitted.
Bulk deletes on S3 should be done using a Life Cycle Policy to avoid the per object delete cost
Deletes are free, but you have to pay to list to delete if not individually tracking.
Still use lifecycle policies (I visualized how it ages out 1 billion items here[1]), but list request prices are not a factor worth mentioning.
1. https://tomforb.es/visualizing-how-s3-deletes-1-billion-obje...
Re: Cloudflare Sippy: Incrementally Migrate Data from AWS S3 to Reduce Egress Fees
#167Earlier quoted context omitted.
This (although as others said it’s the list cost, not the delete). If you want to nuke a bucket don’t waste your time with the API and just age the files out. I’ve done this with buckets with tens of millions of files and five minute’s work.
Both list objects and delete object are API actions that incur the standard cost for "requests" ... isn't it? >> PUT, COPY, POST, LIST requests (per 1,000 requests) = $0.005 GET, SELECT, and all other requests (per 1,000 requests) = $0.0004 >> "You pay for requests made against your S3 buckets and objects. S3 request costs are based on the request type, and are charged on the quantity of requests as listed in the tab…
“DELETE and CANCEL requests are free.”