8 stable releases (3 major)

new 4.0.2 May 9, 2024
4.0.0 Mar 18, 2024
3.1.0 Nov 23, 2023
2.1.3 Jan 4, 2023
0.0.1 Aug 4, 2022

#217 in Database interfaces

Download history 37/week @ 2024-02-05 1/week @ 2024-02-12 85/week @ 2024-02-26 17/week @ 2024-03-04 93/week @ 2024-03-11 138/week @ 2024-03-18 24/week @ 2024-03-25 101/week @ 2024-04-01 70/week @ 2024-04-08 25/week @ 2024-04-15 239/week @ 2024-04-22 132/week @ 2024-04-29 425/week @ 2024-05-06

822 downloads per month

Apache-2.0

205KB
4.5K SLoC

QuestDB Client Library for Rust

Official Rust client for QuestDB, an open-source SQL database designed to process time-series data, faster.

The client library is designed for fast ingestion of data into QuestDB via the InfluxDB Line Protocol (ILP).

Quick Start

To start using questdb-rs, add it as a dependency of your project:

cargo add questdb-rs

Then you can try out this quick example, which connects to a QuestDB server running on your local machine:

use questdb::{
    Result,
    ingress::{
        Sender,
        Buffer,
        TimestampNanos}};

fn main() -> Result<()> {
   let mut sender = Sender::from_conf("http::addr=localhost:9000;")?;
   let mut buffer = Buffer::new();
   buffer
       .table("sensors")?
       .symbol("id", "toronto1")?
       .column_f64("temperature", 20.0)?
       .column_i64("humidity", 50)?
       .at(TimestampNanos::now())?;
   sender.flush(&mut buffer)?;
   Ok(())
}

Docs

Most of the client documentation is on the ingress module page.

Crate features

This Rust crate supports a number of optional features, in most cases linked to additional library dependencies.

For example, if you want to work with Chrono timestamps, use:

cargo add questdb-rs --features chrono_timestamp

Default-enabled features

  • ilp-over-http: Enables ILP/HTTP support via the ureq crate.
  • tls-webpki-certs: Supports using the webpki-roots crate for TLS certificate verification.

Optional features

These features are opt-in:

  • chrono_timestamp: Allows specifying timestamps as chrono::Datetime objects.
  • tls-native-certs: Supports validating TLS certificates against the OS's certificates store.
  • insecure-skip-verify: Allows skipping server certificate validation in TLS (this compromises security).

C, C++ and Python APIs

This crate is also exposed as a C and C++ API and in turn exposed to Python.

Community

If you need help, have additional questions or want to provide feedback, you may find us on Slack.

You can also sign up to our mailing list to get notified of new releases.

Dependencies

~8–18MB
~341K SLoC