Re: Multiple Channels in Hyperledger Leading to Multiple Point to Point Connection and Multiple Ledgers
Gari Singh <garis@...>
I'm not going to get into the architectural merits and/or deficiencies of Hyperledger Fabric, Quorum or Corda here, but I'll attempt to answer the question in terms of scalability/maintenance from a resource perspective.
toggle quoted messageShow quoted text
Each Fabric peer will have a separate ledger and state store per channel. At least one peer will also need to make connection to the ordering service for each channel. From a storage perspective, there is not a significant overhead in using channels from a peer perspective although if the transaction rate is low for a channel you might end up with a little bit of storage overhead based on the block structure because transaction for different channels cannot be in the same block. From a network connection perspective, there's always overhead in the number of connections, but I don't think Fabric channels actually create more connections for the peer (the ordering service of course needs to scale). The use of an ordering service does potentially add additional storage to the overall network, but that will be addressed in the future by archive / pruning of the orderer. Corda is peer to peer architecture; in your example, each bank node must connect to the node of every other bank it wishes to transact with. Additionally, in order to avoid "double spend", each flow will communicate with a notary (and generally this means that each node in the transaction will communicate with the notary). From a storage perspective, each Corda node only stores data for transactions it is involved in. So in this way, a Corda node will typically store less data than a Fabric node in the case where a channel has more than 2 members. The notaries of course currently store the entire history for each type of asset they are responsible for. The Quorum architecture actually typically involves running two processes per node / member: an Ethereum process and a Constellation process. Constellation is used to handle private contracts and private data. And again, in this case it is also a peer to peer / point to point architecture. If a bank wants to conduct a private transaction with another bank, Constellation is used to handle the private data with the hash being sent to the "public" ledger managed by the Ethereum nodes. Quorum did recently add support for z-contracts which run on the Ethereum nodes in order to prevent double-spending of assets in private contracts. As you can see, while the architecture / processing models of Hyperledger Fabric, Cord and Quorum are different, in the end the resource requirements per member and overall for the network are actually more similar than they seem. I'll also say that each architecture has it's own complexities in actually getting things setup and running. Hope this helps. -- G ----------------------------------------- Gari Singh Distinguished Engineer, CTO - IBM Blockchain IBM Middleware 550 King St Littleton, MA 01460 Cell: 978-846-7499 garis@us.ibm.com ----------------------------------------- -----hyperledger-fabric-bounces@lists.hyperledger.org wrote: ----- To: hyperledger-fabric@lists.hyperledger.org From: Nathan Aw Sent by: hyperledger-fabric-bounces@lists.hyperledger.org Date: 12/09/2017 08:08AM Subject: Re: [Hyperledger-fabric] Multiple Channels in Hyperledger Leading to Multiple Point to Point Connection and Multiple Ledgers Dear all, 2nd try. Any quick inputs + thoughts? Thank you.
On Thu, Dec 7, 2017 at 12:49 AM, Nathan Aw <nathan.mk.aw@gmail.com> wrote:
Dear all, Understand that privacy in HyperLedger is achieved via a per-channel basis and one ledger per channel. My question -- will there be scalability/maintenance issues if there are many members (>50) with many channels due to this design? Scenario: Say there are 31 banks in a network (a bit of a stretch... just assuming), each bank needs to transact with the other 31 banks. Bank A setup 30 channels to the other 30 banks. Bank B setup 30 channels to the other 30 banks. Bank C setup 30 channels to the other 30 banks The list goes on. 30 * 30 = 900 channels. Comparing this to Quorum where Zero Knowledge Proofs are used and R3 Corda via Notaries, how does the channel design in Hyperledger stack up to these differing technologies? Thank you. -- Regards, Nathan Aw -- Regards, Nathan https://sg.linkedin.com/in/awnathan http://www.nasdaq.com/article/guest-post-understanding-the-limits-and-potential-of-blockchain-technology-cm874892 https://www.hyperledger.org/blog/2017/12/05/developer-showcase-series-nathan-aw-ntt-data https://bitcoinmagazine.com/authors/nathan-aw/ _______________________________________________ Hyperledger-fabric mailing list Hyperledger-fabric@lists.hyperledger.org https://urldefense.proofpoint.com/v2/url?u=https-3A__lists.hyperledger.org_mailman_listinfo_hyperledger-2Dfabric&d=DwICAg&c=jf_iaSHvJObTbx-siA1ZOg&r=g4AhUihDboIiYYOCY3DtvQ&m=7g-aAx3ZRfERRS4hwl5MPdxXVmB6Qx7JnppN_Aibm_s&s=L9465_Hfra3SRFAKCwfEY01gI3n8pEyJA_y2uy03CJQ&e=
|
|