influxdb/influxdb_iox_client
Chunchun Ye b131895fc2
feat(flightsql): Support `GetPrimaryKeys` metadata endpoint with an empty RecordBatch (#7496)
* feat: add CommandGetPrimaryKeys metadata endpoint and tests

* chore: update schema for the returned record batch

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2023-04-11 14:13:44 +00:00
..
src feat(flightsql): Support `GetPrimaryKeys` metadata endpoint with an empty RecordBatch (#7496) 2023-04-11 14:13:44 +00:00
Cargo.toml chore(deps): Bump thiserror from 1.0.39 to 1.0.40 (#7375) 2023-03-30 10:43:28 +00:00
README.md fix: default the write cli comment to the http default port. (#7394) 2023-03-31 14:59:24 +00:00

README.md

InfluxDB IOx Client

This is the Rust client library for connecting to InfluxDB IOx.

We're attempting to support all apis as they are added and modified but this client is likely not 100% complete at any time.

Some apis are http (for instance the write) and some are gRPC. See the individual client modules for details.

Example: Using the Write Client

To write to IOx, create a connection and a write client, and then send line protocol. Please see the example on 'Client' struct that will work when running against all-in-one mode.