-
|
I am a bit confused about choosing the correct client library for a new Project. As our Backend will be written in Rust, which client crate should I use to avoid rewriting the whole thing? In this repo there is a influxdb3_client crate. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Hi @chwzr -- Here is our docs page about v3 client libraries. The ones features are maintained via the influx community primarily. There isn't a rust client on that docs page or in the community. You are welcome to use the in-tree rust client you identified in the influxdb core repo. We use that client internally for the cli tools and for integration testing. You may create a new If you see gaps in the client, please let us know. We want to enable everyone to access core and enterprise with tooling such as this. |
Beta Was this translation helpful? Give feedback.
-
|
@chwzr -- One of my teammates mentions a caveat or two (paraphrasing):
|
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the quick feedback! |
Beta Was this translation helpful? Give feedback.
Hi @chwzr --
Here is our docs page about v3 client libraries. The ones features are maintained via the influx community primarily. There isn't a rust client on that docs page or in the community. You are welcome to use the in-tree rust client you identified in the influxdb core repo. We use that client internally for the cli tools and for integration testing.
You may create a new
Clientand use it.https://github.com/influxdata/influxdb/blob/37db7bfa24388a9165734f7b42d12ba0b501934b/influxdb3_client/src/lib.rs#L95C1-L97C84
If you see gaps in the client, please let us know. We want to enable everyone to access core and enterprise with tooling such as this.