This article represents practice test / interview questions and answers and revision notes on Hyperledger Fabric Distributed Ledger**. These questions and answers can prove to be very helpful to check your knowledge on Hyperledger Fabric if you are appearing for Hyperledger Fabric interview in near future.
Hyperledger Fabric is an open-source framework for building distributed ledger solutions. The distributed ledger is maintained by every peer participating in the network. It is stored as a combination of a transaction logs and a world state database (key-value pairs).
Revision Notes – Hyperledger Fabric Distributed Ledger Concepts
- The distributed ledger is a combination of following:
- Blockchain to store immutable ordered/sequenced records; It is stored in form of transaction logs and stored in peers’ file system (local or attached storage). An analogy is a Write-ahead Log (WAL) of a classical RDBMS/NoSQL database.
- A database to maintain the state of Fabric network. It is also called as World State database. This can be generated from the Blockchain (Transaction logs) at any point in time as goes the WAL analogy from which a classical database can be recreated. In another word, World state database can be recovered anytime from transaction logs.
- Every channel is associated with one ledger.
- Each peer maintains a copy of each channel of which it belongs to.
- A blockchain transaction consists of the following information:
- Read-write set of key-value pairs
- Signatures of every endorsing peers
- Consensus (ordering) service is responsible for ordering the transactions in a block of transactions.
- Ordering service is responsible for delivering the block of transactions to the peers on a specific channel
- Chain of Blocks (Blockchain) is stored in form of transaction logs as part of the peer’s local file system or attached storage. It is like a Write-Ahead Logging (WAL) of a classical SQL/NoSQL based database.
- Every block in a Blockchain consists of the following:
- A block header which consists of the following:
- A hash of all the transactions in the comprising the block
- A hash of the prior block header
- A sequence of transactions
- A block header which consists of the following:
- World state database consists of all keys’ information stored in transaction logs. It can be said to be simply an indexed view into the Blockchain’s transaction log. Thus, it can be regenerated from the chain at any time.
Practice Test – Hyperledger Fabric Distributed Ledger Concepts
Hyperledger Fabric Distributed ledger can be said to be ________
Chain of blocks (Blockchain) is stored in form of which of the following?
____________ can be regenerated using ____________
A block header consists of ________
Which of the following acts as a consensus service?
A blockchain transaction consists of information such as ______
_______ can be seen as indexed view of _______
One and only one ledger is maintained for all the channels
Every blockchain network in Hyperledger Fabric is primarily a channel
A participant in one channel can also participate in another channel
A participant in one channel can view the data of another channel
Share your Results:
Reference
- Difference: Binary vs Multiclass vs Multilabel Classification - September 13, 2024
- Sklearn LabelEncoder Example – Single & Multiple Columns - September 13, 2024
- ROC Curve & AUC Explained with Python Examples - September 8, 2024
Leave a Reply