Which of the following is not a feature of a Hyperledger Fabric ledger?
A.
Read-only history queries – Query ledger history for a key, enabling data provenance scenarios
B.
Read-only queries using a rich query language (if using CouchDB as state database)
C.
Read-only queries using a rich query language (if using LevelDB as state database)
D.
Query and update ledger using key-based lookups, range queries, and composite key queries.
The Answer Is:
C
This question includes an explanation.
Explanation:
Rich Query Language capability is available with CouchDB. What DB is used? The ledger system in Hyperledger fabric uses levelDB. By definition, LevelDB allows concurrent writers to safely insert data into the database by providing internal synchronization State database options include LevelDB and CouchDB. LevelDB is the default key-value state database embedded in the peer process. CouchDB is an optional alternative external state database. (Binary data)