Reputation: 105
I am new to hyperledger fabric. Is there a way to make channels under a channel. Normally, all channels are under system channel. But is this possible to make another channel which is governed by an intermediate channel not the system channel. And if this is possible then who should be responsible to create the channel in the bottom of the channel hierarchy.
=> System Channel governs Intermediate channels. An Intermediate channel can cover another channel.
Upvotes: 1
Views: 57
Reputation: 279
A channel is a logical construct where a subset of network orgs can transact without all the non channel orgs knowing about the transactions. For instance, if a network has 5 orgs: A, B, C, D, & E, you could have a channelAB with organisation A and B in the channel, and any transactions between A&B via ChannelAB would be stored in the Ledger associated with ChannelAB. Organization C, D and E would not have access to those transactions unless they also became members of that channel.
The System Channel governing all the intermediate (aka application) channels is a way to say the system channel comes first and is leveraged to create an application channel, to set up policies, etc.
Help me understand what you are trying to do where you need a hierarchy of channels?
Upvotes: 2