-
Notifications
You must be signed in to change notification settings - Fork 546
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
Internal docs for archive db apps #14269
Conversation
!ci-build-me |
!ci-build-me |
helm/cron_jobs/README.md
Outdated
There are replayer cron jobs for mainnet, devnet, and berkeley. These | ||
jobs are run daily, to replayer a day's worth of transactions. |
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.
There are replayer cron jobs for mainnet, devnet, and berkeley. These | |
jobs are run daily, to replayer a day's worth of transactions. | |
There are replayer cron jobs for Mainnet, Devnet, and Berkeley. These | |
jobs are run daily to replay a day's worth of transactions. |
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.
Fixed in my own commit. I'm keeping the comma, though :-)
helm/cron_jobs/README.md
Outdated
a network, and loads the data into Postgresql. That results in an | ||
archive database. The most recent replayer checkpoint file is | ||
downloaded, which provides the starting point for the replayer. When |
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.
a network, and loads the data into Postgresql. That results in an | |
archive database. The most recent replayer checkpoint file is | |
downloaded, which provides the starting point for the replayer. When | |
a network, and loads the data into PostgreSQL. That results in an | |
archive database. The most recent replayer checkpoint file is | |
downloaded, which provides the starting point for the replayer. When |
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.
Fixed in my commit.
helm/cron_jobs/README.md
Outdated
There is a separate checkpoint file bucket for each network. Bot the | ||
checkpoint files and error files for a given network are uploaded to | ||
the same bucket. |
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.
There is a separate checkpoint file bucket for each network. Bot the | |
checkpoint files and error files for a given network are uploaded to | |
the same bucket. | |
There is a separate checkpoint file bucket for each network. Both the | |
checkpoint files and error files for a given network are uploaded to | |
the same bucket. |
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.
Fixed in my own commit.
(* missing_blocks_auditor looks for blocks without parent blocks in an | ||
archive database. | ||
|
||
The app also looks for blocks marked as pending that are lower |
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 app also looks for blocks marked as pending that are lower | |
The missing blocks auditor app also looks for blocks marked as pending that are lower |
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 app" is the ML file that is the missing blocks auditor app?
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 .ml file gets compiled to an executable program. "The app" is the executable.
!ci-build-me |
!ci-build-me |
!ci-build-me |
Add internal documentation for
archive_blocks
,extract_blocks
, andmissing_blocks_auditor
.