Earlier quoted context omitted.
Price is the main difference between AWS CloudFront/Fastly and CF. In most cases, CF prices are fixed, like $200 for business or $20 for the pro plan. If you like fixed prices VMs from Linode or DO, chances are high that you will like Cloudflare too. Of course, advanced addons features like CF Argo and CF Bot management cost more money at Cloudflare too.
While that lasts, you can't be charging a flat $200 in a world where the other players are charging 5-10¢/GB of egress.
CloudFront vs. Cloudflare, and how to reduce response times for both (2021)
51–57 of 57 posts
Re: CloudFront vs. Cloudflare, and how to reduce response times for both (2021)
#52Earlier quoted context omitted.
Out of curiosity, what makes Clousflare's WAF so much better?
CF have more options, filters, settings, realtime reports, rules and statistics.. Additionally CF ofers a good set of system managed WAF rules that you can simply active and CF will manage it for you. With AWS you're basically on your own. More or less is a bare bones WAF tool.
Re: CloudFront vs. Cloudflare, and how to reduce response times for both (2021)
#53IMO Perfomance wise CloudFront and Cloudfront are quite similar. I've migrated from CloudFront+AWS WAF to just CloudFlare given Cloudflare's superior (100x better) WAF/Firewall/DDOS protection at a lower cost
> IMO Perfomance wise CloudFront and Cloudfront are quite similar. Yes I don't think the capitalization has too much impact.
Re: CloudFront vs. Cloudflare, and how to reduce response times for both (2021)
#54TLDR, adding an "edge" in front of your application incurs a connection setup cost which can be 2-3x RTT and is especially noticeable when you don't have a large QPS and are in a region like APAC where geographically close networks often have high latencies between each other. Both Argo and OriginShield seem to pool more aggressively, often going cross-datacenter to avoid hitting origin which sometimes saves this set…
If you have 1 origin region/server and globally distributed users, in the data shown the RTT from Sydney could be 1000ms, so TLS negotiation of 3 roundtrips could be 3000ms. If you terminate TLS at the edge that could be order of magnitude less.. not more? depends on your setup though.
Re: CloudFront vs. Cloudflare, and how to reduce response times for both (2021)
#55Anybody using Cloudflare to cache an API that serves JSON? Thinking about setting that up.
Re: CloudFront vs. Cloudflare, and how to reduce response times for both (2021)
#56Re: CloudFront vs. Cloudflare, and how to reduce response times for both (2021)
#57TLDR, adding an "edge" in front of your application incurs a connection setup cost which can be 2-3x RTT and is especially noticeable when you don't have a large QPS and are in a region like APAC where geographically close networks often have high latencies between each other. Both Argo and OriginShield seem to pool more aggressively, often going cross-datacenter to avoid hitting origin which sometimes saves this set…
depending on your origin and your users, having TLS terminate / be negotiated at the edge should _reduce_ your connection setup cost, by reducing RTT time for the handshake to the end user (typically the slowest bit / longest tail). If you have 1 origin region/server and globally distributed users, in the data shown the RTT from Sydney could be 1000ms, so TLS negotiation of 3 roundtrips could be 3000ms. If you termin…