libra/doc/worker/code.rst
2012-10-24 15:24:04 -04:00

5.1 KiB

Code Walkthrough

Here we'll highlight some of the more important code aspects.

Gearman Task

This is the function executed by the Gearman worker for each message retrieved from a Gearman job server.

Server Class

This class encapsulates the server activity once it starts in either daemon or non-daemon mode and all configuration options are read.

The one and only method in the class and represents the primary function of the program. The Gearman worker is started in this method, which then executes the :py~lbaas_task function for each message. It does not exit unless the worker itself exits.

If all Gearman job servers become unavailable, the worker would normally exit. This method identifies that situation and periodically attempts to restart the worker in an endless loop.

LBaaSController Class

This class is used by the :py~libra.worker.worker.lbaas_task function drive the Gearman message handling.

This is the only method that should be called directly. It parses the JSON message given during object instantiation and determines the action to perform based on the contents. It returns another JSON message that should then be returned to the Gearman client.

LoadBalancerDriver Class

This defines the API for interacting with various load balancing appliances. Drivers for these appliances should inherit from this class and implement the relevant API methods that it can support. This is an abstract class and is not meant to be instantiated directly.

Generally, an appliance driver should queue up any configuration changes made via these API calls until the :pycreate method is called. The :pysuspend, :pyenable, and :pydelete methods should take immediate action.

Known Load Balancer Drivers Dictionary

This is the dictionary that maps values for the --driver option to a class implementing the driver :py~LoadBalancerDriver API for that appliance. After implementing a new driver class, you simply add a new entry to this dictionary to plug in the new driver.

Relationship Diagram

Below is a conceptual diagram that shows the basic relationships between the items described above:

+-------------+     JSON request      +-------------------+
|   Gearman   | --------------------> |                   |
|   worker    |                       |  LBaaSController  |
|   task      | <-------------------- |                   |
+-------------+     JSON response     +-------------------+
                                         |            ^
                                         |            |
                               API call  |            | (Optional Exception)
                                         |            |
                                         V            |
                                      +----------------------+
                                      |                      |
                                      |  LoadBalancerDriver  |
                                      |                      |
                                      +----------------------+

The steps shown above are:

  • The Gearman worker task, :py~worker.lbaas_task, is run when the worker receives a message from the Gearman job server (not represented above).
  • This task then uses the :py~controller.LBaaSController to process the message that it received.
  • Based on the contents of the message, the controller then makes the relevant driver API calls using the :py~drivers.LoadBalancerDriver driver that was selected via the --driver option.
  • The driver executes the API call. If the driver encounters an error during execution, an exception is thrown that should be handled by the :py~controller.LBaaSController object. Otherwise, nothing is returned, indicating success.
  • The :py~controller.LBaaSController object then creates a response message and returns this message back to the Gearman worker task.
  • The Gearman worker task sends the response message back through the Gearman job server to the originating client (not represented above).