博客园  :: 首页  :: 管理

关于Azure-平台Load balancing下的Application Gateway-应用程序网关,有如下一些重要的知识点

1、工作在OSI模块的第七层,被称为应用程序网关

 

Azure 应用程序网关是一种 Web 流量负载均衡器,可用于管理 Web 应用程序的流量。

传统负载均衡器在传输层(OSI 层 4 - TCP 和 UDP)进行操作,并基于源 IP 地址和端口将流量路由到目标 IP 地址和端口。

应用程序网关可以根据 HTTP 请求的其他属性(例如 URI 路径或主机头)进行路由决策。

例如,可以基于传入 URL 路由流量。 因此,如果 /images 在传入 URL 中,则可将流量路由到为映像配置的一组特定服务器(称为池)中。

如果 /video 在 URL 中,则可将该流量路由到针对视频优化的另一个池中。

这种类型的路由称为应用程序层(OSI 层 7)负载均衡。 Azure 应用程序网关可以执行基于 URL 的路由等操作。

官方原文如下:

Azure Application Gateway is a web traffic load balancer that enables you to manage traffic to your web applications.

Traditional load balancers operate at the transport layer (OSI layer 4 - TCP and UDP)

and route traffic based on source IP address and port, to a destination IP address and port.

Application Gateway can make routing decisions based on additional attributes of an HTTP request, for example URI path or host headers.

For example, you can route traffic based on the incoming URL.

So if /images is in the incoming URL, you can route traffic to a specific set of servers (known as a pool) configured for images.

If /video is in the URL, that traffic is routed to another pool that's optimized for videos.

This type of routing is known as application layer (OSI layer 7) load balancing. Azure Application Gateway can do URL-based routing and more.

 

 

 

尊重别人的劳动成果 转载请务必注明出处:https://www.cnblogs.com/5201351/p/17542338.html