Skip to content

Commit

Permalink
Update appplication yaml template with Kafka Configs
Browse files Browse the repository at this point in the history
Signed-off-by: “Nithin <[email protected]>
  • Loading branch information
“Nithin committed Nov 16, 2023
1 parent f2e14bb commit 2183d13
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion src/main/resources/application.template
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,29 @@ fabric:
-
channelName: Name of the Channel
chaincodeId: chaincode-id of the deployed chaincode in this Channel
kafka:
integration-points: <Note : This is a list and Multiple intgration points can be configured)
- groupId: test_group_id
enableParallelListenerCapabilities: boolean
topicPartitions: <Number of Partitions in the Topic>
brokerHost: <Comma separated list of boostrap servers>
topic: <topic to listen from>
ssl-enabled: boolean
security-protocol: <Only supports SSL>
ssl-keystore-base64: <if ssl-enabled is true, provide the Base64 encoded value of keystore file>
ssl-truststore-base64: <if ssl-enabled is true, provide the Base64 encoded value of Trsutstore file>
event-listener:
brokerHost: <Comma separated list of boostrap servers>
topic: <topic to publish Block or Chaincode Events>
ssl-enabled: boolean
security-protocol: <Only supports SSL>
listenToFailedMessages: boolean <set as true if you wish to recieve errored Transaction records back to this topic>


failedMessageListener: <Note, if you wish to receive errored Transactions to a dedicated topic, these details should be filled up>
brokerHost: <Comma separated list of boostrap servers>
topic: <topic to publish errored Records>
ssl-enabled: boolean
security-protocol: <Only supports SSL>
---
spring:
profiles: container
Expand Down

0 comments on commit 2183d13

Please sign in to comment.