TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Making Applications Scale With Load Balancing (or how the Internet works)

32 点作者 littleidea超过 14 年前

3 条评论

rm-rf超过 14 年前
Good paper.<p>I've been using hybrid hardware/software load balancers since 2004, and over time I came to different conclusions than the author on load balancing algorithms, SSL offload, layer 3/4 vs. layer 7 load balancing, relative performance of SSL on load balancers, etc.<p>I also place a high value on proxy-capable load balancers for use as a 'control plain' for all ingress into the data centers. I.E. - All Internet accessible content is served by URL filtering, proxy-type, SSL capable load balancers, even if the availability requirements do not warrant redundant web/app servers. This allows us to control access to the application by URL and host header, to filter content as needed, to view and manage the status of all services at a single location, to manage all SSL certs in a single location, to automatically re-direct users to a fail whale when the app is down, etc.<p>The argument against 'doing it all' with the load balancers generally boils down to performance. My counter to that is my circa 2004 Netscalers have no problems doing 1800 requests/second, all SSL, all proxied, and all content switched/content filtered.
f1gm3nt超过 14 年前
In the PDF it links to <a href="http://1wt.eu/articles/2006_lb/" rel="nofollow">http://1wt.eu/articles/2006_lb/</a> which is the paper in html format. For those that don't want to download the PDF, good read =)
thesethings超过 14 年前
Just a heads up: It's a PDF. (Not that there's anything wrong with that :-)<p>Good paper. thanks for posting. Rare combination of deep AND highly readable.<p>I started in the middle and read through before circling and back and seeing it was written by creator of HAProxy. So it was even more impressive how objective/ pragmatic he was about different approaches.