Releases: near/read-rpc
Releases · near/read-rpc
v0.2.11
Supported Nearcore Version
- nearcore v1.40.0
- rust v1.77.0
What's Changed
- Change main data source for
transaction_details
from database to the object storage (GCS Bucket)- Add
tx-details-storage
library to handle the GCS communication - Update
rpc-server
to read from the GCS Bucket when transaction is requested - Keep the database as a backup data source for the migration period
- Add metric
legacy_database_tx_details
to track the number of requests to the database to monitor the transition progress (expected to decrease over time to zero) - Extend the number of save attempts to ensure the transaction is saved to the GCS Bucket and is deserializable correctly
- Add
- Refactor
tx-indexer
to store the transaction details in the GCS Bucket- Still storing
ExecutionOutcome
andReceipt
in the database
- Still storing
v0.2.10
v0.2.9
v0.2.8
v0.2.7
v0.2.6
v0.2.5
What's Changed
- Fix transactions request parser
- Fix tx request returns "Invalid params" to a totally valid request
- Fix Dockerfile for read-rpc server
- Fix proxy broadcast-tx-commit
- Improvement logs for shadow_compare_results_handler
- Extending and improving optimistic handler
- Add waiting until node will be fully synced
v0.2.4
v0.2.3
What's Changed
1. Default Logging Level:
- Added RUST_LOG=info as the default directive to enhance visibility and provide informative logs for better troubleshooting and monitoring.
2. Enhanced Near-State-Indexer Logs:
- Included additional informational logs at the start of the near-state-indexer process, providing deeper insights into its functionality and progress.
3. Optimistic Block Update Handling:
- Implemented a handler to check the regularity of optimistic block updates.
- If updates are irregular, the system initiates an update task to synchronize the final block from the lake, ensuring data consistency and integrity.
v0.2.2
What's Changed
- nearcore dependencies update which include necessary fixes for near-indexer.
More details read in this PR: near/nearcore#10798