fabric-am-handlers


Namefabric-am-handlers JSON
Version 1.6.3 PyPI version JSON
download
home_pageNone
SummaryFabric Aggregate Manager Handlers
upload_time2024-02-26 14:42:43
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords fabric control framework aggregate manager handlers
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI](https://img.shields.io/pypi/v/fabric-am-handlers?style=plastic)](https://pypi.org/project/fabric-am-handlers/)

# AMHandlers
## Aggregate Manager
An aggregate manager controls access to the substrate components. It controls some set of infrastructure resources in a particular site consisting of a set of servers, storage units, network elements or other components under common ownership and control. AMs inform brokers about available resources by passing to the resource advertisement information models. AMs may be associated with more than one broker and the partitioning of resources between brokers is the decision left to the AM. Oversubscription is possible, depending on the deployment needs.
FABRIC enables a substrate provider to outsource resource arbitration and calendar scheduling to a broker. By delegating resources to the broker, the AM consents to the broker’s policies, and agrees to try to honor reservations issued by the broker if the user has authorization on the AM. 

Besides, common code each AM type has resource-specific modules that determine its resource allocation behavior (Resource Management Policy) and the specific actions it takes to provision a sliver (Resource Handler). Both plugins are invoked by AM common core code based on the resource type or type of request being considered. 

## Handlers
The AM up calls a handler interface to setup and teardown each sliver. Resource handlers perform any substrate-specific configuration actions needed to implement slivers. The handler interface includes a probe method to poll the current status of a sliver, and modify to adjust attributes of a sliver. 

Handlers are registered and selected by resource type. Each handler invocation executes in an independent thread, so handlers may block for slow configuration actions. Handlers are invoked through a class called HandlerProcessor, which can invoke an interpreter for a handler scripting language. The handlers will be written in the Python scripting language. 

Each handler implements 3 basic operation types for a resource:
- Create - provision a resource
  - Example - create a VM or a bare-metal node, or a network connection
- Delete - un-provision a resource
  - Undo the create above
- Modify - modify the state of a resource
  - Modify a property of the VM, or a network connection (e.g. change bandwidth)
  
Each operation can have subcommands and parameters that determine the details of the actions taken, some of which are discussed below. These parameters help ‘stitch’ multiple slivers together. A canonical example is the passing of network information from the handler provisioning the network to the handler provisioning a compute node so that the compute node ends up with correct network configuration (e.g. attached to a correct VLAN). Specific parameters for operations are a matter of convention between the resource management policy and the plugin. 

Handlers receive the parameters as part of the provisioning workflow (sequence of redeem operations) executed by the Orchestrator on the AMs. They can also pass information back to the Orchestrator about reserved resources as part of the standard exchange of messages between AM and Orchestrator during the provisioning.

## Playbooks
Handlers use Ansible Playbooks for provisioning.  

## Interface and design
![Class Diagram](./images/handlers.png)

## Configuration
AM Handlers require following configuration to be setup:
- [Inventory](./fabric_am/playbooks/inventory) information for the headnode 
- Handler config file (VM Handler example depicted below)
### VM Handler Config File
VM Handler config file can be found `fabric_am/config/vm_handler_config.yml`. 
It describes the Playbook location and names for specific operations. 
```
playbooks:
  location: /etc/fabric/actor/playbooks
  inventory_location: /etc/fabric/actor/playbooks/inventory
  VM: head_vm_provisioning.yml
  GPU: worker_pci_provisioning.yml
  SmartNIC: worker_pci_provisioning.yml
  SharedNIC: worker_pci_provisioning.yml
  FPGA: worker_pci_provisioning.yml
  NVME: worker_pci_provisioning.yml
```

### PCI Devices support
PCI devices are passed to the VMs using PCI pass through. FABRIC also support `SRIOV` functions which are also passed on to the VMs using PCI pass through. In order to handle the hairpin connections on `SRIOV`, `VEPA` mode is enabled on the underlying bridge for the dedicated card used to host the virtual functions.
```
[kissel@uky-w1 ~]$ sudo bridge link set dev ens6f1 hwmode vepa
```

#### What is VEPA?
In the standard mode the software upgrade to the `VEB` in the hypervisor simply forces each VM frame out to the external switch regardless of destination. This causes no change for destination MAC addresses external to the host, but for destinations within the host (another VM in the same VLAN) it forces that traffic to the upstream switch which forwards it back instead of handling it internally, called a hairpin turn.) It's this hairpin turn that causes the requirement for the upstream switch to have updated firmware, typical STP behavior prevents a switch from forwarding a frame back down the port it was received on. The firmware update allows the negotiation between the physical host and the upstream switch of a VEPA port which then allows this hairpin turn.

