Seetharaman GR
Seetharaman GR

Reputation: 270

In hyperledger fabric How to pass two orderer's in peer channel create?

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

Answers (1)

Alexander Yammine
Alexander Yammine

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

Related Questions