Accounting

From Gcube Wiki
Revision as of 17:26, 16 November 2015 by Luca.frosini (Talk | contribs) (Accounting Backend Layer)

Jump to: navigation, search

GCube Accounting allows to collect information of the infrastructure usage and expose them for the interested consumer.

Architecture

The following picture shows the gCube Accounting architeture

Accounting-architecture.png

The Accounting Architecture has been logically divided in three different layers.

Moreover we have the storage layer which is not a gCube component in terms of development.

All the developed component must respect this paradigm.


Accounting Enabling Layer

  • accounting-lib
  • accounting-analytics
  • accounting-aggregator

The designed architecture and the implementation has to respect the following rules:

  • Each enabling layer has its own correspondent backend implementation.
  • Each backend implementation must be dynamically discovered at runtime. This allow to decouple the deployment of a different backend from the development of the enabling layer. In other word each component on the enabling layer MUST NOT have any dependency over a certain backed implementation.

The only entitled software which can have a dependency against the backend component are the ones that allow to deploy and distribute a consistent infrastructure:

  • bundles (e.g. smartgear-bundle, portal-bundle)
  • provisioning script


Accounting Storage Layer

This layer is not developed by gCube but the selected technology has to be selected to provide HA (High Availability). Actually CouchDB has been selected as storage for accounting data.

Accounting Backend Layer

  • accounting-lib-persistence-BACKEND (i.e. accounting-lib-persistence-couchdb)
  • accounting-analytics-persistence-BACKEND (i.e. accounting-analytics-persistence-couchdb)
  • accounting-aggregator-persistence-BACKEND (i.e. accounting-aggregator-persistence-couchdb)

Each component in this layer has been explicitly developed over a certain storage technology. Each component MUST NOT rely on IS to discover the information needed to connect to the underling storage. In other words the component MUST NOT have an hard-cabled connection information or a local configuration files. To retrieve the storage connection information the following parameter must be part of the query:


This allow, in the future, to switch to different storage not

Accounting Consumer Layer

In this layer we found not only the accounting consumer which retrieve information related to collected data (e.g. Accounting Manager Portlet) but also all the component which collect data and use accounting-lib to persist in a common pattern.