Changes between Version 1 and Version 2 of FeddPluginArchitecture


Ignore:
Timestamp:
Nov 10, 2009 6:33:33 PM (14 years ago)
Author:
faber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FeddPluginArchitecture

    v1 v2  
    44
    55Key to these interfaces is a topology description language, topdl, that defines experiment topologies and sub-topologies at a level of abstraction that can be specialized when necessary.  We discuss topdl below after defining the basic interfaces and terminology.
     6
     7== Operations ==
     8
     9The following operations are valid on an access controller:
     10
     11 '''Grant Access'''::
     12  Configure the local testbed to allow the researcher to allocate resources.  The request includes the researcher's credentials and optionally an estimate of the resources required and allocation timeframe.  This allocation is bound to a [FeddAbout#GlobalIdentifiers:Fedids fedid].  This operation allows a testbed to configure itself - for example an emulab-style testbed may add projects or user accounts at this point.
     13 '''Start Segment'''::
     14  Make of resources to the experiment and bind it to the allocation created above.  At this point the testbed resource allocation system is run on the specific resource topology requested.  This is an initial allocation, so any testbed-specific operations used in creating a new allocation are carried out.
     15 '''Terminate Segment'''::
     16  Remove the resources created above.  Notice that the fedid-bound allocation still exists, so that new resources can be allocated to it.
     17 '''Remove Access'''::
     18  Release the fedid-bound allocation.  At this point a testbed may reclaim any local resources bound to that allocation outside the experiment resources.
     19
     20These are encoded as the '''!RequestAccess''', '''!ReleaseAccess''', '''!StartSegment''', and '''!TerminateSegment''' operations in the [source:wsdl/trunk/fedd.wsdl web service interface.]
     21
     22In the future we will be expanding these operations to include support for more informantion and manipulation of federated experiments, inclucing manipulating nodes in an experiment and changing experiment topology.
     23
     24== Topology Description Language ==
     25
     26The two keys to an effective interface for local resource allocation guided by the global event controller are a representation of credentials and authorization and a representation of the resources being requested.  This section deals with the resource description for sub-experiments at differing levels of abstraction depending on the testbed.
     27
     28We introduce topdl (topology description language) as the language for topology description.  An [source:wsdl/trunk/topdl.xsd XSD representation] and [source:fedd/trunk/federation/topdl.py sample manipulation library] are available from the source tree.  The goal of the language is to represent experimental topologies at sufficient detail so that local testbeds can allocate resource configured appropriately for the experiment.
     29
     30There are two primitives in topdl:
     31
     32 '''Elements'''::
     33  Active resources in the experiment: computers, routers, devices that are programmable.  These are subclassed for common kinds of elements
     34 '''Substrate'''::
     35  A communications medium to which elements have access.  This may be a wired LAN, a sahred communication frequency, or may represent the fact that the elements share a line of sight.
     36
     37The point of contact between these primitives is:
     38
     39 '''Interface'''::
     40  An indication that a particular element can communicate on one or more substrates.  An interface appears on exactly one element.
     41
     42These are deliberately unconstrained, but are an attempt to capture the idea that most network experiments are about things that can talk to other things in constrained ways.
     43
     44Each subclass and substrate has parameters which set the specifics of that object.  For example, the computer subclass of elements can be parameterized by the operating system, the CPU information, the required software, and the storage (memory, disk, etc) that are required.  Additional attribute/value pairs (strings) can be attached to the computer (and to some of the parameters) to specialize it for specific access controllers or other applications.
     45
     46Substrates and interfaces can also have attributes attached, but are characterized by the communication capacity and latency of the substrate, though neither needs to be specified if unimportant.
     47
     48By specializing these primitives, topdl can represent many network topologies.  A traditional enterprise configuration can be represented as computer elements for each desktop connected by substrates that represent the LANs that are also interfaces to routers and firewalls that model the system.  A system of nodes sharing the same wireless infrastructure share interfaces on the same wireless substrate.  Machines that can talk on more than one substrate using the same interface - for example a multi-frequency radio - are specified with one interface on several substrates, one for each frequency of interest.
     49
     50While limits will certainly be found, this simple elements in substrates model covers a broad range of useful topologies.
     51
     52By binding specific attributes to the elements of an experiment, the description can be customized to constrain the details of interest to a researcher and that are useful to a particular testbed technology.  Researchers studying worm propagation may be more interested in the interconnection of computers and the installed software  than in the particular CPU models on the computers.  Other researchers may be very concerned with the particular hardware or transmission technology of, say, the wireless interfaces.  Attaching attributes provides a mechanism to communicate these preferences.
     53
     54Of course, not every federant/access controller will understand each attribute, which is why some attributes and requirements are codified now and all access controllers are expected to respect them.  The semantics of unformalized attributes can represent agreements between researchers and resource providers, and widely supported attributes will become formalized parameters.  If the changes in element behavior are sufficient, a subclass may be created.
     55
     56=== Current Element Classes and Attributes ===
     57
     58These are the current supported standard classes and some attributes that are in use by the current fedd code.
     59
     60==== Substrate ====
     61
     62Substrates are parameterized by:
     63
     64    '''Name'''::
     65      A unique name to tie interfaces to this substrate.
     66    '''Capacity'''::
     67     The rate of information exchange on this substrate.  May be given as an average or peak rate.
     68    '''Latency'''::
     69     The time required for information to cross this substrate.  May be an average or a peak.
     70
     71An interface may also have those parameters, in which case the element to which the interface is attached is limited by the lower of the interface or substrate values.  Corner cases, such as a maximum less than an average are dealt with as errors by the system taking the topology as input.
     72
     73==== Elements ====
     74
     75There are several subclasses in use.  The generic element class has no specific parameters, only unstandardized attributes.
     76
     77Current subclasses include:
     78
     79===== Computer =====
     80
     81In addition to unstandardized attributes, computers are parameterized by:
     82
     83 '''Name'''::
     84  An identifier for the computer, primarilty useful to researchers directly.
     85 '''CPU'''::
     86   They type and number of CPUs required
     87 '''Operating System'''::
     88  Including version, distribution, and patchlevel
     89 '''Storage'''::
     90  Amount of persistent and transient storage - usually disk and memory, but new technologues are possible.
     91 '''Software'''::
     92  The software to install and the location in the file system.  A URI may be given for the software distribution.
     93 '''Interfaces'''::
     94  Parameterized as above
     95
     96===== Segment =====
     97
     98A sgement is an allocation (or future allocation) of resources to a federated experiment.  They are useful placeholders in establishing connectivity across a federant that acts as a transit network provider between federants.  The optional parameters include:
     99
     100 '''Name'''::
     101  Name of the segment.  Primarily useful to reserachers or debuggers.
     102 '''Type'''::
     103  Access controller type, e.g., emulab.
     104 '''URI'''::
     105  The URI at which the access controller can be found.
     106 '''Interfaces'''::
     107  The parameterized as above
     108