Index of /redirect

Icon  Name                    Last modified      Size  Description
[DIR] Parent Directory - [   ] AC_RunActiveContent.js 02-Mar-2010 01:49 8.1K [TXT] README.html 02-Mar-2010 09:47 13K [TXT] httpgetredirect.html 02-Mar-2010 01:49 2.0K [   ] httpgetredirect.swf 02-Mar-2010 01:49 31K [TXT] redirect.html 02-Mar-2010 01:49 2.0K [   ] redirect.swf 02-Mar-2010 01:49 31K
Load Balancer Wowza Media Systems

Load Balancer

Description

This package provides system for load balancing between multiple Wowza Media Server 2 servers. It leverages the IServerNotify (ServerListener) interface in Wowza Media Server 2. Each edge server is configured to use the ServerListenerLoadBalancerSender ServerListener class. We will call these servers the "edge" servers. Edge servers will periodically (about every 2.5 seconds) send load and status information over UDP to a single (or multiple) Wowza Media Server 2 servers running the ServerListenerLoadBalancerListener ServerListener. We will call this server the "load balancer". The load balancer will keep track of the load and availablility of each of the edge servers to which it is communicating.

When a Flash client wishes to communicate with one of the edge servers, it will first make a request to the load balancer to get the address of the least loaded edge server. The Flash client will then connect directly to this edge server. There are currently two ways for a Flash client to obtain the address of the least loaded edge server. The first method is to make a NetConnection.connect() request to an application on the load balancer that is running the ModuleLoadBalancerRedirector module. The ModuleLoadBalancerRedirector module rejects this connection request with a info.code of "NetConnection.Connect.Rejected". The redirect url will be contained in the info.ex.redirect field. The second method is to make an HTTP request to the load balancer from Flash using the URLLoader class. The load balancer will return the redirect host name or ip address in the response to this request. This package includes Flash examples of both of these methods.

The load balancing mechanism is dynamic. Each time a new edge server is started or stopped it will communicate with the load balancer to send its current status. This makes it very easy to add and remove servers from the pool of availabe edge servers simply by starting or stopping an edge server. There is also a Java and JMX API for temporarily removing an edge server from the pool. All of this is discussed below.

To setup a "load balancer" server

  1. Install Wowza Media Server 2 Preview 7 (or greater).
  2. Copy the file lib/wms-plugin-loadbalancer.jar from this zip archive to the [install-dir]/lib/ folder of Wowza Media Server 2.
  3. Copy the file conf/crossdomain.xml from this zip archive to the [install-dir]/conf/ folder of Wowza Media Server 2.
  4. Edit [install-dir]/conf/Server.xml and make the following changes:

    Add the following ServerListener entry to the <ServerListeners> list:
    
    <ServerListener>
    	<BaseClass>com.wowza.wms.plugin.loadbalancer.ServerListenerLoadBalancerListener</BaseClass>
    </ServerListener>
    

    Add the following properties to the <Properties> section at the bottom of Server.xml:
    
    <Property>
    	<Name>loadBalancerListenerKey</Name>
    	<Value>023D4FB4IS83</Value>
    </Property>
    <Property>
    	<Name>loadBalancerListenerIpAddress</Name>
    	<Value>*</Value>
    </Property>
    <Property>
    	<Name>loadBalancerListenerPort</Name>
    	<Value>1934</Value>
    	<Type>Integer</Type>
    </Property>
    <Property>
    	<Name>loadBalancerListenerRedirectorClass</Name>
    	<Value>com.wowza.wms.plugin.loadbalancer.LoadBalancerRedirectorConcurrentConnects</Value>
    </Property>
    <Property>
    	<Name>loadBalancerListenerMessageTimeout</Name>
    	<Value>5000</Value>
    	<Type>Integer</Type>
    </Property>
    

  5. Edit [install-dir]/conf/VHost.xml and add the following HostPort/HTTPProvider XML snippet just before the HTTPProvider definition for com.wowza.wms.http.HTTPServerVersion:
    
    <HTTPProvider>
    	<BaseClass>com.wowza.wms.plugin.loadbalancer.HTTPLoadBalancerRedirector</BaseClass>
    	<RequestFilters>*loadbalancer</RequestFilters>
    	<AuthenticationMethod>none</AuthenticationMethod>
    	<Properties>
    		<Property>
    			<Name>enableServerInfoXML</Name>
    			<Value>true</Value>
    			<Type>Boolean</Type>
    		</Property>
    	</Properties>
    </HTTPProvider>
    

