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
|
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
Configuration
=============
**datafile** configuration is controlled via a single JSON file called datafile_endpoints.json.
This is located under datafile-app-server/config.
JSON CONFIGURATION EXPLAINED
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Variables of interest (e.g. variables that should be inspected/modifed for a specific runtime environment) are listed below for convenience. The entire file is provided later in this page for reference.
dmaapConsumerConfiguration
""""""""""""""""""""""""""
.. code-block:: json
"dmaapHostName": <name of DMaaP/MR host>
"dmaapPortNumber": <DMaaP/MR host port>
"dmaapTopicName": "/events/unauthenticated.VES_NOTIFICATION_OUTPUT"
"dmaapProtocol": "http"
"dmaapUserName": ""
"dmaapUserPassword": ""
"dmaapContentType": "application/json"
"consumerId": "C12"
"consumerGroup": "OpenDcae-c12"
"timeoutMS": -1
"messageLimit": 1
dmaapProducerConfiguration
""""""""""""""""""""""""""
.. code-block:: json
"dmaapHostName": <name of DMaaP/DR host>
"dmaapPortNumber": <DMaaP/DR host port>
"dmaapTopicName": "publish"
"dmaapProtocol": "httpa"
"dmaapUserName": "dradmin"
"dmaapUserPassword": "dradmin"
"dmaapContentType": "application/octet-stream"
ftpesConfiguration
""""""""""""""""""
.. code-block:: json
"keyCert": <path to DFC certificate>
"keyPassword": <password for DFC certificate>
"trustedCa": <path to xNF certificate>
"trustedCaPassword": <password for xNF certificate>
securityConfiguration
"""""""""""""""""""""
.. code-block:: json
"trustStorePath": <path to trust store>
"trustStorePasswordPath": <path to trsust store password>
"keyStorePath": <path to key store>
"keyStorePasswordPath": <path to key store password>
"enableDmaapCertAuth": <boolean>. If false, all information above are ignored.
Sample JSON configuration
"""""""""""""""""""""""""
The format of the JSON configuration that drives all behavior of DFC is probably best described using an example:
.. code-block:: json
{
"configs": {
"dmaap": {
"dmaapConsumerConfiguration": {
"dmaapHostName": "localhost",
"dmaapPortNumber": 2222,
"dmaapTopicName": "/events/unauthenticated.VES_NOTIFICATION_OUTPUT",
"dmaapProtocol": "http",
"dmaapUserName": "",
"dmaapUserPassword": "",
"dmaapContentType": "application/json",
"consumerId": "C12",
"consumerGroup": "OpenDcae-c12",
"timeoutMS": -1,
"messageLimit": 1
},
"dmaapProducerConfiguration": {
"dmaapHostName": "localhost",
"dmaapPortNumber": 3907,
"dmaapTopicName": "publish",
"dmaapProtocol": "https",
"dmaapUserName": "dradmin",
"dmaapUserPassword": "dradmin",
"dmaapContentType": "application/octet-stream"
}
},
"ftp": {
"ftpesConfiguration": {
"keyCert": "config/dfc.jks",
"keyPassword": "secret",
"trustedCa": "config/ftp.jks",
"trustedCaPassword": "secret"
}
},
"security": {
"trustStorePath" : "change it",
"trustStorePasswordPath" : "change it",
"keyStorePath" : "change it",
"keyStorePasswordPath" : "change it",
"enableDmaapCertAuth" : "false"
}
}
}
|