Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ledger Increase Check #717

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified docker/README.md
100644 → 100755
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The execution flag change by chmod looks spurious, let's revert that.

Empty file.
Empty file modified docker/build/bridge-service/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/bridge-setup/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/helios/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/m1-da-light-node-celestia-appd/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/m1-da-light-node-celestia-bridge/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/m1-da-light-node/Dockerfile
100644 → 100755
Empty file.
Empty file.
Empty file modified docker/build/suzuka-client-e2e-simple-interaction/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/suzuka-config/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/suzuka-faucet-service/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/suzuka-full-node-setup/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/suzuka-full-node/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/suzuka-indexer/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/build/wait-for-celestia-light-node/Dockerfile
100644 → 100755
Empty file.
Empty file modified docker/compose/bridge/docker-compose.helios.yml
100644 → 100755
Empty file.
Empty file modified docker/compose/bridge/docker-compose.mvt-remote.yml
100644 → 100755
Empty file.
Empty file modified docker/compose/bridge/docker-compose.setup.yml
100644 → 100755
Empty file.
Empty file modified docker/compose/bridge/docker-compose.yml
100644 → 100755
Empty file.
Empty file modified docker/compose/grafana-alloy/README.md
100644 → 100755
Empty file.
Empty file modified docker/compose/grafana-alloy/config.alloy
100644 → 100755
Empty file.
Empty file modified docker/compose/grafana-alloy/docker-compose.yml
100644 → 100755
Empty file.
Empty file modified docker/compose/grafana-alloy/img/1.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified docker/compose/grafana-alloy/img/2.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified docker/compose/grafana-alloy/img/3.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified docker/compose/grafana-alloy/img/4.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file modified docker/compose/suzuka-full-node/docker-compose.follower.yml
100644 → 100755
Empty file.
Empty file modified docker/compose/suzuka-full-node/docker-compose.leader.yml
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
services:

# This service checks if the ledger version has increased every LEDGER_INCREASE_PERIOD_SECONDS
ledger-should-progress:
image: alpine:latest
container_name: ledger-should-progress
command: >
sh -c '
# install jq and curl for busybox
apk add --no-cache jq curl

# sleep a little to allow the full node to get through some startup
sleep 20

LAST_LEDGER_VERSION=0
# check the ledger version has increased every LEDGER_INCREASE_PERIOD_SECONDS
while true; do
sleep $${LEDGER_INCREASE_PERIOD_SECONDS}

# Get the current ledger version from the response using curl and busybox-friendly parsing
echo "$$(curl -s $${SUZUKA_FULL_NODE_CONNECTION}/v1)"
CURRENT_LEDGER_VERSION=$$(curl -s $${SUZUKA_FULL_NODE_CONNECTION}/v1 | jq -r ".ledger_version" | tr -d "\"")

# Check if we got a valid ledger version
if [ -z "$$CURRENT_LEDGER_VERSION" ]; then
echo "Failed to retrieve the current ledger version."
exit 1
fi

# Compare the current ledger version with the last one
if [ "$$CURRENT_LEDGER_VERSION" -le "$$LAST_LEDGER_VERSION" ]; then
echo "Ledger version has not increased in the last $${LEDGER_INCREASE_PERIOD_SECONDS} seconds."
exit 1
else
echo "Ledger version has increased from $$LAST_LEDGER_VERSION to $$CURRENT_LEDGER_VERSION."
fi

# Update the last ledger version to the current one
LAST_LEDGER_VERSION=$$CURRENT_LEDGER_VERSION
done
'
environment:
DOT_MOVEMENT_PATH: /.movement
LEDGER_INCREASE_PERIOD_SECONDS: ${LEDGER_INCREASE_PERIOD_SECONDS-300}
SUZUKA_FULL_NODE_CONNECTION: http://suzuka-full-node:30731
volumes:
- ${DOT_MOVEMENT_PATH}:/.movement
depends_on:
suzuka-full-node:
condition: service_healthy
healthcheck:
test: ["CMD", "echo", "true"]
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s

# Here we use a dependent service to trigger application crash, i.e., throughout docker-compose
ledger-should-progress-watcher:
image: busybox
container_name: ledger-should-progress-watcher
command: >
sh -c '
while true; do
sleep 1000
done
'
depends_on:
ledger-should-progress:
condition: service_healthy
Empty file modified docker/compose/suzuka-full-node/docker-compose.local.yml
100644 → 100755
Empty file.
Empty file.
Empty file modified docker/compose/suzuka-full-node/docker-compose.test.yml
100644 → 100755
Empty file.
Empty file modified docker/compose/suzuka-full-node/docker-compose.yml
100644 → 100755
Empty file.
32 changes: 32 additions & 0 deletions docker/compose/suzuka-full-node/ledger-should-progress.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# install jq if in busybox
if [ -f /etc/alpine-release ]; then
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a purpose for this standalone script file, when the ledger-should-progress inlines a copy of it?

echo "Installing jq using apk (Alpine Linux environment)..."
apk add --no-cache jq
else
echo "BusyBox detected, but not Alpine Linux. Manual jq installation required."
fi

LAST_LEDGER_VERSION=0
# check the ledger version has increased every LEDGER_INCREASE_PERIOD_SECONDS
while true; do
sleep ${LEDGER_INCREASE_PERIOD_SECONDS}

# Get the current ledger version from the response using curl and busybox-friendly parsing
echo $(curl -s ${SUZUKA_FULL_NODE_CONNECTION}/v1 | jq -r '.ledger_version' | tr -d '"')
CURRENT_LEDGER_VERSION=$(curl -s ${SUZUKA_FULL_NODE_CONNECTION}/v1 | jq -r '.ledger_version' | tr -d '"')

# Check if we got a valid ledger version
if [ -z "$CURRENT_LEDGER_VERSION" ]; then
echo "Failed to retrieve the current ledger version."
exit 1
fi

# Compare the current ledger version with the last one
if [ "$CURRENT_LEDGER_VERSION" -le "$LAST_LEDGER_VERSION" ]; then
echo "Ledger version has not increased in the last ${LEDGER_INCREASE_PERIOD_SECONDS} seconds."
exit 1
fi

# Update the last ledger version to the current one
LAST_LEDGER_VERSION=$CURRENT_LEDGER_VERSION
done
Empty file modified docker/compose/suzuka-indexer/.remote-suzuka-node.env
100644 → 100755
Empty file.
Empty file modified docker/compose/suzuka-indexer/README.md
100644 → 100755
Empty file.
Empty file modified docker/compose/suzuka-indexer/docker-compose.hasura.yml
100644 → 100755
Empty file.
Empty file modified docker/compose/suzuka-indexer/docker-compose.indexer.yml
100644 → 100755
Empty file.
Empty file.
Empty file modified docker/compose/suzuka-indexer/indexer-config.json
100644 → 100755
Empty file.