To setup an "edge" server

  1. Install Wowza Media Server 2 Preview 7 (or greater).
  2. Copy the file lib/wms-plugin-loadbalancer.jar from this zip archive to the [install-dir]/lib/ folder of Wowza Media Server 2.
  3. Edit [install-dir]/conf/Server.xml and make the following changes:
    Add the following ServerListener entry to the <ServerListeners> list:
    
    <ServerListener>
    	<BaseClass>com.wowza.wms.plugin.loadbalancer.ServerListenerLoadBalancerSender</BaseClass>
    </ServerListener>
    

    Add the following properties to the <Properties> section at the bottom of Server.xml:
    
    <Property>
    	<Name>loadBalancerSenderTargetPath</Name>
    	<Value>${com.wowza.wms.AppHome}/conf/loadbalancertargets.txt</Value>
    </Property>
    <Property>
    	<Name>loadBalancerSenderRedirectAddress</Name>
    	<Value>[redirect-address]</Value>
    </Property>
    <Property>
    	<Name>loadBalancerSenderMonitorClass</Name>
    	<Value>com.wowza.wms.plugin.loadbalancer.LoadBalancerMonitorDefault</Value>
    </Property>
    <Property>
    	<Name>loadBalancerSenderMessageInterval</Name>
    	<Value>2500</Value>
    	<Type>Integer</Type>
    </Property>
    

    Where [redirect-address] is the external ip address or domain name of this machine. This address will be used when redirecting to this edge server. When using this system on EC2 you can set the [redirect-address] to ${com.wowza.amazonaws.ec2.AWSEC2_METADATA_PUBLIC_IPV4} and upon server startup it will use the public ip address of the server for this value.
  4. Create the file [install-dir]/conf/loadbalancertargets.txt using a text editor and enter the following two lines (the first line is a comment):
    
    # [load-balancer-ip-address],[load-balancer-port],[encryption-key]
    [load-balancer-ip-address],1934,023D4FB4IS83
    

    Where [load-balancer-ip-address] is the ip address or domain name of the load balancer.

This configurations uses UDP port 1934 for communication between the edge servers and the load balancer. Be sure this port is open on your firewall. All communication between the edge server and the load balancer is encrypted and signed. The encryption key is set on the load balancer server using the loadBalancerListenerKey property and in the loadbalancertargets.txt file on the edge servers. These keys must match. An edge server can communicate with multiple load balancers by adding additional lines to the loadbalancertargets.txt file.

You can now startup the load balancer and multiple edge servers. If functioning properly, the edge servers will update the load balancer every 2.5 seconds with status and load information. You can get information from the load balancer in regards to which edge servers are currently registered and their status by opening a web browser and entering the following url:


http://[load-balancer-ip-address]:1935/loadbalancer?serverInfoXML

Where [load-balancer-ip-address] is the ip address or domain name of the load balancer. It will return an XML document contains detailed information on each of the edge servers. Once you have your load balancing server up and running and in a production environment, you may wish to turn off this query interface. You can do this by setting the HTTPProvider/Properties/Property enableServerInfoXML in [install-dir]/conf/VHost.xml to false.

Get least loaded server using http

One of the methods to get the least loaded server from the load balancer is to make a request to the load balancer over http. The url for this request is:


http://[load-balancer-ip-address]:1935/loadbalancer

Where [load-balancer-ip-address] is the ip address or domain name of the load balancer. This request will return the ip address of the least loaded server in the form "redirect=[ip-address]". The Flash example client/httpgetredirect.fla includes the ActionScript 3.0 code needed to make this request and parse the response. You can also test the load balancer by entering this url into a web browser.

Get least loaded server using Netconnection redirect

You can also get the least loaded server by configuring an application on the load balancer that uses the ModuleLoadBalancerRedirector module. To setup an application that uses this module follow these steps:

  1. Create the folder [install-dir]/applications/redirect.
  2. Create the folder [install-dir]/conf/redirect and copy the file [install-dir]/conf/Application.xml into this new folder.
  3. Edit the newly copied Application.xml file and add the following module entry as the last entry in the modules list:
    
    <Module>
    	<Name>ModuleLoadBalancerRedirector</Name>
    	<Description>ModuleLoadBalancerRedirector</Description>
    	<Class>com.wowza.wms.plugin.loadbalancer.ModuleLoadBalancerRedirector</Class>
    </Module>
    

  4. Add the following properties the properties section at the bottom of the Application.xml file:
    
    <Property>
    	<Name>redirectAppName</Name>
    	<Value>[application-name]</Value>
    </Property>
    <!--
    <Property>
    	<Name>redirectPort</Name>
    	<Value>[redirect-port]</Value>
    </Property>
    -->
    <!--
    <Property>
    	<Name>redirectScheme</Name>
    	<Value>rtmp</Value>
    </Property>
    -->
    <Property>
    	<Name>redirectOnConnect</Name>
    	<Value>true</Value>
    	<Type>Boolean</Type>
    </Property>
    

    Where [application-name] is the name of the application you wish to redirect to on the edge server and [redirect-port] is the port to redirect to (such as port 1935 or port 80). The redirectPort and redirectScheme are commented out so that the system will use the same scheme and port used to connect to the load balancer to connect to the edge server. This will work better when using any type of protocol (rtmp to rtmpt) or port rollover scheme.

The Flash example client/redirect.fla includes the ActionScript 3.0 code to handle an RTMP redirect.

NOTE: You can setup multiple load balancer servers for failover or to handle the connection load by starting additional load balancer servers and adding additional target configuration lines to the loadbalancertargets.txt file on the edge servers.

NOTE: This system uses the global unique identifier (GUID) that is stored in the [install-dir]/conf/Server.guid file to uniquely identify a server. If Wowza Media Server 2 is installed on and edge server by copying the installation directory from one to server to another be sure to remove the [install-dir]/conf/Server.guid file from the new install so that the first time is is launched a new identifier will be generated for this server.

NOTE: Both the ServerListenerLoadBalancerListener and ServerListenerLoadBalancerSender classes expose attributes and operations through the JMX/JConsole interface that enable monitoring and administration of the system. The ServerListenerLoadBalancerSender class (edge server) exposes two operations pause and unpause that can be used to temporarily remove an edge server from the load balancer pool. When in the paused state, the load balancer will not send any new connections to the paused edge server.