yellowstone-grpc/README.md

165 lines
6.2 KiB
Markdown
Raw Normal View History

2023-04-10 10:41:27 -07:00
# Yellowstone Dragon's Mouth - a Geyser based gRPC interface for Solana
2023-02-22 04:14:56 -08:00
2023-03-20 08:40:48 -07:00
This repo contains a fully functional gRPC interface for Solana. It is built around Solana's Geyser interface. In this repo we have the plugin as well as sample clients for multiple languages.
2023-02-22 04:14:56 -08:00
2023-03-20 08:40:48 -07:00
It provides the ability to get slots, blocks, transactions, and account update notifications over a standardised path.
2023-02-22 04:14:56 -08:00
2023-03-20 08:40:48 -07:00
For additional documentation, please see: https://docs.triton.one/rpc-pool/grpc-subscriptions
2022-10-19 07:34:41 -07:00
### Validator
Current plugin version (`+solana.1.16.x`) use validator with backported `ReplicaBlockInfoV3` to Geyser interface — https://github.com/solana-labs/solana/pull/33359. As result it's not compatible with original validator from Solana Labs and would not work. You need to compile validator from the source code and can find patched releases in `Triton One` Solana fork: https://github.com/rpcpool/solana-public/tree/v1.16.16-geyser-block-v3.
2022-10-19 07:34:41 -07:00
```bash
2023-05-25 10:11:05 -07:00
$ solana-validator --geyser-plugin-config yellowstone-grpc-geyser/config.json
2022-10-19 07:34:41 -07:00
```
2023-01-05 17:40:20 -08:00
### Plugin config check
```
2023-05-25 10:11:05 -07:00
cargo-fmt && cargo run --bin config-check -- --config yellowstone-grpc-geyser/config.json
2023-01-05 17:40:20 -08:00
```
### Block reconstruction
Geyser interface on block update do not provide detailed information about transactions and accounts updates. To provide this information with block message we need to collect all messages and expect specified order. By default if we failed to reconstruct full block we log error message and increase `invalid_full_blocks_total` counter in prometheus metrics. If you want to panic on invalid reconstruction you can change option `block_fail_action` in config to `panic` (default value is `log`).
2022-10-19 15:19:59 -07:00
### Filters
See [yellowstone-grpc-proto/proto/geyser.proto](yellowstone-grpc-proto/proto/geyser.proto).
2022-10-19 15:19:59 -07:00
#### Slots
Currently all slots are broadcasted.
2022-10-19 15:19:59 -07:00
#### Account
Accounts can be filtered by:
- `account` — acount Pubkey, match to any Pubkey from the array
- `owner` — account owner Pubkey, match to any Pubkey from the array
- `filters` — same as `getProgramAccounts` filters, array of `dataSize` or `Memcmp` (bytes, base58, base64 are supported)
2022-10-19 15:19:59 -07:00
If all fields are empty then all accounts are broadcasted. Otherwise fields works as logical `AND` and values in arrays as logical `OR` (except values in `filters` which works as logical `AND`).
2022-10-20 16:43:19 -07:00
#### Transactions
- `vote` — enable/disable broadcast `vote` transactions
- `failed` — enable/disable broadcast `failed` transactions
- `signature` — match only specified transaction
2022-10-25 10:52:29 -07:00
- `account_include` — filter transactions which use any account
- `account_exclude` — filter transactions which do not use any account
- `account_required` — require all accounts used in transaction
If all fields are empty then all transactions are broadcasted. Otherwise fields works as logical `AND` and values in arrays as logical `OR`.
2022-10-20 18:06:23 -07:00
#### Blocks
- `account_include` — filter transactions and accounts which use any of listed accounts
- `include_transactions` — include all transactions
- `include_accounts` — include all accounts updates
- `include_entries` — include all entries
Currently all blocks are broadcasted.
2022-10-25 10:52:29 -07:00
#### Blocks meta
Same as `Blocks` but without `transactions`.
2022-10-25 10:52:29 -07:00
### Limit filters
It's possible to add limits for filters in config. If `filters` field is omitted then filters doesn't have any limits.
```json
"grpc": {
"filters": {
"accounts": {
"max": 1,
"any": false,
"account_max": 10,
"account_reject": ["TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"],
"owner_max": 10,
"owner_reject": ["11111111111111111111111111111111"]
},
"slots": {
"max": 1
},
"transactions": {
"max": 1,
"any": false,
"account_include_max": 10,
"account_include_reject": ["TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"],
"account_exclude_max": 10
},
"blocks": {
"max": 1
}
}
}
```
### Examples
- [Go](examples/golang)
- [Rust](examples/rust)
- [TypeScript](examples/typescript)
2023-10-14 00:39:09 -07:00
### gRPC Tools
#### Kafka
In addition to gRPC Geyser Plugin we provide Kafka tool. This tool can works in 3 modes:
- `grpc2kafka` — connect to gRPC with specified filter and sent all incoming messages to the Kafka
- `dedup` — consume messages from Kafka and sent deduplicated messages to another topic (right now only support `memory` as deduplication backend)
- `kafka2grpc` — provide gRPC endpoint with sending messages from Kafka
```bash
$ cargo run --bin grpc-kafka -- --help
2023-10-14 00:39:09 -07:00
Yellowstone gRPC Kafka Tool
Usage: grpc-kafka [OPTIONS] --config <CONFIG> <COMMAND>
Commands:
dedup Receive data from Kafka, deduplicate and send them back to Kafka
grpc2kafka Receive data from gRPC and send them to the Kafka
kafka2grpc Receive data from Kafka and send them over gRPC
help Print this message or the help of the given subcommand(s)
Options:
-c, --config <CONFIG> Path to config file
-h, --help Print help
-V, --version Print version
```
#### Development
```bash
# run kafka locally
2023-10-14 00:39:09 -07:00
docker-compose -f ./yellowstone-grpc-tools/docker-kafka.yml up
# create topic
kafka_2.13-3.5.0/bin/kafka-topics.sh --bootstrap-server localhost:29092 --create --topic grpc1
# send messages from gRPC to Kafka
2023-10-14 00:39:09 -07:00
cargo run --bin grpc-kafka -- --config yellowstone-grpc-tools/config-kafka.json grpc2kafka
# read messages from Kafka
kafka_2.13-3.5.0/bin/kafka-console-consumer.sh --bootstrap-server localhost:29092 --topic grpc1
```
### License
This project and all source code in this repository is licensed as follows:
Copyright 2023 Triton One Limited
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.