1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Add more about the OceanDB & Osmosis drivers

This commit is contained in:
Troy McConaghy 2019-03-27 14:22:32 +01:00
parent 7dc037aaa6
commit dd05ffd118

View File

@ -7,10 +7,16 @@ Before reading this page, you should understand some [Ocean-specific terminology
## Aquarius
Marketplaces run Aquarius to store and manage metadata about the [assets](/concepts/terminology/#asset-or-data-asset) available in their marketplace. It provides an HTTP API for interacting with an off-chain database ([OceanDB](/concepts/components/#oceandb-drivers)).
Marketplaces run Aquarius to store and manage metadata about the [assets](/concepts/terminology/#asset-or-data-asset) available in their marketplace. It provides an HTTP API for interacting with an off-chain database (sometimes called "OceanDB").
<repo name="aquarius"></repo>
Aquarius supports several options for the off-chain database, including MongoDB, Elasticsearch and BigchainDB. One can add support for another off-chain database by creating a new driver similar to the existing OceanDB drivers.
<repo name="oceandb-mongodb-driver"></repo>
<repo name="oceandb-bigchaindb-driver"></repo>
<repo name="oceandb-elasticsearch-driver"></repo>
## Brizo
Publishers run Brizo to manage interactions with marketplaces and consumers.
@ -19,6 +25,12 @@ The most basic scenario for a publisher is to provide access to the [assets](/co
<repo name="brizo"></repo>
Brizo supports several options for file storage, including Azure Storage, Amazon S3 and on-premise storage. One can add support for another file storage option by creating a new driver similar to one of the existing Osmosis drivers.
<repo name="osmosis-azure-driver"></repo>
<repo name="osmosis-aws-driver"></repo>
<repo name="osmosis-on-premise-driver"></repo>
## Keeper
A computer running a blockchain client
@ -47,18 +59,6 @@ Client libraries used by applications (such as Pleuston or Jupyter notebooks) to
<repo name="squid-py"></repo>
<repo name="squid-java"></repo>
## OceanDB Drivers
OceanDB is an off-chain database for storing metadata about [assets](/concepts/terminology/#asset-or-data-asset).
<repo name="oceandb-mongodb-driver"></repo>
<repo name="oceandb-bigchaindb-driver"></repo>
<repo name="oceandb-elasticsearch-driver"></repo>
These drivers are extended from a high-level module implementing OceanDB functions. You can create your own plugins based on its abstracted interface:
<repo name="oceandb-driver-interface"></repo>
## Secret Store
A [Parity Secret Store](https://wiki.parity.io/Secret-Store): software for distributed key pair generation, distributed key storage, and threshold retrieval. It's used to store [asset](/concepts/terminology/#asset-or-data-asset) access-control keys.