summaryrefslogtreecommitdiffstats
path: root/docs/sections/services/dfc/configuration.rst
blob: bb60fa2899bf517703cad50bb1c413c652e1c984 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0

=============================
Configuration and Performance
=============================

Configuration
^^^^^^^^^^^^^
By default, DFC handles the "PM_MEAS_FILES" change identifier and publishes these files on the "bulk_pm_feed" feed.
But it can also be configured to handle other change identifiers and publish them to other feeds, see picture below.

.. image:: ../../images/DFC_config.png

The configuration of DFC is controlled via a blueprint.

Blueprint Configuration Explained
"""""""""""""""""""""""""""""""""

For the communication with the Message Router, the user must provide the **host name**, **port**, and **protocol** of the DMaaP Message router.

.. code-block:: yaml
  :emphasize-lines: 2,6,10

    inputs:
      dmaap_mr_host:
        type: string
        description: dmaap messagerouter host
        default: message-router.onap.svc.cluster.local
      dmaap_mr_port:
        type: integer
        description: dmaap messagerouter port
        default: 3904
      dmaap_mr_protocol:
        type: string
        description: dmaap messagerouter protocol
        default: "http"

The user can also specify which version of DFC to use.

.. code-block:: yaml
  :emphasize-lines: 2

    inputs:
      tag_version:
        type: string
        description: DFC image tag/version
        default: "nexus3.onap.org:10001/onap/org.onap.dcaegen2.collectors.datafile.datafile-app-server:1.2.0"

The user can also enable secure communication with the DMaaP Message Router.

.. code-block:: yaml
  :emphasize-lines: 2

    inputs:
      secureEnableCert:
        type: boolean
        description: enable certificate based connection with DMaap
        default: false

DFC can handle multiple change identifiers. This will require to create manually a new block for each change identifier.

.. code-block:: yaml
  :emphasize-lines: 2
  
    streams_publishes:
      dfcFeed00ChangeIdentifier:
        dmaap_info: <<bulk_pm_feed>>
        type: data_router

For each feed related to a change identifier the user must provide the **feed name**, and **feed description**.

.. code-block:: yaml
  :emphasize-lines: 2,6

    inputs:
      dfcFeed00Name:
        type: string
        description: The name of the feed the files will be published to. Should be used by the subscriber.
        default: "bulk_pm_feed"
      dfcFeed00Description:
        type: string
        description: A description of the feed the files will be published to.
        default: "Feed for Bulk PM files"

**Note!** The feed name provided should be used by the subscriber/s to set up the subscription to the feed.

To dynamically create the feeds, DFC uses the DCAE DMaaP plugin. This means that for each feed the user must also add an
item under the "**node_templates**" section of the blueprint. The feed is identified within the blueprint with a feed identifier, "**dfcFeed00**" in the example.

.. code-block:: yaml
  :emphasize-lines: 2

    node_templates:
      dfcFeed00:
        type: ccsdk.nodes.Feed
        properties:
          feed_name: { get_input: dfcFeed00Name }
          feed_description: { get_input: dfcFeed00Description }

To configure DFC micro service itself, the user must also add the change identifier and the feed identifier to the "**application_config**" section
under the tag "**dmaap.dmaapProducerConfiguration**" in the blueprint. **Note!** The identifier should be surrounded by **<<>>** for the feed's configuration to be bound to the DFC configuration in CBS.

.. code-block:: yaml
  :emphasize-lines: 4

          application_config:
            dmaap.dmaapProducerConfiguration:
              - changeIdentifier: {get_input: dfcFeed00ChangeIdentifier}
                feedInfo: <<dfcFeed00>>

And, lastly, to set up the publication to the feed, the feed identifier must be added to the "**streams_publishes**" section
of the blueprint.

.. code-block:: yaml
  :emphasize-lines: 2

          streams_publishes:
            - name: dfcFeed00
              type: data_router
              location: "loc00"

Sample blueprint configuration
""""""""""""""""""""""""""""""

The format of the blueprint configuration that drives all behavior of DFC is probably best described using an example.
The blueprint below configures DFC to handle the two feeds shown in the picture above.

.. code-block:: yaml

    inputs:
      dmaap_mr_host:
        type: string
        description: dmaap messagerouter host
        default: message-router.onap.svc.cluster.local
      dmaap_mr_port:
        type: integer
        description: dmaap messagerouter port
        default: 3904
      dmaap_mr_protocol:
        type: string
        description: dmaap messagerouter protocol
        default: "http"
      tag_version:
        type: string
        description: DFC image tag/version
        default: "nexus3.onap.org:10001/onap/org.onap.dcaegen2.collectors.datafile.datafile-app-server:1.2.0"
      replicas:
        type: integer
        description: number of instances
        default: 1
      secureEnableCert:
        type: boolean
        description: enable certificate based connection with DMaap
        default: false
      dfcFeed00Name:
        type: string
        description: The name of the feed the files will be published to. Should be used by the subscriber.
        default: "bulk_pm_feed"
      dfcFeed00Description:
        type: string
        description: A description of the feed the files will be published to.
        default: "Feed for Bulk PM files"
      dfcFeed01Name:
        type: string
        description: The name of the feed the files will be published to. Should be used by the subscriber.
        default: "log_feed"
      dfcFeed01Description:
        type: string
        description: A description of the feed the files will be published to.
        default: "Feed for log files"

    node_templates:
      dfcFeed00:
        type: ccsdk.nodes.Feed
        properties:
          feed_name: { get_input: dfcFeed00Name }
          feed_description: { get_input: dfcFeed00Description }
      dfcFeed01:
        type: ccsdk.nodes.Feed
        properties:
          feed_name: { get_input: dfcFeed01Name }
          feed_description: { get_input: dfcFeed01Description }

      datafile-collector:
        type: dcae.nodes.ContainerizedServiceComponentUsingDmaap

        relationships:
          - type: ccsdk.relationships.publish_files
            target: dfcFeed00
          - type: ccsdk.relationships.publish_files
            target: dfcFeed01

        interfaces:
          cloudify.interfaces.lifecycle:
            start:
              inputs:
                ports:
                  - concat: ["8100:0"]
                  - concat: ["8433:0"]

        properties:
          service_component_type: 'dcae-datafile'
          application_config:
            dmaap.security.enableDmaapCertAuth: { get_input: secureEnableCert }
            streams_publishes:
              dfcFeed00ChangeIdentifier:
                dmaap_info: <<dfcFeed00>>
                type: data_router
              dfcFeed01ChangeIdentifier:
                dmaap_info: <<dfcFeed01>>
                type: data_router
            streams_subscribes:
              dmaap_subscriber:
                type:
                  "message_router"
                dmaap_info:
                  topic_url:
                    { concat: [{ get_input: dmaap_mr_protocol },"://",{ get_input: dmaap_mr_host },
                               ":",{ get_input: dmaap_mr_port },"/events/unauthenticated.VES_NOTIFICATION_OUTPUT/OpenDcae-c12/C12"]}
          streams_publishes:
            - name: dfcFeed00
              type: data_router
              location: "loc00"
            - name: dfcFeed01
              type: data_router
              location: "loc00"

Performance
^^^^^^^^^^^

To see the performance of DFC, see "`Datafile Collector (DFC) performance baseline results`_".

.. _Datafile Collector (DFC) performance baseline results: https://wiki.onap.org/display/DW/Datafile+Collector+%28DFC%29+performance+baseline+results