Git Product home page Git Product logo

basin-cli's Introduction

vaults-cli

License standard-readme compliant

Continuously publish data from your database or file uploads to the Tableland Vaults network.

Table of Contents

Background

Textile Vaults is a secure and verifiable open data platform. The Vaults CLI is a tool that allows you to continuously replicate a table or view from your database to the network (currently, only PostgreSQL is supported). Or, you can directly upload files to the vault (currently, parquet is only supported)

🚧 Vaults is currently not in a production-ready state. Any data that is pushed to the network may be subject to deletion. 🚧

Usage

Install

You can either install the CLI from the remote source:

go install github.com/tablelandnetwork/basin-cli/cmd/vaults@latest

Or clone from source and run the Makefile install command:

git clone https://github.com/tablelandnetwork/basin-cli.git
cd basin-cli
make install

Postgres setup

You can either write files directly to the network, or you can replicate one or more tables from Postgres database. The replication process requires a few configuration steps before you can create a vault and start streaming data.

Self-hosted

  • Make sure you have access to a superuser role. For example, you can create a new role such as CREATE ROLE vaults WITH PASSWORD NULL LOGIN SUPERUSER;.

  • Check that your Postgres installation has the wal2json plugin installed.

  • Check if logical replication is enabled:

    SHOW wal_level;

    The wal_level setting must be set to logical: ALTER SYSTEM SET wal_level = logical;.

  • Restart the database in order for the new wal_level to take effect (be careful!).

Amazon RDS

  • Make sure you have a user with the rds_superuser role, and use psql to connect to your database.

    psql -h [HOST] -U [USER] -d [DATABASE]
  • Check if logical replication is enabled:

    SELECT name, setting
    FROM pg_settings
    WHERE name = 'rds.logical_replication';
  • If it's on, go to Create a vault

  • If it's off, follow the next steps:

  • After reboot, check if logical replication is enabled

Supabase

  • Log into the Supabase dashboard and go to your project, or create a new one.
  • Check if logical replication is enabled. This should be the default setting, so you shouldn't have to change anything. You can do this in the SQL Editor section on the left hand side of the Supabase dashboard by running SHOW wal_level; query, which should log logical.
  • You can find the database connection information on the left hand side under Project Settings > Database. You will need the Host, Port, Database, Username, and Password to connect to your database.

Create a vault

Vaults define the place you push data into.

Vaults uses public key authentication, so you will need an Ethereum style (ECDSA, secp256k1) wallet to create a new vault. You can use an existing wallet or set up a new one with vaults wallet create. Your private key is only used locally for signing.

vaults account create [FILENAME]

A new private key will be written to FILENAME.

The name of a vault contains a namespace (e.g. my_company) and an identifier (e.g., my_data), separated by a period (.). Use vaults create to create a new vault. See vaults create --help for more info.

vaults create --account [WALLET_ADDRESS] [namespace.identifier]

To crete a vault with a Time-to-Live (TTL) cache period (in minutes), use the --cache flag:

vaults create --account [WALLET_ADDRESS] --cache 10 [namespace.identifier]

Start replicating a database

Use vaults stream to start a daemon that will continuously push changes to the underlying table/view to the network. See vaults stream --help for more info.

vaults stream --dburi [DB_URI] --tables t1,t2 --private-key [PRIVATE_KEY] [namespace.identifier]

The --dburi should follow this format:

postgresql://[USER]:[PASSWORD]@[HOST]:[PORT]/[DATABASE]

🚧 Vaults currently only replicates INSERT statements, which means that it only replicates append-only data (e.g., log-style data). Row updates and deletes will be ignored. 🚧

Write files

Before writing a file, you need to Create a vault, if not already created. Then, use vaults write to write a Parquet file.

vaults write --vault [namespace.identifier] --private-key [PRIVATE_KEY] filepath

You can attach a timestamp to that file write, e.g.

vaults write --vault [namespace.identifier] --private-key [PRIVATE_KEY] --timestamp 1699984703 filepath

# or use data format
vaults write --vault [namespace.identifier] --private-key [PRIVATE_KEY] --timestamp 2006-01-02 filepath

# or use RFC3339 format
vaults write --vault [namespace.identifier] --private-key [PRIVATE_KEY] --timestamp 2006-01-02T15:04:05Z07:00 filepath

If a timestamp is not provided, the CLI will assume the timestamp is the current client epoch in UTC.

