A typed client for ClickHouse.
serde
for encoding/decoding rows.RowBinary
encoding.See more examples.
Client
```rust use clickhouse::Client;
let client = Client::default() .withurl("http://localhost:8123") .withuser("name") .withpassword("123") .withdatabase("test"); ```
```rust use serde::Deserialize; use clickhouse::Reflection;
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? { .. } ```
?fields
is replaced with no, name
(fields of Row
).?
is replaced with values in following bind()
calls.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?;
end()
isn't called the insertion will be aborted.max_insert_block_size
.``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); } ```
Inserter
ends an active insert in commit()
if thresholds (max_entries
, max_duration
) are reached.max_duration
) to avoid load spikes by parallel inserters.commit()
calls are inserted in the same INSERT
statement.rust
inserter.end().await?;
rust
client.query("DROP TABLE IF EXISTS some").execute().await?;
```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?);
```
lv_{sha1(query)}
to reuse the same live view by parallel watchers.