Piotr Jaszczyk | 19736a9 | 2018-09-24 11:27:58 +0200 | [diff] [blame] | 1 | .. This work is licensed under a Creative Commons Attribution 4.0 International License. |
| 2 | .. http://creativecommons.org/licenses/by/4.0 |
| 3 | |
| 4 | ======================== |
| 5 | HV-VES (High Volume VES) |
| 6 | ======================== |
| 7 | |
Piotr Jaszczyk | 19736a9 | 2018-09-24 11:27:58 +0200 | [diff] [blame] | 8 | |
| 9 | .. contents:: |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 10 | :depth: 4 |
Jakub Dudycz | e6b4289 | 2018-11-05 16:32:19 +0100 | [diff] [blame] | 11 | |
Piotr Jaszczyk | 19736a9 | 2018-09-24 11:27:58 +0200 | [diff] [blame] | 12 | .. |
| 13 | |
| 14 | Overview |
| 15 | ======== |
| 16 | |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 17 | Component description can be found under `HV-VES Collector`_. |
| 18 | |
Piotr Jaszczyk | 2df4b8c | 2018-10-05 10:56:38 +0200 | [diff] [blame] | 19 | .. _HV-VES Collector: ../../services/ves-hv/index.html |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 20 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 21 | .. _tcp_endpoint: |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 22 | |
| 23 | TCP Endpoint |
| 24 | ============ |
| 25 | |
| 26 | HV-VES is exposed as NodePort service on Kubernetes cluster on port 30222/tcp. |
VENKATESH KUMAR | 7cfaea2 | 2020-04-22 17:31:32 -0400 | [diff] [blame] | 27 | By default, as of the Frankfurt release, all TCP communications are secured using |
| 28 | SSL/TLS. Plain, insecure TCP connections without socket data encryption can be enabled if needed. |
| 29 | (see ref:`ssl_tls_authorization`). |
| 30 | |
| 31 | Without TLS, client authentication/authorization is not possible. |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 32 | Connections are stream-based (as opposed to request-based) and long-running. |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 33 | |
Piotr Jaszczyk | 2df4b8c | 2018-10-05 10:56:38 +0200 | [diff] [blame] | 34 | Communication is wrapped with thin Wire Transfer Protocol, which mainly provides delimitation. |
| 35 | |
| 36 | .. literalinclude:: WTP.asn |
| 37 | :language: asn |
| 38 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 39 | Payload is binary-encoded, using Google Protocol Buffers (GPB) representation of the VES Event. |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 40 | |
| 41 | .. literalinclude:: VesEvent.proto |
| 42 | :language: protobuf |
| 43 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 44 | HV-VES makes routing decisions based mostly on the content of the **Domain** parameter in the VES Common Event Header. |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 45 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 46 | The PROTO file, which contains the VES CommonEventHeader, comes with a binary-type Payload (eventFields) parameter, where domain-specific |
| 47 | data should be placed. Domain-specific data are encoded as well with GPB. A domain-specific PROTO file is required to decode the data. |
| 48 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 49 | API towards DMaaP |
| 50 | ================= |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 51 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 52 | HV-VES Collector forwards incoming messages to a particular DMaaP Kafka topic based on the domain and configuration. Every Kafka record is comprised of a key and a value. In case of HV-VES: |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 53 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 54 | - **Kafka record key** is a GPB-encoded `CommonEventHeader`. |
| 55 | - **Kafka record value** is a GPB-encoded `VesEvent` (`CommonEventHeader` and domain-specific `eventFields`). |
| 56 | |
| 57 | In both cases raw bytes might be extracted using ``org.apache.kafka.common.serialization.ByteArrayDeserializer``. The resulting bytes might be further passed to ``parseFrom`` methods included in classes generated from GPB definitions. WTP is not used here - it is only used in communication between PNF/VNF and the collector. |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 58 | |
Jakub Dudycz | 0c99792 | 2019-05-09 13:17:34 +0200 | [diff] [blame] | 59 | By default, **HV-VES** will use routing defined in **k8s-hv-ves.yaml-template** in **dcaegen2/platform/blueprints project**. |
| 60 | Currently there is one domain->topic mapping defined: perf3gpp->HV_VES_PERF3GPP |
Jakub Dudycz | e6b4289 | 2018-11-05 16:32:19 +0100 | [diff] [blame] | 61 | |
Filip Krzywka | 566342c | 2019-03-29 11:25:07 +0100 | [diff] [blame] | 62 | |
| 63 | .. _supported_domains: |
| 64 | |
Jakub Dudycz | e6b4289 | 2018-11-05 16:32:19 +0100 | [diff] [blame] | 65 | Supported domains |
| 66 | ================= |
| 67 | |
Jakub Dudycz | 0c99792 | 2019-05-09 13:17:34 +0200 | [diff] [blame] | 68 | As for now **HV-VES** supports only **perf3gpp** domain |
Jakub Dudycz | e6b4289 | 2018-11-05 16:32:19 +0100 | [diff] [blame] | 69 | |
Filip Krzywka | 566342c | 2019-03-29 11:25:07 +0100 | [diff] [blame] | 70 | For domains descriptions, see :ref:`domains_supported_by_hvves` |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 71 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 72 | .. _hv_ves_behaviors: |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 73 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 74 | HV-VES behaviors |
| 75 | ================ |
Filip Krzywka | cbd2ded | 2018-09-25 14:43:18 +0200 | [diff] [blame] | 76 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 77 | Connections with HV-VES are stream-based (as opposed to request-based) and long-running. In case of interrupted or closed connection, the collector logs such event but does not try to reconnect to client. |
| 78 | Communication is wrapped with thin Wire Transfer Protocol, which mainly provides delimitation. Wire Transfer Protocol Frame: |
Piotr Jaszczyk | 19736a9 | 2018-09-24 11:27:58 +0200 | [diff] [blame] | 79 | |
kjaniak | 53ba170 | 2018-10-25 14:25:13 +0200 | [diff] [blame] | 80 | - is dropped after decoding and validating and only GPB is used in further processing. |
| 81 | - has to start with **MARKER_BYTE**, as defined in protocol specification (see :ref:`tcp_endpoint`). If **MARKER_BYTE** is invalid, HV-VES disconnects from client. |
| 82 | |
| 83 | HV-VES decodes only CommonEventHeader from GPB message received. Collector does not decode or validate the rest of the GPB message and publishes it to Kafka topic intact. |
| 84 | Kafka topic for publishing events with specific domain can be configured through Consul service as described in :ref:`run_time_configuration`. |
| 85 | In case of Kafka service unavailability, the collector drops currently handled messages and disconnects the client. |
| 86 | |
| 87 | Messages handling: |
| 88 | |
| 89 | - HV-VES Collector skips messages with unknown/invalid GPB CommonEventHeader format. |
| 90 | - HV-VES Collector skips messages with unsupported domain. Domain is unsupported if there is no route for it in configuration (see :ref:`run_time_configuration`). |
| 91 | - HV-VES Collector skips messages with invalid Wire Frame format, unsupported WTP version or inconsistencies of data in the frame (other than invalid **MARKER_BYTE**). |
| 92 | - HV-VES Collector interrupts connection when it encounters a message with too big GPB payload. Default maximum size and ways to change it are described in :ref:`deployment`. |
| 93 | |
| 94 | .. note:: xNF (VNF/PNF) can split messages bigger than 1 MiB and set `sequence` field in CommonEventHeader accordingly. It is advised to use smaller than 1 MiB messages for GPBs encoding/decoding efficiency. |
| 95 | |
| 96 | - Skipped messages (for any of the above reasons) might not leave any trace in HV-VES logs. |
Jakub Dudycz | e6b4289 | 2018-11-05 16:32:19 +0100 | [diff] [blame] | 97 | |