summaryrefslogtreecommitdiffstats
path: root/docs/sections/components/intro.rst
blob: db7175c15047d5b56c87585cd7e71229b9926b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0

.. _intro:


Overview
========

DCAE components are services that provide a specific functionality and
are generally written to be composable with other DCAE components,
although a component can run independently as well. The DCAE platform is
responsible for running and managing DCAE service components reliably.

Currently, the DCAE platform supports two types of components, CDAP
applications and Docker containers. For each, there are requirements
that must be met for the component to integrate into the DCAE platform
(see :doc:`CDAP <component-type-cdap>` and
:doc:`Docker <component-type-docker>`).

A Component requires one or more data formats.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

A component is a software application that performs a function. It
doesn’t run independently; it depends upon other components. A
component’s function could require connecting to other components to
fulfill that function. A component could also be providing its function
as a service through an interface for other components to use.

A component cannot connect to or be connected with any other component.
The upstream and downstream components must *speak* the same vocabulary
or *data format*. The output of an one component must match another
component’s input. This is necessary for components to function
correctly and without errors.

The platform requires data formats to ensure that a component will be
run with other *compatible* components.

Data formats can and should be shared by multiple components.

Each Component requires a component specification.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The component specification is a JSON artifact that fully specifies the
component, it’s interfaces, and configuration. It’s standardized for
CDAP and Docker applications and is validated using a :doc:`JSON schema <./component-json-schema>`.

The component specification fully specifies all the configuration
parameters of the component. This is used by the designer and by policy
(future) to configure the runtime behavior of the component.

The component specification is used to *generate* application
configuration in a standardized JSON that the platform will make
available to the component. This application configuration JSON will
include:

-  Parameters that have been assigned values from the component
   specification, policy, and/or the designer
-  Connection details of downstream components

The component specification is transformed by DCAE tooling (explained
later) into TOSCA models (one for the component, and in the future, one
for Policy). The TOSCA models then get transformed into Cloudify
blueprints.

The component specification is used by:

-  dcae_cli tool - to validate it
-  Design Tools - TOSCA models are generated from the component
   specification so that the component can be used by designers to
   compose new DCAE services in SDC.
-  Policy (future) - TOSCA models are generated from the component
   specification so that operations can create policy models used to
   dynamically configure the component.
-  the runtime platform - The component’s application configuration
   (JSON) is generated from the component specification and will be
   provided to the component at runtime.

Onboarding
----------

Onboarding is a process that ensures that the component is compliant
with the DCAE platform rules. A command-line tool called
:doc:`dcae-cli <./dcae-cli/quickstart>` is provided to
help with onboarding. The high level summary of the onboarding process
is:

1. Defining the :doc:`data formats <data-formats>` if they don’t already
   exist.
2. Defining the :doc:`component specification <./component-specification/common-specification>`.
   See :doc:`docker <./component-specification/docker-specification>` and
   :doc:`CDAP <./component-specification/cdap-specification>`.
3. Use the dcae_cli tool to :any:`add the data formats <dcae_cli_add_a_data_format>` and
   :any:`add the component <dcae_cli_add_a_component>` to the
   onboarding catalog. This process will validate them as well.
4. Use the dcae_cli tool to
   :any:`deploy <dcae_cli_run_a_component>` the
   component. (The component is deployed to the environment indicated in
   the :any:`profile <dcae_cli_activate_profile>`
   section).
5. Test the component. Also do pairwise-test the component with any
   other components it connects with.
6. Publish the component and data formats into the Service Design and
   Creation (SDC) ‘catalog’. (Currently, this is a manual step, not done
   via the dcae_cli tool).