Refresh ledger bootstrap #603
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2018-2023 The MobileCoin Foundation | |
# | |
# Daily job to refresh ledger db files | |
name: Refresh ledger bootstrap | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
# Start mobilecoind | |
# Monitor mobilecoind until ledger has finished syncing | |
# Stop mobilecoind | |
# Copy ledger/watcher to azure blob | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
jobs: | |
refresh-ledger: | |
runs-on: mcf-dev-large-x64 | |
container: | |
image: mobilecoin/gha-azure-helper:latest | |
strategy: | |
fail-fast: false | |
matrix: | |
network: | |
- chain_id: test | |
min_signatures: "5" | |
block_info_url: https://node1.test.mobilecoin.com:443/gw/consensus_common.BlockchainAPI/GetLastBlockInfo | |
peers: mc://node1.test.mobilecoin.com:443/,mc://node2.test.mobilecoin.com:443/,mc://node3.test.mobilecoin.com/,mc://node1.consensus.mob.staging.namda.net:443/,mc://node2.consensus.mob.staging.namda.net:443/ | |
quorum_set: |- | |
{ "threshold": 3, "members": [{"args":"node1.test.mobilecoin.com:443","type":"Node"},{"args":"node2.test.mobilecoin.com:443","type":"Node"},{"args":"node3.test.mobilecoin.com:443","type":"Node"},{"args":"node1.consensus.mob.staging.namda.net:443","type":"Node"},{"args":"node2.consensus.mob.staging.namda.net:443","type":"Node"}] } | |
tx_source_urls: https://s3-us-west-1.amazonaws.com/mobilecoin.chain/node1.test.mobilecoin.com/,https://s3-us-west-1.amazonaws.com/mobilecoin.chain/node2.test.mobilecoin.com/,https://s3-us-west-1.amazonaws.com/mobilecoin.chain/node3.test.mobilecoin.com/,https://s3-eu-central-1.amazonaws.com/staging-namda-payments-ledger/node1.consensus.mob.staging.namda.net/,https://s3-eu-central-1.amazonaws.com/staging-namda-payments-ledger/node2.consensus.mob.staging.namda.net/ | |
- chain_id: main | |
min_signatures: "10" | |
block_info_url: https://node1.prod.mobilecoinww.com:443/gw/consensus_common.BlockchainAPI/GetLastBlockInfo | |
peers: mc://node1.prod.mobilecoinww.com:443/,mc://node2.prod.mobilecoinww.com:443/,mc://node3.prod.mobilecoinww.com/,mc://node1.consensus.mob.production.namda.net:443/,mc://node2.consensus.mob.production.namda.net:443/,mc://blockdaemon.mobilecoin.bdnodes.net:443/,mc://binance.mobilecoin.bdnodes.net:443/,mc://ideasbeyondborders.mobilecoin.bdnodes.net:443/,mc://ignite.mobilecoin.bdnodes.net:443/,mc://ams1-mc-node1.dreamhost.com:3223/ | |
quorum_set: | | |
{ "threshold": 7, "members": [{"args":"node1.prod.mobilecoinww.com:443","type":"Node"},{"args":"node2.prod.mobilecoinww.com:443","type":"Node"},{"args":"node3.prod.mobilecoinww.com:443","type":"Node"},{"args":"node1.consensus.mob.production.namda.net:443","type":"Node"},{"args":"node2.consensus.mob.production.namda.net:443","type":"Node"},{"args":"blockdaemon.mobilecoin.bdnodes.net:443","type":"Node"},{"args":"binance.mobilecoin.bdnodes.net:443","type":"Node"},{"args":"ideasbeyondborders.mobilecoin.bdnodes.net:443","type":"Node"},{"args":"ignite.mobilecoin.bdnodes.net:443","type":"Node"},{"args":"ams1-mc-node1.dreamhost.com:3223","type":"Node"}] } | |
tx_source_urls: https://ledger.mobilecoinww.com/node1.prod.mobilecoinww.com/,https://ledger.mobilecoinww.com/node2.prod.mobilecoinww.com/,https://ledger.mobilecoinww.com/node3.prod.mobilecoinww.com/,https://s3-eu-central-1.amazonaws.com/production-namda-payments-ledger/node1.consensus.mob.production.namda.net/,https://s3-eu-central-1.amazonaws.com/production-namda-payments-ledger/node2.consensus.mob.production.namda.net/,https://bd-mobilecoin-ledger.s3.amazonaws.com/blockdaemon.mobilecoin.bdnodes.net/,https://bd-mobilecoin-ledger.s3.amazonaws.com/binance.mobilecoin.bdnodes.net/,https://bd-mobilecoin-ledger.s3.amazonaws.com/ideasbeyondborders.mobilecoin.bdnodes.net/,https://bd-mobilecoin-ledger.s3.amazonaws.com/ignite.mobilecoin.bdnodes.net/,https://s3-eu-west-1.amazonaws.com/dh-mobilecoin-eu/ams1-mc-node1.dreamhost.com/ | |
env: | |
DOWNLOAD_DIR: ${{ github.workspace }}/.tmp | |
MC_LEDGER_DB: ${{ github.workspace }}/.tmp/ledger | |
MC_WATCHER_DB: ${{ github.workspace }}/.tmp/watcher | |
MC_MOBILECOIND_DB: ${{ github.workspace }}/.tmp/mobilecoind_db | |
steps: | |
- name: Checkout | |
uses: mobilecoinofficial/gh-actions/checkout@v0 | |
- name: Download latest linux release | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: | | |
mkdir -p "${DOWNLOAD_DIR}" | |
gh release download v6.0.1 \ | |
-p '${{ matrix.network.chain_id }}net-mobilecoind-linux-x86_64-*.tar.gz' \ | |
-O "${DOWNLOAD_DIR}/linux.tar.gz" | |
- name: Unpack mobilecoind | |
run: | | |
cd "${DOWNLOAD_DIR}" | |
tar --skip-old-files -xvzf linux.tar.gz | |
- name: Download current watcher and ledger databases | |
shell: bash | |
run: | | |
cd "${DOWNLOAD_DIR}" | |
# Download the current ledger db | |
echo "Downloading ledger database..." | |
export AZURE_STORAGE_CONNECTION_STRING='${{ secrets.MC_LEDGER_DB_AZURE_STORAGE_CONNECTION_STRING }}' | |
if az storage blob download -f ./ledger-data.mdb -c ${{ matrix.network.chain_id }} -n mcd/ledger/data.mdb --overwrite | |
then | |
ls -l ./ledger-data.mdb | |
md5sum ./ledger-data.mdb | |
mkdir -p "${MC_LEDGER_DB}" | |
mv ./ledger-data.mdb "${MC_LEDGER_DB}/data.mdb" | |
fi | |
# Download the current watcher db | |
echo "Downloading watcher database..." | |
if az storage blob download -f ./watcher-data.mdb -c ${{ matrix.network.chain_id }} -n mcd/watcher/data.mdb --overwrite | |
then | |
ls -l ./watcher-data.mdb | |
md5sum ./watcher-data.mdb | |
mkdir -p "${MC_WATCHER_DB}" | |
mv ./watcher-data.mdb "${MC_WATCHER_DB}/data.mdb" | |
fi | |
- name: Run mobilecoind mobilecoind-json - wait for ledger sync | |
shell: bash | |
env: | |
MC_FOG_INGEST_ENCLAVE_CSS: ./ingest-enclave.css | |
MC_CHAIN_ID: ${{ matrix.network.chain_id }} | |
MC_PEER: ${{ matrix.network.peers }} | |
MC_TX_SOURCE_URL: ${{ matrix.network.tx_source_urls }} | |
MC_QUORUM_SET: ${{ matrix.network.quorum_set }} | |
MC_POLL_INTERVAL: "1" | |
MC_LISTEN_URI: insecure-mobilecoind://127.0.0.1:3229/ | |
MC_IP_INFO_TOKEN: ${{ secrets.IP_INFO_TOKEN }} | |
MC_MOBILECOIND_URI: insecure-mobilecoind://127.0.0.1:3229/ | |
BLOCK_INFO_URL: ${{ matrix.network.block_info_url }} | |
MIN_SIGNATURES: ${{ matrix.network.min_signatures }} | |
RUST_LOG: error | |
run: | | |
set -e | |
pushd "${DOWNLOAD_DIR}/mobilecoind-linux/bin" | |
# Start mobilecoind | |
./mobilecoind & | |
# Capture pid | |
mc_pid=${!} | |
echo "${mc_pid}" | |
# Start mobilecoind-json | |
./mobilecoind-json --listen-host 127.0.0.1 --listen-port 9090 & | |
# Capture pid | |
mcj_pid=${!} | |
echo "${mcj_pid}" | |
echo "wait for mobilecoind to sync all the blocks" | |
"${GITHUB_WORKSPACE}/.internal-ci/util/wait-for-mobilecoind.sh" | |
echo "ledger is in sync, stop mobilecoind" | |
kill ${mcj_pid} | |
kill ${mc_pid} | |
md5sum "${MC_LEDGER_DB}/data.mdb" | |
md5sum "${MC_WATCHER_DB}/data.mdb" | |
echo "mobilecoind shutdown successfully" | |
- name: copy ledger/watcher data.mdb to Azure Blob Storage | |
shell: bash | |
run: | | |
# Sync to MC | |
pushd "${MC_LEDGER_DB}" | |
export AZURE_STORAGE_CONNECTION_STRING='${{ secrets.MC_LEDGER_DB_AZURE_STORAGE_CONNECTION_STRING }}' | |
az storage blob upload -f ./data.mdb -c ${{ matrix.network.chain_id }} -n mcd/ledger/data.mdb --overwrite | |
pushd "${MC_WATCHER_DB}" | |
az storage blob upload -f ./data.mdb -c ${{ matrix.network.chain_id }} -n mcd/watcher/data.mdb --overwrite | |
- name: Send failure notification | |
if: failure() | |
uses: slackapi/[email protected] | |
with: | |
payload: '{"text": "Github Actions Job - Refresh ledger bootstrap failed for ${{ matrix.network.chain_id }}"}' | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_OPS_MONITORING }} |