feat(tron): add TRON Full/Lite node runner blueprint#252
Open
snese wants to merge 1 commit into
Open
Conversation
6ee18c3 to
bc28c24
Compare
bc28c24 to
29cf96a
Compare
Add a Node Runner Blueprint for TRON (java-tron) supporting single-node,
highly available (ASG + ALB), and snapshot-node deployments. Adapted from
the BSC blueprint with the VeChain node-type pattern, and aligned with the
ethereum/tezos S3 sync-node pattern for repeatable bootstrap.
- Default to AWS Graviton (ARM64): Amazon Corretto 17, G1GC (not CMS, which
is removed in JDK 17), and the FullNode-aarch64.jar release; ROCKSDB engine
(the generic FullNode.jar bundles an x86-only rocksdb native lib)
- Node types: Lite FullNode and FullNode via TRON_NODE_CONFIGURATION
- Networks: mainnet and Nile testnet
- Snapshot bootstrap via TRON_SNAPSHOT_TYPE: none | public | s3
- public: aria2c multi-connection (Lite, ~3x) or disk-safe streaming (Full),
pigz decompression, auto-discovery of the latest official backup dir
- s3: private per-account staging bucket populated by the snapshot node,
stored as multithreaded zstd and restored via s5cmd (transfer-bound)
- Security group: P2P 18888 (TCP/UDP) public; HTTP 8090 and gRPC 50051
restricted to the VPC; ALB health check on /wallet/getnowblock
- CloudWatch dashboard and sync checker (block height / blocks behind)
- cdk-nag clean with documented suppressions; unit tests for all four stacks
- README with Well-Architected 6-pillar checklist and architecture diagrams
29cf96a to
7695bb1
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Implements #251.
Adds a Node Runner Blueprint for TRON (java-tron): single-node, Highly Available (ASG + internal ALB), and an S3 snapshot-staging node. Adapted from the BSC blueprint with the VeChain node-type pattern and the ethereum/tezos S3 sync-node pattern.
Highlights
FullNode-aarch64.jar(the generic jar bundles an x86-only rocksdbjni), RocksDBTRON_SNAPSHOT_TYPE):none|public(aria2c + pigz) |s3(private staging node, multithreaded zstd + s5cmd)Testing
Deploy-verified end-to-end in us-east-1: mainnet (Lite, Full, HA via ALB) and Nile testnet, including S3 snapshot staging/restore.