12345678910111213141516171819202122232425262728293031 |
- ##--------------------------------------------------------------------
- ## kafka Bridge
- ##--------------------------------------------------------------------
- ## The Kafka loadbalancer node host that bridge is listening on.
- ##
- ## Value: 127.0.0.1, localhost
- ###kafka.host = 192.168.67.16
- kafka.host = 116.239.32.52
- ## The kafka loadbalancer node port that bridge is listening on.
- ##
- ## Value: Port
- ###kafka.port = 9092
- kafka.port = 8884
- ## The kafka loadbalancer node partition strategy.
- ##
- ## Value: random, sticky_round_robin, strict_round_robin, custom
- kafka.partitionstrategy = strict_round_robin
- ## Each worker represents a connection to a broker + topic + partition combination.
- ## You can decide how many workers to start for each partition.
- ##
- ## Value:
- kafka.partitionworkers = 8
- ## payload topic.
- ##
- ## Value: string
- kafka.payloadtopic = Processing
|