VEPA simply forces VM traffic to be handled by an external switch. This allows each VM frame flow to be monitored managed and secured with all of the tools available to the physical switch. This does not provide any type of individual tunnel for the VM, or a configurable switchport but does allow for things like flow statistic gathering, ACL enforcement, etc. Basically we're just pushing the MAC forwarding decision to the physical switch and allowing that switch to perform whatever functions it has available on each transaction. The drawback here is that we are now performing one ingress and egress for each frame that was previously handled internally. This means that there are bandwidth and latency considerations to be made. Functions like Single Root I/O Virtualization (SR/IOV) and Direct Path I/O can alleviate some of the latency issues when implementing this. Like any technology there are typically trade offs that must be weighed. In this case the added control and functionality should outweigh the bandwidth and latency additions.

More details about `VEPA` can be found [here](https://www.ieee802.org/1/files/public/docs2009/new-hudson-vepa_seminar-20090514d.pdf)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "fabric-am-handlers",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "Fabric Control Framework,Aggregate Manager Handlers",
    "author": null,
    "author_email": "Komal Thareja <kthare10@renci.org>",
    "download_url": "https://files.pythonhosted.org/packages/17/04/273905a7157ee46f42b0b3965a3abf830faa3332df180f2f6013cbd63b6a/fabric-am-handlers-1.6.3.tar.gz",
    "platform": null,
    "description": "[![PyPI](https://img.shields.io/pypi/v/fabric-am-handlers?style=plastic)](https://pypi.org/project/fabric-am-handlers/)\n\n# AMHandlers\n## Aggregate Manager\nAn aggregate manager controls access to the substrate components. It controls some set of infrastructure resources in a particular site consisting of a set of servers, storage units, network elements or other components under common ownership and control. AMs inform brokers about available resources by passing to the resource advertisement information models. AMs may be associated with more than one broker and the partitioning of resources between brokers is the decision left to the AM. Oversubscription is possible, depending on the deployment needs.\nFABRIC enables a substrate provider to outsource resource arbitration and calendar scheduling to a broker. By delegating resources to the broker, the AM consents to the broker\u2019s policies, and agrees to try to honor reservations issued by the broker if the user has authorization on the AM. \n\nBesides, common code each AM type has resource-specific modules that determine its resource allocation behavior (Resource Management Policy) and the specific actions it takes to provision a sliver (Resource Handler). Both plugins are invoked by AM common core code based on the resource type or type of request being considered. \n\n## Handlers\nThe AM up calls a handler interface to setup and teardown each sliver. Resource handlers perform any substrate-specific configuration actions needed to implement slivers. The handler interface includes a probe method to poll the current status of a sliver, and modify to adjust attributes of a sliver. \n\nHandlers are registered and selected by resource type. Each handler invocation executes in an independent thread, so handlers may block for slow configuration actions. Handlers are invoked through a class called HandlerProcessor, which can invoke an interpreter for a handler scripting language. The handlers will be written in the Python scripting language. \n\nEach handler implements 3 basic operation types for a resource:\n- Create - provision a resource\n  - Example - create a VM or a bare-metal node, or a network connection\n- Delete - un-provision a resource\n  - Undo the create above\n- Modify - modify the state of a resource\n  - Modify a property of the VM, or a network connection (e.g. change bandwidth)\n  \nEach operation can have subcommands and parameters that determine the details of the actions taken, some of which are discussed below. These parameters help \u2018stitch\u2019 multiple slivers together. A canonical example is the passing of network information from the handler provisioning the network to the handler provisioning a compute node so that the compute node ends up with correct network configuration (e.g. attached to a correct VLAN). Specific parameters for operations are a matter of convention between the resource management policy and the plugin. \n\nHandlers receive the parameters as part of the provisioning workflow (sequence of redeem operations) executed by the Orchestrator on the AMs. They can also pass information back to the Orchestrator about reserved resources as part of the standard exchange of messages between AM and Orchestrator during the provisioning.\n\n## Playbooks\nHandlers use Ansible Playbooks for provisioning.  \n\n## Interface and design\n![Class Diagram](./images/handlers.png)\n\n## Configuration\nAM Handlers require following configuration to be setup:\n- [Inventory](./fabric_am/playbooks/inventory) information for the headnode \n- Handler config file (VM Handler example depicted below)\n### VM Handler Config File\nVM Handler config file can be found `fabric_am/config/vm_handler_config.yml`. \nIt describes the Playbook location and names for specific operations. \n```\nplaybooks:\n  location: /etc/fabric/actor/playbooks\n  inventory_location: /etc/fabric/actor/playbooks/inventory\n  VM: head_vm_provisioning.yml\n  GPU: worker_pci_provisioning.yml\n  SmartNIC: worker_pci_provisioning.yml\n  SharedNIC: worker_pci_provisioning.yml\n  FPGA: worker_pci_provisioning.yml\n  NVME: worker_pci_provisioning.yml\n```\n\n### PCI Devices support\nPCI devices are passed to the VMs using PCI pass through. FABRIC also support `SRIOV` functions which are also passed on to the VMs using PCI pass through. In order to handle the hairpin connections on `SRIOV`, `VEPA` mode is enabled on the underlying bridge for the dedicated card used to host the virtual functions.\n```\n[kissel@uky-w1 ~]$ sudo bridge link set dev ens6f1 hwmode vepa\n```\n\n#### What is VEPA?\nIn the standard mode the software upgrade to the `VEB` in the hypervisor simply forces each VM frame out to the external switch regardless of destination. This causes no change for destination MAC addresses external to the host, but for destinations within the host (another VM in the same VLAN) it forces that traffic to the upstream switch which forwards it back instead of handling it internally, called a hairpin turn.) It's this hairpin turn that causes the requirement for the upstream switch to have updated firmware, typical STP behavior prevents a switch from forwarding a frame back down the port it was received on. The firmware update allows the negotiation between the physical host and the upstream switch of a VEPA port which then allows this hairpin turn.\n\nVEPA simply forces VM traffic to be handled by an external switch. This allows each VM frame flow to be monitored managed and secured with all of the tools available to the physical switch. This does not provide any type of individual tunnel for the VM, or a configurable switchport but does allow for things like flow statistic gathering, ACL enforcement, etc. Basically we're just pushing the MAC forwarding decision to the physical switch and allowing that switch to perform whatever functions it has available on each transaction. The drawback here is that we are now performing one ingress and egress for each frame that was previously handled internally. This means that there are bandwidth and latency considerations to be made. Functions like Single Root I/O Virtualization (SR/IOV) and Direct Path I/O can alleviate some of the latency issues when implementing this. Like any technology there are typically trade offs that must be weighed. In this case the added control and functionality should outweigh the bandwidth and latency additions.\n\nMore details about `VEPA` can be found [here](https://www.ieee802.org/1/files/public/docs2009/new-hudson-vepa_seminar-20090514d.pdf)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Fabric Aggregate Manager Handlers",
    "version": "1.6.3",
    "project_urls": {
        "Home": "https://fabric-testbed.net/",
        "Sources": "https://github.com/fabric-testbed/ControlFramework"
    },
    "split_keywords": [
        "fabric control framework",
        "aggregate manager handlers"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "668c4c9ad812f9e06225d026ae9234175a2e509bf42987266d86ef9cb2136db0",
                "md5": "db85fc16df4c31969518e9b2c4ab9278",
                "sha256": "7b6a439341af9e9f4fae6d46016b8c26214020b544f91b0d6518b9e6d6ade0f5"
            },
            "downloads": -1,
            "filename": "fabric_am_handlers-1.6.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "db85fc16df4c31969518e9b2c4ab9278",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 128019,
            "upload_time": "2024-02-26T14:42:41",
            "upload_time_iso_8601": "2024-02-26T14:42:41.048414Z",
            "url": "https://files.pythonhosted.org/packages/66/8c/4c9ad812f9e06225d026ae9234175a2e509bf42987266d86ef9cb2136db0/fabric_am_handlers-1.6.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1704273905a7157ee46f42b0b3965a3abf830faa3332df180f2f6013cbd63b6a",
                "md5": "4b1ea849aaf04e5ae0c4294cf527db2a",
                "sha256": "e90785fa135773f769e9f86805e6d29b9a6d42d75339273a2d1980a8632d261f"
            },
            "downloads": -1,
            "filename": "fabric-am-handlers-1.6.3.tar.gz",
            "has_sig": false,
            "md5_digest": "4b1ea849aaf04e5ae0c4294cf527db2a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 235574,
            "upload_time": "2024-02-26T14:42:43",
            "upload_time_iso_8601": "2024-02-26T14:42:43.146922Z",
            "url": "https://files.pythonhosted.org/packages/17/04/273905a7157ee46f42b0b3965a3abf830faa3332df180f2f6013cbd63b6a/fabric-am-handlers-1.6.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-26 14:42:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fabric-testbed",
    "github_project": "ControlFramework",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "fabric-am-handlers"
}
        
Elapsed time: 0.42603s