Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ just pre-commit # Run before committing

- **[DESIGN.md](DESIGN.md)** - Architecture and design decisions
- **[docs/GRPC_MULTIPLEXER.md](docs/GRPC_MULTIPLEXER.md)** - Full gRPC API reference
- **[docs/RUST_CLIENT.md](docs/RUST_CLIENT.md)** - Rust client integration guide
- **[docs/DEPLOYMENT.md](docs/DEPLOYMENT.md)** - Production deployment guide
- **[docs/MTLS.md](docs/MTLS.md)** - mTLS configuration

Expand Down
10 changes: 9 additions & 1 deletion docs/GRPC_MULTIPLEXER.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,15 @@ grpcurl -plaintext localhost:9001 list

### Rust Client Example

For a complete Rust client implementation, see the built-in benchmark client at `src/bin/bench-client.rs`. It demonstrates:
For a complete Rust client integration guide, see **[RUST_CLIENT.md](RUST_CLIENT.md)**. It covers:

- Proto compilation with `tonic-build`
- All RPC methods with code examples
- Arrow batch processing
- mTLS configuration
- Error handling

The built-in benchmark client at `src/bin/bench-client.rs` serves as a reference implementation demonstrating:

- Connecting to the gRPC multiplexer with/without TLS
- Creating Arrow IPC batches with LZ4 compression
Expand Down
Loading