Go to file
Jonathan Moody c38134b645
Merge pull request #56 from moodyjon/slicebacked_type_param
Add element type param T to SlicedBacked[T]. Require T satisfy
2022-09-07 05:39:34 -05:00
.github/workflows Add "on: pull_request" to worflow. (#59) 2022-09-06 22:13:13 +03:00
db Merge pull request #56 from moodyjon/slicebacked_type_param 2022-09-07 05:39:34 -05:00
docker Updates for build (#50) 2022-08-16 14:52:26 +03:00
internal Add element type param T to SlicedBacked[T]. Require T satisfy 2022-08-30 16:24:43 -05:00
meta we're doing grpc 2021-03-18 17:24:48 -04:00
protobuf Herald.go (#47) 2022-08-09 14:43:01 +03:00
scripts fix release script (#48) 2022-08-10 21:06:56 +03:00
server Herald.go (#47) 2022-08-09 14:43:01 +03:00
testdata Add RepostedCount, EffectiveAmount prefix rows (#51) 2022-08-26 16:24:39 +03:00
.gitignore Catchup to python-herald schema. Plus lots of refactoring. (#49) 2022-08-16 08:45:41 +03:00
action.yml Updates for build (#50) 2022-08-16 14:52:26 +03:00
diagram.png add diagram 2021-03-19 15:10:32 -04:00
docker-compose-hub-server.yml I think network_mode: host is correct here 2021-06-04 14:14:13 -04:00
go.mod Updates for build (#50) 2022-08-16 14:52:26 +03:00
go.sum Updates for build (#50) 2022-08-16 14:52:26 +03:00
LICENSE we're doing grpc 2021-03-18 17:24:48 -04:00
main.go Herald.go (#47) 2022-08-09 14:43:01 +03:00
readme.md Update readme.md 2022-08-10 11:05:39 -04:00
signal.go rocksdb (#29) 2022-04-29 11:04:01 -04:00
signalsigterm.go rocksdb (#29) 2022-04-29 11:04:01 -04:00
version.txt v0.2022.08.16.1 2022-08-16 14:56:19 +03:00

LBRY Herald

herald.go is a not yet feature complete go rewrite of the existing implementation in python. A herald server provides back-end services to LBRY clients. Services include

  • URL resolution
  • search
  • hub federation and discovery

This project will eventually subsume and replace the herald and the lighthouse search provider.

Installation

No install instructions yet. See Contributing below.

Usage

Prerequisite: run python block processor and search plugin

Follow the instructions here.

Run this hub

./herald serve
# run with remote services disabled so it can run completely solo
./herald serve --disable-rocksdb-refresh --disable-load-peers --disable-resolve --disable-es --disable-blocking-and-filtering

Search for stuff

./herald search text goes here

Contributing

Contributions to this project are welcome, encouraged, and compensated. Details here.

Dev Dependencies

Install Go 1.18+

Download protoc from https://github.com/protocolbuffers/protobuf/releases and make sure it is executable and in your path.

Install Go plugin for protoc and python:

go get google.golang.org/protobuf/cmd/protoc-gen-go google.golang.org/grpc/cmd/protoc-gen-go-grpc
pip install grpcio grpcio-tools github3.py

Lastly the hub needs protobuf version 3.17.1, it may work with newer version but this is what it's built with, on ubuntu systems you'll have to install this from source see the GitHub actions in .github/workflows for an example of this.

Install rocksdb and dependencies your CGO flags, on ubuntu. We use v6.29.5 for feature and statis build support.

sudo apt-get install libgflags-dev libsnappy-dev zlib1g-dev libbz2-dev libzstd-dev liblz4-dev
wget https://github.com/facebook/rocksdb/archive/refs/tags/v6.29.5.tar.gz
tar xfzv rocksdb-6.29.5.tar.gz
cd rocksdb-6.29.5
make static_lib
sudo make install
https://github.com/protocolbuffers/protobuf/releases/download/v3.17.1/protobuf-all-3.17.1.tar.gz

If you can run ./protobuf/build.sh without errors, you have go and protoc installed correctly.

Finally, run the block processor as described under Usage.

Running from Source

Run ./dev.sh to start the hub. The script will restart the hub as you make changes to *.go files.

To search, use go run . search text goes here.

Windows

reflex doesn't work on windows, so you'll need to run go run . serve and restart manually as you make changes.

License

This project is MIT licensed. For the full license, see LICENSE.

Security

We take security seriously. Please contact security@lbry.com regarding any security issues. Our PGP key is here if you need it.

Contact

The primary contact for this project is @lyoshenka (grin@lbry.com).