Non-named
Non-named

Reputation: 408

How is state database across peers synchronized in hyperledger fabric network?

I have two organizations with 2 peers running on each organization. I created a channel and joined all the 4 peers to it. The peers use couchdb as state database. Now if I accidentally modify/delete the data stored in one of the peer's couchdb database, how does this peer recover from the changed state and get synchronized with other peers?

Upvotes: 0

Views: 492

Answers (1)

Dave Enyeart
Dave Enyeart

Reputation: 2573

If you modify data in the state database, it will not be propagated to other peers. See the detailed answer in the question: Hyperledger Fabric CouchDB updates through Fauxton treated as valid updates, but no record in blockchain

Upvotes: 2

Related Questions