Reputation: 270
I'm exploring the Hyperledger fabric with Kafka based ordering, When I try to create a channel using CLI, I need to pass the orderer.
I have created two orderers now using Kafka, But how to pass two orderers while creating the channel.
peer channel create -o orderer0.example.com,**orderer1.example.com**
Will it work?
Upvotes: 0
Views: 173
Reputation: 558
I think you cant. Because when you use orderer-kafka, when you send a transacción to one orderer he will use a kafka brokers to "broadcast" the transaction to all orderers on the Network.
Upvotes: 1