Reputation: 1
i am trying to learn how to work with hyperledeger fabric but i have a lot of question that i couldn't find a answer for how is hyperledger fabric is implemented in organization and not just locally? and can we integrate existing database into a blockchain network and how? for example a databases can we integrate existing database into a blockchain network and how? with users and their record is this possible? i hope someone could answer me.
i have tried to read the documentations
Upvotes: 0
Views: 39
Reputation: 1222
As per my knowledge, in Hyperledger Fabric, we have CouchDB that supports key-value records. Yes, we can add existing data, but it must be compatible with Hyperledger Fabric's CouchDB. During the Fabric server startup script, we can add the CouchDB mount path, or alternatively, after the Fabric server starts, we can create a script to store all the old data.
Upvotes: 0