-
1. Re: JBossWeb-based load metrics for mod_cluster
brian.stansberry Aug 18, 2008 9:53 PM (in response to pferraro)The LoadMetric.getBenchmark() method concerns me; seems like it will be hard to configure meaningfully. If you don't get it right, you can't properly apply the weights.
Maybe my goal of having each node return a single load value when asked by the master was a mistake. If each node returned a Map<String, Double> where the values are the individually time-decayed metrics, the master could normalize each value relative to the same value from the other nodes, and then apply the weighting to the normalized values.
On the DynamicLoadBalanceFactorProvider, can the periodic event coming from the JBoss Web listener drive the calculation? -
2. Re: JBossWeb-based load metrics for mod_cluster
brian.stansberry Aug 21, 2008 11:45 AM (in response to pferraro)Just an FYI on clustered webapps:
JBossCacheManagerMBean exposes two different attributes re: the session count:/** * Gets the number of sessions active on this node. This includes * replicated sessions that have not been accessed on this node. */ long getActiveSessionCount(); /** * Gets the count of sessions known to this manager, excluding those * in the distributed stored that have not been accessed on this node. */ long getLocalActiveSessionCount();
I'll have to check if it also exposes via some JMX magic the standard "ActiveSessions" metric you are looking for. If not, I'll make sure it does. It will return the same value as getActiveSessionCount().
Re: using these in a load balance metric, if the intent of a session count metric is to function as a semi-proxy for memory usage, getting the ActiveSessionCount value does that best, as it includes sessions in the distributed cache, which are using ~ the same memory as a locally active session.
If the intent of the metric is to somehow use a session count as a representation of some other kind of system load, then LocalActiveSessionCount is probably better.
Perhaps a flag on the metric bean could control this? With logic built in to handle the non-clustered webapps that don't support LocalActiveSessionCount? -
3. Re: JBossWeb-based load metrics for mod_cluster
jfclere Aug 21, 2008 12:16 PM (in response to pferraro)Do you want to send a DISABLE-APP command to mod_cluster on the corresponding node?