Unrated Message Handling Properties
Unrated Message Kafka Configuration Properties describes the properties available for sending unrated messages to a Kafka topic.
Property | Description |
---|---|
gateway.offline.kafka.enabled | Enables a bootstrap server and a Kafka topic for unrated messages. The default value is false . |
gateway.offline.kafka.config.bootstrap.servers | When gateway.offline.kafka.enabled is set to
true , this specifies the host and port of a
bootstrap server for unrated messages. |
gateway.offline.kafka.topic.single | When gateway.offline.kafka.enabled is set to
true , this specifies the name of the Kafka
topic to receive unrated messages. |
The following gateway.yaml excerpt shows the unrated message handling feature disabled by default:
gateway:
offline:
kafka:
enabled: false
config:
batch.size: 16384 # default for Kafka
The following nf.yaml example excerpt shows the unrated message handling feature enabled and configured:
gateway:
offline:
kafka:
enabled: true
config:
bootstrap:
servers: kafka:29092
topic:
single: rerater-input-1-topic
For more information about SBA Gateway Kafka configuration, see the discussions about Kafka producer configuration properties and Kafka configuration overrides.