[−][src]Crate clickhouse_rs
clickhouse-rs
Tokio based asynchronous Yandex ClickHouse client library for rust programming language.
Installation
Library hosted on crates.io.
[dependencies]
clickhouse-rs = "*"
Supported data types
- Date
- DateTime
- Decimal(P, S)
- Float32, Float64
- String, FixedString(N)
- UInt8, UInt16, UInt32, UInt64, Int8, Int16, Int32, Int64
- Nullable(T)
- Array(UInt/Int/String/Date/DateTime)
DNS
schema://user:password@host[:port]/database?param1=value1&...¶mN=valueN
parameters:
-
compression- Whether or not use compression (defaults tonone). Possible choices:nonelz4
-
connection_timeout- Timeout for connection (defaults to500 ms) -
keepalive- TCP keep alive timeout in milliseconds. -
nodelay- Whether to enableTCP_NODELAY(defaults totrue). -
pool_max- Lower bound of opened connections forPool(defaults to10). -
pool_min- Upper bound of opened connections forPool(defaults to20). -
ping_before_query- Ping server every time before execute any query. (defaults totrue). -
send_retries- Count of retry to send request to server. (defaults to3). -
retry_timeout- Amount of time to wait before next retry. (defaults to5 sec). -
ping_timeout- Timeout for ping (defaults to500 ms).
example:
tcp://user:password@host:9000/clicks?compression=lz4&ping_timeout=42ms
Example
extern crate clickhouse_rs; extern crate futures; use futures::Future; use clickhouse_rs::{Pool, types::Block}; fn main() { let ddl = " CREATE TABLE IF NOT EXISTS payment ( customer_id UInt32, amount UInt32, account_name Nullable(FixedString(3)) ) Engine=Memory"; let block = Block::new() .add_column("customer_id", vec![1_u32, 3, 5, 7, 9]) .add_column("amount", vec![2_u32, 4, 6, 8, 10]) .add_column("account_name", vec![Some("foo"), None, None, None, Some("bar")]); let pool = Pool::new(database_url); let done = pool .get_handle() .and_then(move |c| c.execute(ddl)) .and_then(move |c| c.insert("payment", block)) .and_then(move |c| c.query("SELECT * FROM payment").fetch_all()) .and_then(move |(_, block)| { for row in block.rows() { let id: u32 = row.get("customer_id")?; let amount: u32 = row.get("amount")?; let name: Option<&str> = row.get("account_name")?; println!("Found payment {}: {} {:?}", id, amount, name); } Ok(()) }) .map_err(|err| eprintln!("database error: {}", err)); tokio::run(done) }
Modules
| errors | Error types. |
| types | Clickhouse types. |
Structs
| Client | |
| ClientHandle | Clickhouse client handle. |
| Pool | Asynchronous pool of Clickhouse connections. |