I would like to work on integrating new consensus algorithms to Hyper Ledger Fabric. Could you please let me know the good starting point for the same. I found this link [https://openblockchain.readthedocs.io/en/latest/protocol-spec/#3.4-Pluggable-Consensus-Framework][1] but looking for a tutorial kind of material which describes implementation details with examples.
Hyper Ledger Fabric Pluggable Consensus
531 Views Asked by Satya Narayana At
1
There are 1 best solutions below
Related Questions in HYPERLEDGER-FABRIC
- The newer Hyperledger-fabric version doesn't contain membersvr module, instead by orderer?
- Unable to query on chaincode example 2
- Cannot "Query" hyperledger-fabric, error code -32003
- Cannot build "chaintool/example02"
- peer node start => Cannot dial to 0.0.0.0:7050, because of grpc: timed out when dialing
- Error building peer: "bzip2 data invalid" in goshim.tar.bz2
- Hyperledger Fabric v0.6 using Docker Toolbox
- What is the ibm bluemix blockchain port for events?
- initDeliver -> ERRO 129 Cannot dial to 0.0.0.0:7050, because of grpc: timed out when dialing
- IBM Blockchain (Hyperledger) - "Error when deploying chaincode"
- Fail to install signed package with peer chaincode install command
- ORDER BY not working in named query
- Adding peer to a existing network in hyperledger v1.0 from a different machine
- command line composer command not defined
- What is (t *SimpleAsset) in this function
Related Questions in CONSENSUS
- How is service discovery not a subset of centralized configuration?
- vcf-consensus script error: The sequence N not found in the fasta file
- Any terrible thing will happen if change Chaincode state in invokeChaincode?
- How does raft handle committing entries from previous one?
- Bitcoin and Ethereum inter-block time difference
- How a distributed storage system like Raft filter duplicate requests even after client session expiration
- Recommend algorithm of fair distributed resources allocation consensus
- Raft Vs MongoDB Primary Election
- consensus score and WSP score in python
- Consensus number of FIFO queue
- Where can I configure iot_consensus_throttle_threshold_in_byte in IoTConsensus of Apache IoTDB?
- Doesn't Paxos end up with the same instructions in the exact same order?
- How do developers manage to update new source code on blockchain due to the difficulty of distributed and decentralized consensus process
- Minimum number of nodes to achieve Byzantine Fault Tolerance
- Simple Consensus with Timeouts
Related Questions in PLUGGABLE
- How can I get handle on NServiceBus child container inside the message handler?
- Sessions connected to a pluggable database in Oracle 12c
- Loadable/Unloadable django apps
- Hyper Ledger Fabric Pluggable Consensus
- Is this a good solution for localisation of pluggable components?
- Links in pluggable area to the root od web (visual studio connot resolve link)
- How to make pluggable architecture ASP.NET5/MVC 6?
- how to connect to pluggable database when there are two instances
- how to build a pluggable java application?
- Pluggable Python program
- Pluggable ASP.NET MVC framework query
- Linux Pam authentication by answering to a challenge
- HTTP request using asynchronous pluggable protocol in Java
- Best way to develeop plugin compatible application. Dependency injection?
- Sending a command from a web-browser to an app
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
That page is for Fabric 0.6, it's prehistoric.
The official Fabric documentation is in https://hyperledger-fabric.readthedocs.io/.
In my team we implemented a Byzantine Fault Tolerant consensus for Hyperledger Fabric 1.4 that can be found here.
You can read the paper here.