Skip to content

Commit

Permalink
[agave] fix yellowstone grpc config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
VladStarr committed Dec 2, 2024
1 parent da3f3be commit 16ee990
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 20 deletions.
2 changes: 1 addition & 1 deletion dysnix/agave/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: agave
description: Agave (previously Solana) blockchain node Helm chart
type: application

version: 0.1.1
version: 0.1.2
appVersion: v2.0.18

keywords:
Expand Down
47 changes: 28 additions & 19 deletions dysnix/agave/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,10 @@ agaveArgs:
enable-extended-tx-metadata-storage: false
enable-rpc-transaction-history: false
rpc-pubsub-enable-block-subscription: false
maximum-local-snapshot-age: 1500 # re-download snapshot when our local is >1500 slots old
minimal-snapshot-download-speed: 104857600 # 100 MB/s
account-index: [] # indexing for better rpc performance
maximum-local-snapshot-age: 1500 # re-download snapshot when our local is >1500 slots old
minimal-snapshot-download-speed: 104857600 # 100 MB/s
account-index: [] # indexing for better rpc performance
# geyser-plugin-config: /plugins/yellowstone-grpc/config.json # uncomment to load Yellowstone GRPC plugin

## Graceful shutdown options
##
Expand Down Expand Up @@ -386,26 +387,34 @@ plugins:
##
listenIP: $(MY_POD_IP)
## @param plugins.yellowstoneGRPC.config [string, default: look in values.yaml] Yellowstone gRPC config.json file
## will be mounted at /plugins/yellowstone-grpc/config.json path
##
config: |-
{
"libpath": "lib/libyellowstone_grpc_geyser.so",
"log": {
"level": "info"
"libpath": "lib/libyellowstone_grpc_geyser.so",
"log": {
"level": "info"
},
"grpc": {
"address": "LISTEN_IP:10000",
"compression": {
"accept": ["gzip", "zstd"],
"send": ["gzip", "zstd"]
},
"grpc": {
"address": "LISTEN_IP:10000",
"max_decoding_message_size": "4_194_304",
"snapshot_plugin_channel_capacity": null,
"snapshot_client_channel_capacity": "50_000_000",
"channel_capacity": "100_000",
"unary_concurrency_limit": 100,
"unary_disabled": false
},
"prometheus": {
"address": "LISTEN_IP:8999"
},
"block_fail_action": "log"
"max_decoding_message_size": "4_194_304",
"snapshot_plugin_channel_capacity": null,
"snapshot_client_channel_capacity": "50_000_000",
"channel_capacity": "100_000",
"unary_concurrency_limit": 100,
"unary_disabled": false,
"x_token": "",
"filter_name_size_limit": 32,
"filter_names_size_limit": 1024,
"filter_names_cleanup_interval": "1s"
},
"prometheus": {
"address": "LISTEN_IP:8999"
}
}
## Jito gRPC plugin config
##
Expand Down

0 comments on commit 16ee990

Please sign in to comment.