-
Notifications
You must be signed in to change notification settings - Fork 66
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
l-monninger
wants to merge
2
commits into
main
Choose a base branch
from
l-monninger/ledger-increase-check
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
docker/build/suzuka-client-e2e-followers-consistent/Dockerfile
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
0
docker/compose/suzuka-full-node/docker-compose.faucet-replicas.yml
100644 → 100755
Empty file.
Empty file.
Empty file.
70 changes: 70 additions & 0 deletions
70
docker/compose/suzuka-full-node/docker-compose.ledger-should-progress.yml
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
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.
Empty file modified
0
docker/compose/suzuka-full-node/docker-compose.test-followers.yml
100644 → 100755
Empty file.
Empty file.
Empty file.
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
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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a purpose for this standalone script file, when the |
||
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.
Empty file.
Empty file.
Empty file.
Empty file modified
0
docker/compose/suzuka-indexer/docker-compose.local-development.indexer.yml
100644 → 100755
Empty file.
Empty file.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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.