You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 36 Next »

Overview

Currently, there is not a good way of surfacing Geronimo's server information so that an administrator can monitor the server's status. The architecture of using MBeans is established, but not fully exploited. This enhancement will take advantage of what Geronimo currently offers and extend it so that a server can tap into a cluster of servers and extract information from specific Geronimo servers or even aggregates of Geronimo servers.

The goal is to have at least one machine be able to reach out to all Geronimo servers in order to fetch data or even alter their state. This will be especially useful in the case of someone having to monitor a large number of Geronimo servers.

How it works (proposed)

As part of the design, there are five major components.

Management Node(s): An instance of Geronimo that has sole purpose of managing and viewing information from Server Nodes, must include admin console.
Management Plugin: Will reside on all Management Nodes and will handle the connection to the Remote Control Plugin to pull relevant information and control the machine.
Connection Information DB: Resides on either a Management Node or a different database server, has Server Name, IP:Port information and remote authentication information for all Server Nodes. Management Nodes use this information to connect to the Server Nodes
Server Node(s): An instance of Geronimo that runs as usual, can be Little G with our MBean and anywhere up from there.
Remote Control Plugin: Will be present on all Server Nodes, handle JSR-77 statistics collection, control the thread which takes snapshots of the server's current state.

The proposed solution would incorporate a scalable design, using the same methods to keep track of statistics and read them locally that it would be pulling them remotely from N machines. This is accomplished by creating a thin layer (Remote Control Plugin) that will work to be a tie-in point for all the statistics, taking a 'snapshot' of the current state of things every X minutes and recording in a database for a predetermined amount of time before there is rollover. With this thin layer serving as a relay point for this data, we can simply connect to it via remote OpenEJB authentication through the Management Plugin, or a different remote machine (i.e. a proposed 'management node') to pull the information, as well as gain control over functions such as simple start/stop/restart, or in the future could be expanded to deploying/uninstalling/redeploying across an entire cluster.

There will not be an active connection from the management node to the server nodes at all times, and will instead be an on-demand connection that will be used only when control or information is requested, resulting in little network overhead.

Management Plugin Architecture

The management plugin resides on the management node, and serves as the user interface for requesting, processing, and then displaying statistical information from the server node(s), as well as providing an interface for a significant degree of control over them, including

  • Server group management
    • Deploy/undeploy across multiple, set attributes across multiple, start/stop/restart multiple
  • Historical statistics view for 1-n servers
  • Ability to custom-define statistics collection per-machine, per-group, across entire cluster
  • Manipulate snapshot interval, retention period
  • Enable/disable archiving, define archiving time/retention

Currently Implemented

  • Simple Tomcat statistics graph generation for localhost only - This is fully dynamic based on what is being collected on the server-side
    • TomcatWebConnector
      • Bytes/sec in
      • Bytes/sec out
      • OpenConnections
      • BusyThreads
      • RequestTimeTotalTime
      • ErrorCount/second
      • RequestTime CurrentTime
      • ActiveRequestCount
    • TomcatWebSSLConnector
      • Bytes/sec in
      • Bytes/sec out
      • OpenConnections
      • BusyThreads
      • RequestTimeTotalTime
      • ErrorCount/second
      • RequestTime CurrentTime
      • ActiveRequestCount
    • TomcatAJPConnector
      • Bytes/sec in
      • Bytes/sec out
      • OpenConnections
      • BusyThreads
      • RequestTimeTotalTime
      • ErrorCount/second
      • RequestTime CurrentTime
      • ActiveRequestCount
  • Time frame able to be specified through arguments passed from the UI (JSP)
  • Large portions of math and generation operations are done through javascript for a light load on the server
  • Provide interface to add/remove/update servers controlled and monitored
  • Upgraded portlet to be compatible with the new Pluggable Administration Console.

Current Dependencies

  • Geronimo 2.1 Trunk
  • Admin Console Plugin
  • Pluto Plugin
  • Dojo Plugin

Goals

  • Implement configuration file on client side for customization of individual statistics and graphs
  • Detect and indicate periods where collection thread was not running and 'dummy data' has been inserted in graph
  • Improve user interface for ease of viewing/use
  • Indicate a 'health' level through the colors of the graph, based on a percentage of the maximum for a specific value
  • Implement ability to view multiple machines (not just localhost) through a config file

Remote Control Plugin Architecture

The RCP, or collecting agent, will reside on the Server Node and will be in charge of preparing information for the Management Node. Since there are many statistics for different MBeans that the admin could track, we will use the MEJB component that is already implemented in Geronimo to contact these MBeans.
The Master Controller is the collecting agent that will do the managerial tasks such as query the mbeans for their statistics and what not. Additionally, the Master Controller will set timers via the EJB TimerService in order to periodically capture "snapshots." This term will refer to the server's statistics for a given time. With the timers set, we can save the history of the server's statistics. Upon request, the Master Controller will gather all of the information (either by calling MEJB or looking into the server's history stored in a database) and respond by shipping the data back to the Management Node.
Note: All stats will be JSR-77 compliant.

Taking snapshots

As of now, the RCP will create EJB Timers, if it does not already exist, to capture the server's essential information. On each callback the snapshot information on the server itself will be stored to the local database residing on the Server Node. In order to preserve the history, there will be a monthly (default, but can be configured) archive of the server's information stored locally.

Using other Databases to store snapshot information on the Server Node

The current architecture of the RCP really comes in a pair of components (one for the providing the thin layer, and the other for providing that thin layer with a couple datasources). By modularizing these different entities, if the admin would swap out the Datasource with his/her own, the admin could save the snapshot information into any database that is supported by Geronimo. Other examples of notable plugins that use this technique of having a Datasource as a plugin are Jetspeed and Roller.

Currently Implemented

  1. Archive snapshots every month
  2. Return arbitrary number of snapshots' information
  3. Ability to start/stop snapshot thread
  4. Ability to specify the duration of time in between snapshots
  5. Ability to fetch JSR-77 stats
  6. Ability to modify mbean attributes
  7. Ability to add additional mbeans to keep track of in the snapshot process
  8. Ability to remove mbeans from the list that the snapshot process refers to to get take its snapshots
  9. JSR-77 stats for Tomcat Connectors and Jetty Containers are surfaced
  10. Turn statistics option on for all StatisticsProvider components.
  11. Package collecting agent as a plugin (CAR) with a dependency on the MEJB module.
  12. Provide support for Jetty Connector stats (in Geronimo's code-base)

Current Goals

  1. Restore statistics option (on or off) when the collecting agent is undeployed.
  2. Provide ability to control the stopping/starting of components within server using StateManageable Objects (SMO).

Current Concerns

  1. The connection between client and server requires for the server to have OpenEJB installed. This will tremendously limit the plugin to work only with Application Servers with OpenEJB. Perhaps JMX remoting is another option or alternative.

Screenshots

  • No labels