solana-accountsdb-connector/service-mango-fills/README.md

36 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2023-01-11 07:40:36 -08:00
# service-mango-fills
2022-03-28 10:58:14 -07:00
This module parses event queues and exposes individual fills on a websocket.
2023-01-11 07:40:36 -08:00
## Setup
2022-03-28 10:58:14 -07:00
2023-01-11 07:40:36 -08:00
1. Prepare the connector configuration file.
[Here is an example](service-mango-fills/example-config.toml).
- `bind_ws_addr` is the listen port for the websocket clients
- `rpc_ws_url` is unused and can stay empty.
- `connection_string` for your `grpc_sources` must point to the gRPC server
address configured for the plugin.
- `rpc_http_url` must point to the JSON-RPC URL.
- `program_id` must match what is configured for the gRPC plugin
- `markets` need to contain all observed perp markets
2. Start the service binary.
Pass the path to the config file as the first argument. It logs to stdout. It
should be restarted on exit.
3. Monitor the logs
`WARN` messages can be recovered from. `ERROR` messages need attention. The
logs are very spammy changing the default log level is recommended when you
dont want to analyze performance of the service.
## TODO
- [] startup logic, dont accept market subscriptions before first snapshot
2022-03-28 10:58:14 -07:00
- [] failover logic, kill all websockets when we receive a later snapshot, more
frequent when running on home connections
- [] track latency accountwrite -> websocket
2023-01-11 07:40:36 -08:00
- [] create new model for fills so snapshot maps can be combined per market