Listing vaults

You can list the vaults from an account by running:

vaults list --account [ETH_ADDRESS]

Listing events

You can list events of a given vault by running:

vaults events --vault [VAULT_NAME] --latest 5

Events command accept --before,--after , and --at flags to filter events by timestamp

# examples
vaults events --vault demotest.data --at 1699569502
vaults events --vault demotest.data --before 2023-11-09T19:38:23-03:00
vaults events --vault demotest.data --after 2023-11-09

Retrieving data

You can retrieve a file from a vault by running:

vaults retrieve bafybeifr5njnrw67yyb2h2t7k6ukm3pml4fgphsxeurqcmgmeb7omc2vlq

You can specify the file where the retrieved content will be save:

vaults retrieve --output [FILENAME] bafybeifr5njnrw67yyb2h2t7k6ukm3pml4fgphsxeurqcmgmeb7omc2vlq

HTTP APIs

Instead of using the CLI, you can use the HTTP APIs directly. All requests use the following base URL:

  • https://basin.tableland.xyz

Create a vault

POST /vaults/{vault_id}

  • Note: the vault_id must contain a namespace and identifier, separated by a .—such as test_vault.data.

Params:

  • account (required)
  • cache (optional)

Examples

Without cache

curl --data 'account=0x78C61e68f9f985C43e36dD5ced3f5a24aD0c503e' \
'https://basin.tableland.xyz/vaults/test_vault.data'

With cache (in minutes)

curl --data 'account=0x78C61e68f9f985C43e36dD5ced3f5a24aD0c503e&cache=10' \
'https://basin.tableland.xyz/vaults/test_vault.data'

Write files

POST /vaults/{vault_id}/events

Headers:

  • filename: The name to store the file as.

Params:

  • signature (required): hex encoded keccak hash of the event
  • timestamp (optional): unix timestamp

Examples

curl -H "filename: data.parquet" --data-binary "@data.parquet" \
'https://basin.tableland.xyz/vaults/test_vault.data/event?timestamp=1708987192&signature=a4cb49a595988e2a3b20e6ee468d50a8d3c3cb01a278754c07efda3a89a7e60527545deb512204b034100d6d6b9d169a2d22f5e6286c9c0272e8dc920981941a00'

Note about implementation:

  • In this example, the timestamp and signature are query parameters.
  • You must sign the event before sending. For example, you can use CLI's sign command to get the signature string needed in the request above:
    vaults sign --private-key 0x1234abcd /path/to/file
    

Listing vaults

GET /vaults?account={address}

Examples

curl 'https://basin.tableland.xyz/vaults?account=0x78C61e68f9f985C43e36dD5ced3f5a24aD0c503e'

List events

GET /vaults/{vault_id}/events

It supports the limitoffsetbefore and after as optional params.

Examples

curl 'https://basin.tableland.xyz/vaults/cache_long.test/events'
  • Note: the default value for limit is 10, so be sure to request more events or filter with before or after, in case there are more than 10 events in a vault.

Retrieving data

GET /events/{event_id}

Examples

curl 'https://basin.tableland.xyz/events/bafkreibq2xwn6xejhdemvoqqjzvbns5agqob4f2zhegutshbzpz6zyemv4' -o data.parquet

Currently, this endpoint can only download data from the cache.

If the cache has expired (or was never set), nothing will be downloaded via the HTTP API. Only the CLI retrieve command is able to retrieve a non-cached file directly from IPFS/Filecoin. We’re working to implement ways to make the HTTP API as seamless as the CLI flow.

Development

Running

You can make use of the scripts inside scripts to facilitate running the CLI locally without building.

# Starting the Provider Server
PORT=8888 ./scripts/server.sh

# Create an account
./scripts/run.sh account create pk.out

# Start replicating
./scripts/run.sh vaults stream --dburi [DB_URI] --tables t1,t2 --private-key [PRIVATE_KEY] namespace.identifier

Run tests

make test

Note: One of the tests requires Docker Engine to be running.

Contributing

PRs accepted.

Small note: If editing the README, please conform to the standard-readme specification.

License

MIT AND Apache-2.0, © 2021-2024 Tableland Network Contributors

basin-cli's People

Contributors

andrewxhill avatar avichalp avatar brunocalza avatar dtbuchholz avatar sanderpick avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

avichalp

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.