---
title: "A Rust Client for InfluxDB 3"
url: https://daily.dev/posts/a-rust-client-for-influxdb-3-gxsraodkt
source_url: https://www.influxdata.com/blog/rust-client-influxdb-3
type: article
source: "InfluxData"
published: 2026-08-13T07:18:04.609Z
updated: 2026-08-13T07:18:33.419Z
tags: ["rust", "influxdb", "apache-arrow"]
reading_time: 13
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# A Rust Client for InfluxDB 3

**[InfluxData](https://daily.dev/sources/influxdb)** · 13 min read · 0 upvotes · 0 comments

## Summary

InfluxData released influxdb3-client, a new async Rust client for InfluxDB 3 Core and Enterprise, mirroring the feature set of the existing official Go and Python clients with an idiomatic Rust API. It targets edge gateways, embedded systems, and high-throughput ingest pipelines where Rust already runs, such as PLC bridges, satellite ground segments, and robotics telemetry. The client supports line protocol, Point builders, and Polars DataFrame writes, SQL and InfluxQL queries returning native Arrow RecordBatches, streaming for large results, configurable retry with backoff, and backpressure controls like batch_size and max_inflight. As of version 0.2, writes default to the V2 /api/v2/write endpoint so the same binary works against InfluxDB 3 Core/Enterprise as well as Clustered and Cloud Dedicated/Serverless, with V3-only extras like no_sync available via a config flag. It requires Rust 1.89 or later and is available on crates.io.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://www.influxdata.com/blog/rust-client-influxdb-3>

## Questions this post answers

### Is there an official Rust client for InfluxDB 3?

Yes, InfluxData released influxdb3-client, an async Rust client for InfluxDB 3 Core and Enterprise that mirrors the feature set of the official Go and Python clients. It requires Rust 1.89 or later, is available on crates.io, and supports line protocol, Point builders, SQL/InfluxQL queries returning Arrow RecordBatches, and an optional polars feature for DataFrame workflows.

_Rust developers picking a database client can track new library releases like this one on daily.dev._

### Does the influxdb3-client Rust library write to InfluxDB 3 using the V2 or V3 API by default?

As of version 0.2, writes default to the V2 /api/v2/write endpoint, meaning the same client works unchanged against InfluxDB 3 Core, Enterprise, Clustered, and Cloud Dedicated/Serverless. Setting write_use_v2_api(false), or INFLUX_WRITE_USE_V2_API=false in the environment, opts into the V3 endpoint and unlocks V3-only behaviors like no_sync() and partial-write reporting.

_Engineers tuning database write paths can follow API default changes like this via daily.dev._

### How do I write high-throughput sensor data to InfluxDB 3 from Rust without running out of memory?

Use the influxdb3-client write builder's batch_size and max_inflight options to cap points per HTTP request and concurrent in-flight requests, since large inputs are split into batches with only one batch buffer held in memory at a time. Wrap the Client in an Arc, spread chunks across tokio tasks, and cap concurrency with a Semaphore; on the V3 endpoint, no_sync() trades durability for speed by acknowledging before the WAL syncs.

_Developers designing ingest pipelines can find practical Rust patterns like this through daily.dev._

## Similar posts on daily.dev

- [Engineering a Time Series Database Using Open Source: Rebuilding InfluxDB 3 in Apache Arrow and Rust](https://daily.dev/posts/engineering-a-time-series-database-using-open-source-rebuilding-influxdb-3-in-apache-arrow-and-rust-bkbnkw3m0) · InfoQ · 1 upvotes · 0 comments

---

Tags: [#rust](https://daily.dev/tags/rust), [#influxdb](https://daily.dev/tags/influxdb), [#apache-arrow](https://daily.dev/tags/apache-arrow)

[View this post on daily.dev](https://daily.dev/posts/a-rust-client-for-influxdb-3-gxsraodkt)
