dcae r6 doc updates cont.
[dcaegen2.git] / docs / sections / services / ves-hv / run-time-configuration.rst
index 76d622c..bac68ec 100644 (file)
@@ -6,54 +6,43 @@
 Run-Time configuration
 ======================
 
-(see :ref:`deployment`)
+HV-VES dynamic configuration is primarily meant to provide DMaaP Connection Objects (see :ref:`dmaap-connection-objects`).
+These objects contain information necessary to route received VES Events to correct Kafka topic. This metadata will be later referred to as Routing definition.
 
-HV-VES can fetch configuration directly from Consul service in the following JSON format:
+Collector uses DCAE-SDK internally, to fetch configuration from Config Binding Service.
 
-.. code-block:: json
+HV-VES waits 10 seconds (default, configurable during deployment with **firstRequestDelay** option, see :ref:`configuration_file`) before the first attempt to retrieve configuration from CBS. This is to prevent possible synchronization issues. During that time HV-VES declines any connection attempts from xNF (VNF/PNF).
 
-    {
-        "dmaap.kafkaBootstrapServers": "message-router-kafka:9093",
-        "collector.routing": [
-                {
-                    "fromDomain": "perf3gpp",
-                    "toTopic": "HV_VES_PERF3GPP"
-                },
-                {
-                    "fromDomain": "heartbeat",
-                    "toTopic": "HV_VES_HEARTBEAT"
-                },
-                ...
-        ]
-    }
+After first request, HV-VES asks for configuration in fixed intervals, configurable from file configuration (**requestInterval**). By default interval is set to 5 seconds.
 
-HV-VES does not verify the correctness of configuration data and uses them as is, in particular:
+In case of failing to retrieve configuration, collector retries the action. After five unsuccessful attempts, container becomes unhealthy and cannot recover. HV-VES in this state is unusable and the container should be restarted.
 
-- **KafkaBootstrapServers** is used as host name and port for publishing events to Kafka service.
-- Every **routing** array object specifies one event publishing route.
 
-  - **fromDomain** node should be a case-sensitive string of single domain taken from VES Common Event Header specification.
-  - **toTopic** should be a case-sensitive string of Kafka topic.
-  - When HV-VES receives VES Event, it checks the domain contained in it. If the route from that domain to any topic exists in configuration, then HV-VES publishes that event to topic in that route.
-  - If there are two routes from the same domain to different topics, then it is undefined which route will be used.
+Configuration format
+--------------------
 
-The configuration is created from HV-VES Cloudify blueprint by specifying **application_config** node during ONAP OOM/Kubernetes deployment. Example of the node specification:
+Following JSON format presents dynamic configuration options recognized by HV-VES Collector.
+
+.. literalinclude:: resources/dynamic-configuration.json
+    :language: json
+
+Fields have the same meaning as in the configuration file with only difference being Routing definition.
 
-.. code-block:: YAML
+.. note:: There is no verification of the data correctness (e.g. if specified security files are present on machine) and thus invalid data can result in service malfunctioning or even container shutdown.
 
-    node_templates:
-      hv-ves:
-        properties:
-          application_config:
-            dmaap.kafkaBootstrapServers: message-router-kafka:9092
-            collector.routing:
-              fromDomain: perf3gpp
-              toTopic: HV_VES_PERF3GPP
+Routing
+-------
 
-Endpoint on which HV-VES seeks configuration can be set during deployment as described in :ref:`deployment`.
+For every JSON key-object pair defined in **"stream_publishes"**, the key is used as domain and related object is used to setup Kafka's bootstrap servers and Kafka topic **for this domain**.
 
-HV-VES waits 10 seconds (default, configurable during deplyoment with **first-request-delay** option, see :ref:`deployment`) before the first attempt to retrieve configuration from Consul. This is to prevent possible synchronization issues. During that time HV-VES declines any connection attempts from xNF (VNF/PNF).
+When receiving a VES Event from client, collector checks if domain from the event corresponds to any domain from Routing and publishes this event into related topic. If there is no match, the event is dropped. If there are two routes from the same domain to different topics, then it is undefined which route is used.
 
-After first request, HV-VES asks for configuration in fixed intervals, configurable from command line (**request-interval**). By defualt interval is set to 5 seconds.
+For more information, see :ref:`supported_domains`.
+
+Providing configuration during OOM deployment
+---------------------------------------------
+
+The configuration is created from HV-VES Cloudify blueprint by specifying **application_config** node during ONAP OOM/Kubernetes deployment. Example of the node specification:
 
-In case of failing to retrieve configuration, collector temporarily extends this interval and retries. After five unsuccessfull attempts, container becomes unhealthy and cannot recover. HV-VES in this state is unusable and the container should be restarted.
+.. literalinclude:: resources/blueprint-snippet.yaml
+    :language: yaml
\ No newline at end of file