[DMAAP] DMaaP ServiceMesh compatibility
[oom.git] / kubernetes / dmaap / components / message-router / resources / config / dmaap / MsgRtrApi.properties
1 {{/*
2 # LICENSE_START=======================================================
3 #  org.onap.dmaap
4 #  ================================================================================
5 #  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6 #  ================================================================================
7 #  Licensed under the Apache License, Version 2.0 (the "License");
8 #  you may not use this file except in compliance with the License.
9 #  You may obtain a copy of the License at
10 #        http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #  Unless required by applicable law or agreed to in writing, software
13 #  distributed under the License is distributed on an "AS IS" BASIS,
14 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #  See the License for the specific language governing permissions and
16 #  limitations under the License.
17 #  ============LICENSE_END=========================================================
18 #
19 #  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20 #
21 ###############################################################################
22 ###############################################################################
23 ##
24 ## Cambria API Server config
25 ##
26 ## Default values are shown as commented settings.
27 ##
28 ###############################################################################
29 ##
30 ## HTTP service
31 ##
32 ## 3904 is standard as of 7/29/14.
33 #
34 ## Zookeeper Connection
35 ##
36 ## Both Cambria and Kafka make use of Zookeeper.
37 ##
38 #config.zk.servers=172.18.1.1
39 #config.zk.servers={{.Values.zookeeper.name}}:{{.Values.zookeeper.port}}
40 */}}
41 config.zk.servers={{ include "common.kafkaNodes" (dict "dot" . "replicaCount" (index .Values "message-router-zookeeper" "replicaCount") "componentName" .Values.zookeeper.name "port" .Values.zookeeper.port ) }}
42 #config.zk.root=/fe3c/cambria/config
43
44
45 ###############################################################################
46 ##
47 ## Kafka Connection
48 ##
49 ##        Items below are passed through to Kafka's producer and consumer
50 ##        configurations (after removing "kafka.")
51 ##        if you want to change request.required.acks it can take this one value
52 #kafka.metadata.broker.list=localhost:9092,localhost:9093
53 #kafka.metadata.broker.list={{.Values.kafka.name}}:{{.Values.kafka.port}}
54 kafka.metadata.broker.list={{ include "common.kafkaNodes" (dict "dot" . "replicaCount" (index .Values "message-router-kafka" "replicaCount") "componentName" .Values.kafka.name "port" .Values.kafka.port ) }}
55
56 ##kafka.request.required.acks=-1
57 #kafka.client.zookeeper=${config.zk.servers}
58 consumer.timeout.ms=100
59 zookeeper.connection.timeout.ms=6000
60 zookeeper.session.timeout.ms=20000
61 zookeeper.sync.time.ms=2000
62 auto.commit.interval.ms=1000
63 fetch.message.max.bytes =1000000
64 auto.commit.enable=false
65
66 #(backoff*retries > zksessiontimeout)
67 kafka.rebalance.backoff.ms=10000
68 kafka.rebalance.max.retries=6
69
70
71 ###############################################################################
72 ##
73 ##        Secured Config
74 ##
75 ##        Some data stored in the config system is sensitive -- API keys and secrets,
76 ##        for example. to protect it, we use an encryption layer for this section
77 ##        of the config.
78 ##
79 ## The key is a base64 encode AES key. This must be created/configured for
80 ## each installation.
81 #cambria.secureConfig.key=
82 ##
83 ## The initialization vector is a 16 byte value specific to the secured store.
84 ## This must be created/configured for each installation.
85 #cambria.secureConfig.iv=
86
87 ## Southfield Sandbox
88 cambria.secureConfig.key=b/7ouTn9FfEw2PQwL0ov/Q==
89 cambria.secureConfig.iv=wR9xP5k5vbz/xD0LmtqQLw==
90 authentication.adminSecret=fe3cCompound
91 #cambria.secureConfig.key[pc569h]=YT3XPyxEmKCTLI2NK+Sjbw==
92 #cambria.secureConfig.iv[pc569h]=rMm2jhR3yVnU+u2V9Ugu3Q==
93
94
95 ###############################################################################
96 ##
97 ## Consumer Caching
98 ##
99 ##        Kafka expects live connections from the consumer to the broker, which
100 ##        obviously doesn't work over connectionless HTTP requests. The Cambria
101 ##        server proxies HTTP requests into Kafka consumer sessions that are kept
102 ##        around for later re-use. Not doing so is costly for setup per request,
103 ##        which would substantially impact a high volume consumer's performance.
104 ##
105 ##        This complicates Cambria server failover, because we often need server
106 ##        A to close its connection before server B brings up the replacement.
107 ##
108
109 ## The consumer cache is normally enabled.
110 #cambria.consumer.cache.enabled=true
111
112 ## Cached consumers are cleaned up after a period of disuse. The server inspects
113 ## consumers every sweepFreqSeconds and will clean up any connections that are
114 ## dormant for touchFreqMs.
115 #cambria.consumer.cache.sweepFreqSeconds=15
116 cambria.consumer.cache.touchFreqMs=120000
117 ##stickforallconsumerrequests=false
118 ## The cache is managed through ZK. The default value for the ZK connection
119 ## string is the same as config.zk.servers.
120 #cambria.consumer.cache.zkConnect=${config.zk.servers}
121
122 ##
123 ## Shared cache information is associated with this node's name. The default
124 ## name is the hostname plus the HTTP service port this host runs on. (The
125 ## hostname is determined via InetAddress.getLocalHost ().getCanonicalHostName(),
126 ## which is not always adequate.) You can set this value explicitly here.
127 ##
128 #cambria.api.node.identifier=<use-something-unique-to-this-instance>
129
130 #cambria.rateLimit.maxEmptyPollsPerMinute=30
131 #cambria.rateLimitActual.delay.ms=10
132
133 ###############################################################################
134 ##
135 ## Metrics Reporting
136 ##
137 ##        This server can report its metrics periodically on a topic.
138 ##
139 #metrics.send.cambria.enabled=true
140 #metrics.send.cambria.topic=cambria.apinode.metrics                                  #msgrtr.apinode.metrics.dmaap
141 #metrics.send.cambria.sendEverySeconds=60
142
143 cambria.consumer.cache.zkBasePath=/fe3c/cambria/consumerCache
144 consumer.timeout=17
145 default.partitions=3
146 default.replicas={{ index .Values "message-router-kafka" "replicaCount" }}
147 ##############################################################################
148 #100mb
149 maxcontentlength=10000
150
151
152 ##############################################################################
153 #AAF Properties
154 msgRtr.namespace.aaf=org.onap.dmaap.mr.topic
155 msgRtr.topicfactory.aaf=org.onap.dmaap.mr.topicFactory|:org.onap.dmaap.mr.topic:
156 enforced.topic.name.AAF=org.onap.dmaap.mr
157 forceAAF=false
158 transidUEBtopicreqd=false
159 defaultNSforUEB=org.onap.dmaap.mr
160 ##############################################################################
161 #Mirror Maker Agent
162
163 msgRtr.mirrormakeradmin.aaf=org.onap.dmaap.mr.mirrormaker|*|admin
164 msgRtr.mirrormakeruser.aaf=org.onap.dmaap.mr.mirrormaker|*|user
165 msgRtr.mirrormakeruser.aaf.create=org.onap.dmaap.mr.topicFactory|:org.onap.dmaap.mr.topic:
166 msgRtr.mirrormaker.timeout=15000
167 msgRtr.mirrormaker.topic=org.onap.dmaap.mr.mirrormakeragent
168 msgRtr.mirrormaker.consumergroup=mmagentserver
169 msgRtr.mirrormaker.consumerid=1
170
171 kafka.max.poll.interval.ms=300000
172 kafka.heartbeat.interval.ms=60000
173 kafka.session.timeout.ms=240000
174 kafka.max.poll.records=1000