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

Compare with Current View Page History

« Previous Version 8 Next »

Redfish composability provides a data model to describe composable hardware, as well as an interface for clients to manage their composition. Composition Service is the top-level resource for all  composability related resources. Within the Composition Service we can find the inventory of Resource Blocks, Resource Zones and Collection Capabilities. Resource Blocks contains inventory of all components that can be used for composability. Resource Zones are descriptors containing the binding restrictions of the different components. Collection Capabilities are annotations that describe how to form composition requests.

ODIM composition service implements the Redfish composition model. The composition service provides APIs and framework to build the composable infrastructure using ODIM resources. Initially, Composition service offers the features like resource blocks and resource zones. Any supported actions on these resources will be added. Composition service requires  additional API support from other redfish resources to create a composition, update resources, and delete the composition.


Create a Composed Resource: Redfish Composability model has defined Specific Composition, Constrained Composition. ODIM composition service includes all composition models, in phase-by-phase releases.

Update a composed Resource: Composition service enables updating an existing composition like adding a new resource or removing a attached resource etc.

Delete a composed Resource: Composition service retire or decompose an already composed resource.


Reference: Redfish Composition Service Mockup


API

URI

HTTP Methods

Remarks

Composition Service

/redfish/v1/CompositionService

GET


Resource Blocks

/redfish/v1/CompositionService/ResourceBlocks

GET, POST

POST to add a resource block manually.  Not in Redfish specification.

Resource Zones

/redfish/v1/CompositionService/ResourceZones

GET, POST, PATCH, DELETE


Dependencies

Composition Service depends on additional APIs to be supported in other ODIM modules. Listed down the APIs required for Computer system Composition. Later this list will be extended for other composable resources.

APIURIHTTP MethodsRemarksJeff H Comments
Computer system Composition/redfish/v1/SystemsPOSTODIM Systems collection need to have this actionPOST is the wrong answer. Ask DMTF to make it possible to insert and delete from the collection
Add resource block/redfish/v1/Systems/{{id}}/Actions/ComputerSystem.AddResourceBlockPOSTSystem instance
Remove resource block

/redfish/v1/Systems/{{id}}/Actions/ComputerSystem.RemoveResourceBlock

POSTSystems instance
Delete a composed resource/redfish/v1/Systems/{{id}}DELETEResources will be deleted and available for next composition

ODIM kind of aggregation services includes servers and hardware resources identified using different technologies and operates on a heterogeneous environment. Building the composition resources in a standard way is not sufficient.  We are listing some of the real time use cases below, on the possible options to build the composition resources.

There are different ways we can build the composition resources, in a heterogeneous environment.


Use Case 1: API to add Composition resources.

Redfish has support to add resource blocks. Redfish specification does not support to add a resource block directly. ODIM Composition Service can exposes APIs to add resource blocks. Admin can add a resource block using this API.  

We recommend that this shall be proposed as a feature enhancement to DMTF.

After the discussion in TSC review meeting, it is decided to add a POST action in resource blocks.  Later, this enhancement will be proposed to DMTF  Redfish Composability TF.  


Use Case 2: Build the composition resources automatically.  

Composition service will have a back end service running that triggers the building of composition service resources like resource blocks and resource zones.  For this Composition service need to be notified when there is a new server added to ODIM.    

When a new server is added to ODIM, the composition service gets notified. Then composition service collect the new servers resource information and build the composition resources. There is a limitation here that the composition service does not recognize the underlying connectivity across the disaggregated resources. This could be helpful build the resource blocks and resource zones for the integrated resources like compute, processor, memory etc.


After discussion in TSC proposal review meeting, following suggestions provided. Composition service can build the resource blocks and allow administrators to create the resource zones and add the resource blocks. 


Use Case 3: Utilizes composition resources from underlying services.

When a new server added to the ODIM, ODIM knows the underlying service (like  redfish service) that provides the information. If the underlying service is redfish and exposing the composition  service resources that can be consumed in the ODIM composition service. 

We must check the possibilities of doing this, as composition service may not have visibility to underlying services that provides the resource data.

 

Development Plan

Composition Service will be implemented in python 3.x. It has following components.

  1.  Composition service - A back end service that builds and monitor the composition resources. Running as a service 
  2.  API server  - API server exposes the Composition service APIs. Running as a service
  3. DBA library  - Includes DB abstraction. Will be included in  both applications.
  4.  Utility library - Provides helper functions needed. Included in both applications
  5. Service scripts - To run the applications as a service
  6. Build script - To build the environment and install services 

Initial implementation of ODIM Composition service will have support for resource blocks, resource zones and computer system composition. The initial version shall add support to specific composition.

The constrained composition, and other resource composition will be added later versions.  Also, future versions of composition service adopts new features added by DMTF Redfish Composability task force.




  • No labels