commit | 61aba7d6442f1b7720a661cb6baa2399859750c5 | [log] [tgz] |
---|---|---|
author | Kasperki <pawel.kasperkiewicz@nokia.com> | Tue Aug 30 16:34:50 2022 +0200 |
committer | Pawel Kasperkiewicz <pawel.kasperkiewicz@nokia.com> | Wed Aug 31 08:21:49 2022 +0000 |
tree | b1cf5f3e76f5c35d07c5710b6bd2af61de5881b4 | |
parent | f9528663d2583aea6d5355a3c332fd21b0e3e1c8 [diff] |
Update sdk version from 1.8.8 to 1.8.10 - dowgrade to latests 3.X version (3.21.5) Issue-ID: DCAEGEN2-3212 Signed-off-by: Pawel <pawel.kasperkiewicz@nokia.com> Change-Id: Ib16d194f84cf1da67cfd76645825d81329c64116
ONAP component for collecting high volume data, eg, RTPM (Real Time Performance Management).
##General information
##Background VES-HV collector has been proposed, based on a need to process high-volumes of data generated frequently by a large number of NFs. The driving use-case is the 5G RAN, where it is expected that up to 10k NF instances report the data, per DCAE platform deployment. The network traffic generated in simulations - based on 4G BTS Real-Time PM data has shown, that GPB serialization is 2-3 times more effective, than JSON serialization utilized in VES collector. Results have been published within ONAP presentation in Casablanca Release Developer Forum: Google Protocol Buffers versus JSON - 5G RAN use-case - comparison
The goal of the collector is to support high volume data. It uses plain TCP connections tunneled in SSL/TLS. Connections are stream-based (as opposed to request-based) and long running. Payload is binary-encoded (currently we are using Google Protocol Buffers). HV-VES uses direct connection to DMaaP's Kafka. All these decisions were made in order to support high-volume data with minimal latency.
For more details on the rationale, please read a high-level feature description.
##Description Compatibility aspects (VES-JSON)
Extendability
VES-HV was designed to allow for extendability - by adding new domain-specific PROTO files.
The PROTO file, which contains the VES CommonHeader, comes with a binary-type Payload parameter, where domain-specific data shall be placed. Domain-specific data are encoded as well with GPB, and they do require a domain-specific PROTO file to decode the data. This domain-specific PROTO needs to be shared with analytics applications - VES-HV is not analyzing domain-specific data. In order to support the RT-PM use-case, VES-HV includes a "perf3gpp" domain PROTO file, as within this domain, the high volume data is expected to be reported to VES-HV collector. Still, there are no limitations to define additional domains, based on existing VES domains (like Fault, Heartbeat) or completely new domains. New domains can be added "when needed".
In case of new domains, it is necessary to extend the Common Header PROTO "Domain" enumeration with new values covering this new domain(s). GPB PROTO files are backwards compatible, and such a new domain could be added without affecting existing systems.
Analytics applications will have to be as well equipped with this new domain-specific PROTO file. Currently, these additional, domain specific proto files could be simply added to respective repos of VES-HV collector.
##Implementation details Technology stack
Rules