update examples and deploy script
This commit is contained in:
parent
844bdbdf60
commit
9a6f2a6d96
6 changed files with 49 additions and 47 deletions
|
@ -1,10 +1,10 @@
|
||||||
## Cluster environment guide
|
## Cluster environment guide
|
||||||
|
|
||||||
For best performance the recommended setup uses three server instances, these can be rented VPSs, self hosted VMs (ideally not on one physical host unless the host is sufficiently powerful), or physical computers. One is a dedicated lbcd node, one an elasticsearch server, and the third runs the scribe services. With this configuration the lbcd and elasticsearch servers can be shared between multiple scribe hub servers - more on that later.
|
For best performance the recommended setup uses three server instances, these can be rented VPSs, self hosted VMs (ideally not on one physical host unless the host is sufficiently powerful), or physical computers. One is a dedicated lbcd node, one an elasticsearch server, and the third runs the hub services (scribe, herald, and scribe-elastic-sync). With this configuration the lbcd and elasticsearch servers can be shared between multiple herald servers - more on that later.
|
||||||
Server Requirements (space requirements are at least double what's needed so it's possible to copy snapshots into place or make snapshots):
|
Server Requirements (space requirements are at least double what's needed so it's possible to copy snapshots into place or make snapshots):
|
||||||
- lbcd: 2 cores, 8gb ram (slightly more may be required syncing from scratch, from a snapshot 8 is plenty), 150gb of NVMe storage
|
- lbcd: 2 cores, 8gb ram (slightly more may be required syncing from scratch, from a snapshot 8 is plenty), 150gb of NVMe storage
|
||||||
- elasticsearch: 8 cores, 9gb of ram (8gb minimum given to ES), 150gb of SSD speed storage
|
- elasticsearch: 8 cores, 9gb of ram (8gb minimum given to ES), 150gb of SSD speed storage
|
||||||
- scribe: 8 cores, 32gb of ram, 200gb of NVMe storage
|
- hub: 8 cores, 32gb of ram, 200gb of NVMe storage
|
||||||
|
|
||||||
All servers are assumed to be running ubuntu 20.04 with user named `lbry` with passwordless sudo and docker group permissions, ssh configured, ulimits set high, and docker + docker-compose installed. The server running elasticsearch should have swap disabled. The three servers need to be able to communicate with each other, they can be on a local network together or communicate over the internet. This guide will assume the three servers are on the internet.
|
All servers are assumed to be running ubuntu 20.04 with user named `lbry` with passwordless sudo and docker group permissions, ssh configured, ulimits set high, and docker + docker-compose installed. The server running elasticsearch should have swap disabled. The three servers need to be able to communicate with each other, they can be on a local network together or communicate over the internet. This guide will assume the three servers are on the internet.
|
||||||
|
|
||||||
|
@ -72,16 +72,16 @@ services:
|
||||||
- Start elasticsearch by running `docker-compose up -d`
|
- Start elasticsearch by running `docker-compose up -d`
|
||||||
- Check the status with `docker-compose logs -f --tail 100`
|
- Check the status with `docker-compose logs -f --tail 100`
|
||||||
|
|
||||||
### Setting up the scribe hub instance
|
### Setting up the hub instance
|
||||||
- Log in (ssh) to the scribe instance and generate and print out a ssh key, this is needed to set up port forwards to the other two instances. Copy the output of the following:
|
- Log in (ssh) to the hub instance and generate and print out a ssh key, this is needed to set up port forwards to the other two instances. Copy the output of the following:
|
||||||
```
|
```
|
||||||
ssh-keygen -q -t ed25519 -N '' -f ~/.ssh/id_ed25519 <<<y >/dev/null 2>&1
|
ssh-keygen -q -t ed25519 -N '' -f ~/.ssh/id_ed25519 <<<y >/dev/null 2>&1
|
||||||
```
|
```
|
||||||
- After copying the above key, log out of the scribe hub instance.
|
- After copying the above key, log out of the hub instance.
|
||||||
|
|
||||||
- Log in to the elasticsearch instance add the copied key to `~/.ssh/authorized_keys` (see [this](https://stackoverflow.com/questions/6377009/adding-a-public-key-to-ssh-authorized-keys-does-not-log-me-in-automatically) if confused). Log out of the elasticsearch instance once done.
|
- Log in to the elasticsearch instance add the copied key to `~/.ssh/authorized_keys` (see [this](https://stackoverflow.com/questions/6377009/adding-a-public-key-to-ssh-authorized-keys-does-not-log-me-in-automatically) if confused). Log out of the elasticsearch instance once done.
|
||||||
- Log in to the lbcd instance and add the copied key to `~/.ssh/authorized_keys`, log out when done.
|
- Log in to the lbcd instance and add the copied key to `~/.ssh/authorized_keys`, log out when done.
|
||||||
- Log in to the scribe instance and copy the following to `/etc/systemd/system/es-tunnel.service`, replacing `lbry` with your user and `your-elastic-ip` with your elasticsearch instance ip.
|
- Log in to the hub instance and copy the following to `/etc/systemd/system/es-tunnel.service`, replacing `lbry` with your user and `your-elastic-ip` with your elasticsearch instance ip.
|
||||||
```
|
```
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Persistent SSH Tunnel for ES
|
Description=Persistent SSH Tunnel for ES
|
||||||
|
@ -97,7 +97,7 @@ Group=lbry
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
```
|
```
|
||||||
- Next, copy the following to `/etc/systemd/system/lbcd-tunnel.service` on the scribe instance, replacing `lbry` with your user and `your-lbcd-ip` with your lbcd instance ip.
|
- Next, copy the following to `/etc/systemd/system/lbcd-tunnel.service` on the hub instance, replacing `lbry` with your user and `your-lbcd-ip` with your lbcd instance ip.
|
||||||
```
|
```
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Persistent SSH Tunnel for lbcd
|
Description=Persistent SSH Tunnel for lbcd
|
||||||
|
@ -113,21 +113,21 @@ Group=lbry
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
```
|
```
|
||||||
- Verify you can ssh in to the elasticsearch and lbcd instances from the scribe instance
|
- Verify you can ssh in to the elasticsearch and lbcd instances from the hub instance
|
||||||
- Enable and start the ssh port forward services on the scribe instance
|
- Enable and start the ssh port forward services on the hub instance
|
||||||
```
|
```
|
||||||
sudo systemctl enable es-tunnel.service
|
sudo systemctl enable es-tunnel.service
|
||||||
sudo systemctl enable lbcd-tunnel.service
|
sudo systemctl enable lbcd-tunnel.service
|
||||||
sudo systemctl start es-tunnel.service
|
sudo systemctl start es-tunnel.service
|
||||||
sudo systemctl start lbcd-tunnel.service
|
sudo systemctl start lbcd-tunnel.service
|
||||||
```
|
```
|
||||||
- Build the scribe docker image on the scribe hub instance by running the following:
|
- Build the hub docker image on the hub instance by running the following:
|
||||||
```
|
```
|
||||||
git clone https://github.com/lbryio/scribe.git
|
git clone https://github.com/lbryio/hub.git
|
||||||
cd scribe
|
cd hub
|
||||||
docker build -f ./docker/Dockerfile.scribe -t lbry/scribe:development .
|
docker build -t lbry/hub:development .
|
||||||
```
|
```
|
||||||
- Copy the following to `~/docker-compose.yml` on the scribe instance
|
- Copy the following to `~/docker-compose.yml` on the hub instance
|
||||||
```
|
```
|
||||||
version: "3"
|
version: "3"
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ services:
|
||||||
scribe:
|
scribe:
|
||||||
depends_on:
|
depends_on:
|
||||||
- scribe_elastic_sync
|
- scribe_elastic_sync
|
||||||
image: lbry/scribe:${SCRIBE_TAG:-development}
|
image: lbry/hub:${SCRIBE_TAG:-development}
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -150,7 +150,7 @@ services:
|
||||||
- "--max_query_workers=2"
|
- "--max_query_workers=2"
|
||||||
- "--cache_all_tx_hashes"
|
- "--cache_all_tx_hashes"
|
||||||
scribe_elastic_sync:
|
scribe_elastic_sync:
|
||||||
image: lbry/scribe:${SCRIBE_TAG:-development}
|
image: lbry/hub:${SCRIBE_TAG:-development}
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
ports:
|
ports:
|
||||||
|
@ -159,17 +159,17 @@ services:
|
||||||
- "lbry_rocksdb:/database"
|
- "lbry_rocksdb:/database"
|
||||||
environment:
|
environment:
|
||||||
- HUB_COMMAND=scribe-elastic-sync
|
- HUB_COMMAND=scribe-elastic-sync
|
||||||
|
- FILTERING_CHANNEL_IDS=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8
|
||||||
|
- BLOCKING_CHANNEL_IDS=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6
|
||||||
command:
|
command:
|
||||||
- "--elastic_host=127.0.0.1"
|
- "--elastic_host=127.0.0.1"
|
||||||
- "--elastic_port=9200"
|
- "--elastic_port=9200"
|
||||||
- "--max_query_workers=2"
|
- "--max_query_workers=2"
|
||||||
- "--filtering_channel_ids=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8"
|
herald:
|
||||||
- "--blocking_channel_ids=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6"
|
|
||||||
scribe_hub:
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- scribe_elastic_sync
|
- scribe_elastic_sync
|
||||||
- scribe
|
- scribe
|
||||||
image: lbry/scribe:${SCRIBE_TAG:-development}
|
image: lbry/hub:${SCRIBE_TAG:-development}
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
ports:
|
ports:
|
||||||
|
@ -178,7 +178,9 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- "lbry_rocksdb:/database"
|
- "lbry_rocksdb:/database"
|
||||||
environment:
|
environment:
|
||||||
- HUB_COMMAND=scribe-hub
|
- HUB_COMMAND=herald
|
||||||
|
- FILTERING_CHANNEL_IDS=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8
|
||||||
|
- BLOCKING_CHANNEL_IDS=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6
|
||||||
command:
|
command:
|
||||||
- "--daemon_url=http://lbry:lbry@127.0.0.1:9245"
|
- "--daemon_url=http://lbry:lbry@127.0.0.1:9245"
|
||||||
- "--elastic_host=127.0.0.1"
|
- "--elastic_host=127.0.0.1"
|
||||||
|
@ -186,9 +188,7 @@ services:
|
||||||
- "--max_query_workers=4"
|
- "--max_query_workers=4"
|
||||||
- "--host=0.0.0.0"
|
- "--host=0.0.0.0"
|
||||||
- "--max_sessions=100000"
|
- "--max_sessions=100000"
|
||||||
- "--filtering_channel_ids=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8"
|
|
||||||
- "--blocking_channel_ids=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6"
|
|
||||||
- "--prometheus_port=2112" # comment out to disable prometheus metrics
|
- "--prometheus_port=2112" # comment out to disable prometheus metrics
|
||||||
```
|
```
|
||||||
- Start the scribe hub services by running `docker-compose up -d`
|
- Start the hub services by running `docker-compose up -d`
|
||||||
- Check the status with `docker-compose logs -f --tail 100`
|
- Check the status with `docker-compose logs -f --tail 100`
|
||||||
|
|
|
@ -10,7 +10,7 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- lbcd
|
- lbcd
|
||||||
- scribe_elastic_sync
|
- scribe_elastic_sync
|
||||||
image: lbry/scribe:${SCRIBE_TAG:-latest}
|
image: lbry/hub:${SCRIBE_TAG:-latest}
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -24,7 +24,7 @@ services:
|
||||||
scribe_elastic_sync:
|
scribe_elastic_sync:
|
||||||
depends_on:
|
depends_on:
|
||||||
- es01
|
- es01
|
||||||
image: lbry/scribe:${SCRIBE_TAG:-latest}
|
image: lbry/hub:${SCRIBE_TAG:-latest}
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
ports:
|
ports:
|
||||||
|
@ -33,10 +33,10 @@ services:
|
||||||
- "lbry_rocksdb:/database"
|
- "lbry_rocksdb:/database"
|
||||||
environment:
|
environment:
|
||||||
- HUB_COMMAND=scribe-elastic-sync
|
- HUB_COMMAND=scribe-elastic-sync
|
||||||
|
- FILTERING_CHANNEL_IDS=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8
|
||||||
|
- BLOCKING_CHANNEL_IDS=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6
|
||||||
command: # for full options, see `scribe-elastic-sync --help`
|
command: # for full options, see `scribe-elastic-sync --help`
|
||||||
- "--max_query_workers=2"
|
- "--max_query_workers=2"
|
||||||
- "--filtering_channel_ids=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8"
|
|
||||||
- "--blocking_channel_ids=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6"
|
|
||||||
- "--elastic_host=127.0.0.1" # elasticsearch host
|
- "--elastic_host=127.0.0.1" # elasticsearch host
|
||||||
- "--elastic_port=9200" # elasticsearch port
|
- "--elastic_port=9200" # elasticsearch port
|
||||||
- "--elastic_notifier_host=127.0.0.1" # address for the elastic sync notifier to connect to
|
- "--elastic_notifier_host=127.0.0.1" # address for the elastic sync notifier to connect to
|
||||||
|
@ -46,7 +46,7 @@ services:
|
||||||
- lbcd
|
- lbcd
|
||||||
- scribe_elastic_sync
|
- scribe_elastic_sync
|
||||||
- scribe
|
- scribe
|
||||||
image: lbry/scribe:${SCRIBE_TAG:-latest}
|
image: lbry/hub:${SCRIBE_TAG:-latest}
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
ports:
|
ports:
|
||||||
|
@ -56,12 +56,12 @@ services:
|
||||||
- "lbry_rocksdb:/database"
|
- "lbry_rocksdb:/database"
|
||||||
environment:
|
environment:
|
||||||
- HUB_COMMAND=herald
|
- HUB_COMMAND=herald
|
||||||
|
- FILTERING_CHANNEL_IDS=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8
|
||||||
|
- BLOCKING_CHANNEL_IDS=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6
|
||||||
command: # for full options, see `herald --help`
|
command: # for full options, see `herald --help`
|
||||||
- "--daemon_url=http://lbry:lbry@127.0.0.1:9245"
|
- "--daemon_url=http://lbry:lbry@127.0.0.1:9245"
|
||||||
- "--max_query_workers=4"
|
- "--max_query_workers=4"
|
||||||
- "--host=0.0.0.0"
|
- "--host=0.0.0.0"
|
||||||
- "--filtering_channel_ids=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8"
|
|
||||||
- "--blocking_channel_ids=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6"
|
|
||||||
- "--prometheus_port=2112" # comment out to disable prometheus metrics
|
- "--prometheus_port=2112" # comment out to disable prometheus metrics
|
||||||
# - "--elastic_host=127.0.0.1" # elasticsearch host
|
# - "--elastic_host=127.0.0.1" # elasticsearch host
|
||||||
# - "--elastic_port=9200" # elasticsearch port
|
# - "--elastic_port=9200" # elasticsearch port
|
||||||
|
|
|
@ -7,7 +7,7 @@ services:
|
||||||
scribe:
|
scribe:
|
||||||
depends_on:
|
depends_on:
|
||||||
- scribe_elastic_sync
|
- scribe_elastic_sync
|
||||||
image: lbry/scribe:${SCRIBE_TAG:-development}
|
image: lbry/hub:${SCRIBE_TAG:-development}
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -19,7 +19,7 @@ services:
|
||||||
- "--max_query_workers=2"
|
- "--max_query_workers=2"
|
||||||
- "--cache_all_tx_hashes"
|
- "--cache_all_tx_hashes"
|
||||||
scribe_elastic_sync:
|
scribe_elastic_sync:
|
||||||
image: lbry/scribe:${SCRIBE_TAG:-development}
|
image: lbry/hub:${SCRIBE_TAG:-development}
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
ports:
|
ports:
|
||||||
|
@ -28,17 +28,17 @@ services:
|
||||||
- "lbry_rocksdb:/database"
|
- "lbry_rocksdb:/database"
|
||||||
environment:
|
environment:
|
||||||
- HUB_COMMAND=scribe-elastic-sync
|
- HUB_COMMAND=scribe-elastic-sync
|
||||||
|
- FILTERING_CHANNEL_IDS=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8
|
||||||
|
- BLOCKING_CHANNEL_IDS=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6
|
||||||
command:
|
command:
|
||||||
- "--elastic_host=127.0.0.1"
|
- "--elastic_host=127.0.0.1"
|
||||||
- "--elastic_port=9200"
|
- "--elastic_port=9200"
|
||||||
- "--max_query_workers=2"
|
- "--max_query_workers=2"
|
||||||
- "--filtering_channel_ids=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8"
|
|
||||||
- "--blocking_channel_ids=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6"
|
|
||||||
herald:
|
herald:
|
||||||
depends_on:
|
depends_on:
|
||||||
- scribe_elastic_sync
|
- scribe_elastic_sync
|
||||||
- scribe
|
- scribe
|
||||||
image: lbry/scribe:${SCRIBE_TAG:-development}
|
image: lbry/hub:${SCRIBE_TAG:-development}
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
ports:
|
ports:
|
||||||
|
@ -48,6 +48,8 @@ services:
|
||||||
- "lbry_rocksdb:/database"
|
- "lbry_rocksdb:/database"
|
||||||
environment:
|
environment:
|
||||||
- HUB_COMMAND=herald
|
- HUB_COMMAND=herald
|
||||||
|
- FILTERING_CHANNEL_IDS=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8
|
||||||
|
- BLOCKING_CHANNEL_IDS=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6
|
||||||
command:
|
command:
|
||||||
- "--daemon_url=http://lbry:lbry@127.0.0.1:9245"
|
- "--daemon_url=http://lbry:lbry@127.0.0.1:9245"
|
||||||
- "--elastic_host=127.0.0.1"
|
- "--elastic_host=127.0.0.1"
|
||||||
|
@ -55,6 +57,4 @@ services:
|
||||||
- "--max_query_workers=4"
|
- "--max_query_workers=4"
|
||||||
- "--host=0.0.0.0"
|
- "--host=0.0.0.0"
|
||||||
- "--max_sessions=100000"
|
- "--max_sessions=100000"
|
||||||
- "--filtering_channel_ids=770bd7ecba84fd2f7607fb15aedd2b172c2e153f 95e5db68a3101df19763f3a5182e4b12ba393ee8"
|
|
||||||
- "--blocking_channel_ids=dd687b357950f6f271999971f43c785e8067c3a9 06871aa438032244202840ec59a469b303257cad b4a2528f436eca1bf3bf3e10ff3f98c57bd6c4c6"
|
|
||||||
- "--prometheus_port=2112" # comment out to disable prometheus metrics
|
- "--prometheus_port=2112" # comment out to disable prometheus metrics
|
||||||
|
|
10
hub/db/db.py
10
hub/db/db.py
|
@ -829,8 +829,6 @@ class HubDB:
|
||||||
# read db state
|
# read db state
|
||||||
self.read_db_state()
|
self.read_db_state()
|
||||||
|
|
||||||
self.logger.info("index address statuses: %s", self._index_address_status)
|
|
||||||
|
|
||||||
# These are our state as we move ahead of DB state
|
# These are our state as we move ahead of DB state
|
||||||
self.fs_height = self.db_height
|
self.fs_height = self.db_height
|
||||||
self.fs_tx_count = self.db_tx_count
|
self.fs_tx_count = self.db_tx_count
|
||||||
|
@ -843,6 +841,14 @@ class HubDB:
|
||||||
self.logger.info(f'height: {self.db_height:,d}')
|
self.logger.info(f'height: {self.db_height:,d}')
|
||||||
self.logger.info(f'tip: {hash_to_hex_str(self.db_tip)}')
|
self.logger.info(f'tip: {hash_to_hex_str(self.db_tip)}')
|
||||||
self.logger.info(f'tx count: {self.db_tx_count:,d}')
|
self.logger.info(f'tx count: {self.db_tx_count:,d}')
|
||||||
|
if self.last_indexed_address_status_height:
|
||||||
|
self.logger.info(f'last indexed address statuses at block {self.last_indexed_address_status_height}')
|
||||||
|
self.logger.info(f'using address status index: {self._index_address_status}')
|
||||||
|
if self.filtering_channel_hashes:
|
||||||
|
self.logger.info("filtering claims reposted by channels: %s", ', '.join(map(lambda x: x.hex(), self.filtering_channel_hashes)))
|
||||||
|
if self.blocking_channel_hashes:
|
||||||
|
self.logger.info("blocking claims reposted by channels: %s",
|
||||||
|
', '.join(map(lambda x: x.hex(), self.blocking_channel_hashes)))
|
||||||
if self.hist_db_version not in self.DB_VERSIONS:
|
if self.hist_db_version not in self.DB_VERSIONS:
|
||||||
msg = f'this software only handles DB versions {self.DB_VERSIONS}'
|
msg = f'this software only handles DB versions {self.DB_VERSIONS}'
|
||||||
self.logger.error(msg)
|
self.logger.error(msg)
|
||||||
|
|
|
@ -16,10 +16,6 @@ class ElasticEnv(Env):
|
||||||
'ELASTIC_NOTIFIER_PORT', 19080)
|
'ELASTIC_NOTIFIER_PORT', 19080)
|
||||||
self.es_index_prefix = es_index_prefix if es_index_prefix is not None else self.default('ES_INDEX_PREFIX', '')
|
self.es_index_prefix = es_index_prefix if es_index_prefix is not None else self.default('ES_INDEX_PREFIX', '')
|
||||||
# Filtering / Blocking
|
# Filtering / Blocking
|
||||||
self.blocking_channel_ids = blocking_channel_ids if blocking_channel_ids is not None else self.default(
|
|
||||||
'BLOCKING_CHANNEL_IDS', '').split(' ')
|
|
||||||
self.filtering_channel_ids = filtering_channel_ids if filtering_channel_ids is not None else self.default(
|
|
||||||
'FILTERING_CHANNEL_IDS', '').split(' ')
|
|
||||||
self.reindex = reindex if reindex is not None else self.boolean('REINDEX_ES', False)
|
self.reindex = reindex if reindex is not None else self.boolean('REINDEX_ES', False)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|
|
@ -6,13 +6,13 @@ TARGET_HOST=$1
|
||||||
SCRIPTS_DIR=`dirname $0`
|
SCRIPTS_DIR=`dirname $0`
|
||||||
|
|
||||||
# build the image
|
# build the image
|
||||||
docker build -t lbry/scribe:development .
|
docker build -t lbry/hub:development .
|
||||||
IMAGE=`docker image inspect lbry/scribe:development | sed -n "s/^.*Id\":\s*\"sha256:\s*\(\S*\)\".*$/\1/p"`
|
IMAGE=`docker image inspect lbry/hub:development | sed -n "s/^.*Id\":\s*\"sha256:\s*\(\S*\)\".*$/\1/p"`
|
||||||
|
|
||||||
# push the image to the server
|
# push the image to the server
|
||||||
ssh $TARGET_HOST docker image prune --force
|
ssh $TARGET_HOST docker image prune --force
|
||||||
docker save $IMAGE | ssh $TARGET_HOST docker load
|
docker save $IMAGE | ssh $TARGET_HOST docker load
|
||||||
ssh $TARGET_HOST docker tag $IMAGE lbry/scribe:development
|
ssh $TARGET_HOST docker tag $IMAGE lbry/hub:development
|
||||||
|
|
||||||
## restart the wallet server
|
## restart the wallet server
|
||||||
ssh $TARGET_HOST SCRIBE_TAG="development" docker-compose up -d
|
ssh $TARGET_HOST SCRIBE_TAG="development" docker-compose up -d
|
||||||
|
|
Loading…
Reference in a new issue