clickhouse.rs

Build status Crate info Documentation

A typed client for ClickHouse.

Features

Examples

See more examples.

Create Client

```rust use clickhouse::Client;

let client = Client::default() .withurl("http://localhost:8123") .withuser("name") .withpassword("123") .withdatabase("test"); ```

Select rows

```rust use serde::Deserialize; use clickhouse::Reflection;

[derive(Reflection, Deserialize)]

struct Row<'a> { no: u32, name: &'a str, }

let mut cursor = client .query("SELECT ?fields FROM some WHERE no BETWEEN ? AND ?") .bind(500) .bind(504) .fetch::>()?;

while let Some(row) = cursor.next().await? { .. } ```

Insert a batch

rust let mut insert = client.insert("some")?; insert.write(&Row { no: 0, name: "foo" }).await?; insert.write(&Row { no: 1, name: "bar" }).await?; insert.end().await?;

Infinite inserting

``rust let mut inserter = client.inserter("some")? .with_max_entries(150_000) //250_000by default .with_max_duration(Duration::from_secs(15)); //10s` by default

inserter.write(&Row { no: 0, name: "foo" }).await?; inserter.write(&Row { no: 1, name: "bar" }).await?; let stats = inserter.commit().await?; if stats.entries > 0 { println!("{} entries ({} transactions) have been inserted", stats.entries, stats.transactions); } ```

Perform DDL

rust client.query("DROP TABLE IF EXISTS some").execute().await?;

Live views

```rust let mut cursor = client .watch("SELECT max(no), argMax(name, no) FROM some") .fetch::>()?;

let (version, row) = cursor.next().await?.unwrap(); println!("live view updated: version={}, row={:?}", version, row);

// Use only_events() to iterate over versions only. let mut cursor = client.watch("someliveview").limit(20).only_events().fetch()?; println!("live view updated: version={:?}", cursor.next().await?); ```