diff --git a/dysnix/agave/Chart.yaml b/dysnix/agave/Chart.yaml index d955f917..7a2d8468 100644 --- a/dysnix/agave/Chart.yaml +++ b/dysnix/agave/Chart.yaml @@ -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: diff --git a/dysnix/agave/values.yaml b/dysnix/agave/values.yaml index 3c625755..b6e3853e 100644 --- a/dysnix/agave/values.yaml +++ b/dysnix/agave/values.yaml @@ -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 ## @@ -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 ##