2 Replies Latest reply on Mar 24, 2010 9:24 PM by pferraro

    How to write your own load balancing rule in mod_cluster?

    gnome

      Hi

       

      Could any one please suggest some pointers as to how to write your own load balancing rules for mod_cluster. Currently rules like round robin etc are supported. How can one write his/her own rule?

       

      Thanks

        • 1. Re: How to write your own load balancing rule in mod_cluster?
          brian.stansberry

          I don't think of it as being round-robin. The ModClusterService on each appserver side provides the httpd side a metric indicating how much load it's under. When the httpd side detects a request for a new session it picks the server to route to based on the relative load. There may be some round-robinish bit that goes in case of a tie, but that's not the critical factor. So I'm not sure what you're looking to change.

           

          There are a lot of options for configuring how the load metric is calculated; see the docs.

           

          Any change to how the httpd side picks a server based on the relative load metrics will involve changes to the C code for the Apache httpd modules. If you still think there's a use case for customizing that, suggest you post on the mod_cluster forum at http://community.jboss.org/en/mod_cluster

          where Jean-Frederic Clere, the man most familiar with the C side of things, is more likely to see your question.

          • 2. Re: How to write your own load balancing rule in mod_cluster?
            pferraro

            If your question is how to create a custom LoadMetric, simply implement org.jboss.modcluster.load.metric.LoadMetric and contribute it to the set of metrics with which your org.jboss.modcluster.load.impl.DynamicLoadBalanceFactorProvider is constructed.