Skip to content
Snippets Groups Projects
Commit 39386770 authored by inertia's avatar inertia
Browse files

Merge branch 'drop-sbds' into 'develop'

drop abandoned "sbds" project

See merge request !50
parents 398b0b1e 65d325ab
No related branches found
No related tags found
3 merge requests!53Deploy to production,!52Deploy latest,!50drop abandoned "sbds" project
...@@ -6,4 +6,4 @@ exclude: true ...@@ -6,4 +6,4 @@ exclude: true
Getting started to develop robust and feature rich **Hive** applications couldn't be easier. Accessing hive data is easy from various options depending on your infrastructure and objectives. Getting started to develop robust and feature rich **Hive** applications couldn't be easier. Accessing hive data is easy from various options depending on your infrastructure and objectives.
Building a picture discovery app is a breeze with the [JavaScript]({{ '/tutorials/#tutorials-javascript' | relative_url }}) library. There is also a [Python]({{ '/tutorials/#tutorials-python' | relative_url }}) library available, [Hive.com]({{ '/services/#services-steemit' | relative_url }}) and [HBDS]({{ '/services/#services-hbds' | relative_url }}) services, as well as many [community projects]({{ '/resources/#resources-overview' | relative_url }}) which could be beneficial for your steem project. Building a picture discovery app is a breeze with the [JavaScript]({{ '/tutorials/#tutorials-javascript' | relative_url }}) library. There is also a [Python]({{ '/tutorials/#tutorials-python' | relative_url }}) library available, [Hive.com]({{ '/services/#services-steemit' | relative_url }}), as well as many [community projects]({{ '/resources/#resources-overview' | relative_url }}) which could be beneficial for your steem project.
...@@ -4,7 +4,7 @@ position: 3 ...@@ -4,7 +4,7 @@ position: 3
description: A reverse proxy that forwards json-rpc requests. description: A reverse proxy that forwards json-rpc requests.
--- ---
Jussi is a custom-built caching layer for use with `hived` and other various services (such as [HBDS]({{ '/services/#services-hbds' | relative_url }})). Jussi is a custom-built caching layer for use with `hived`.
The purpose of this document is to help developers and node operators set up their own jussi node within a docker container. The purpose of this document is to help developers and node operators set up their own jussi node within a docker container.
......
---
title: HBDS
position: 5
---
**hbds** is a tool for easily querying the data of the Hive Blockchain.
While providing direct interfaces to several pluggable storage architectures that may be used for querying the blockchain, hbds may also be used as a lower level API upon which other applications can be built.
**Docker Hub**
```
docker run -d steemit/hbds
```
**Python 3**
```
pip3 install -e git+git@github.com:steemit/hbds.git#egg=hbds
```
**Examples**
Stream blocks 1 to 3450000 from our dev S3 bucket
```
hbds checkpoints get-blocks s3://steemit-dev-hbds-checkpoints/gzipped --start 1 --end 3450000
```
Stream blocks 8000000 to the last block from your local copy of our S3 bucket
```
hbds checkpoints get-blocks /home/ubuntu/checkpoints/gzipped --start 8000000
```
Stream all blocks from your local copy of our S3 bucket
```
hbds checkpoints get-blocks /home/ubuntu/checkpoints/gzipped
```
**Routes**
Coming soon.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment