Data storage within hyperledger

7.7k views Asked by At

I have started learning hyperledger. Became familiarised with it by creating a sample app using the composer playground. My doubt is regarding the decentralized storage using hyperledger. I have read some few docs which mentions about :

  • Saving the hash of the data within the blockchain to ensure the immutability.

  • Saving the image within the blockchain(as an asset) through the base64 string.

Some of the things were clear but a large portion still remains uncertain. They are :

  • Where is the data stored within the blockchain? Is it in couchdb ?
  • Suppose the data is stored within the couchdb and via multipeer a new peer gets added to the channel, then does it mean that all the couchdb's of the peers get synced ?

Any resources/tutorials that mention about data storage with the blockchain, decentralized storage etc. would be very helpful.

Thanks!

3

There are 3 answers

2
Andrei Dragotoniu On BEST ANSWER

the blockchain data, aka the ledger, is stored as a physical file. it contains linked blocks, each block consisting of a set of transactions. Each state change is stored there.

By contrast, the world state only contains the current state of every asset as that's what applications need.

The world state is implemented as a database, couchdb being a good option, there is a simpler one available but that one offers much less in terms of querying capability.

Of course what this means is that the world state can be easily recreated from the ledger at any point in time.

when a new peer gets added to a channel, its own world state is created from the ledger.

a good read describing all this is here: https://hyperledger-fabric.readthedocs.io/en/release-1.3/ledger/ledger.html

1
Ashish Mishra On
  1. The data is stored in the ledger which is the blockchain. Couchdb only holds states, which can be refreshed from the ledger. Couchdb helps in faster querying the blockchain data.
  2. Yes, all the peer's will have same blocks via gossiping. Couchdb just reads the data from ledger and create a state for itself.
2
Rahul Jain On

To clarify further, a ledger does not literally store business objects but it stores important information/facts about those objects -so history of these important facts is in ledger and current value of this important fact is in world state.So the actual object (the one about which facts are stored in ledger and world state) lives in an external datastore - could be called sort of 'off-chain' data. But the information we store in the ledger allows us to know facts about it and locate it as well. Hope this helps.