Crate ceresdb_client
source ·Expand description
This crate provides an user-friendly client for CeresDB.
With this crate, you can access a standalone CeresDB or a CeresDB cluster and manipulates the data in it. And the underlying communication between the client the CeresDB servers is based on the gRPC, and the protocol is defined in the ceresdbproto.
Choose Mode
Two access Mode
s are provided by the client, Proxy
and Direct
:
- When accessing CeresDB cluster by
Direct
mode, the requests will be sent directly to the right CeresDB instance determined by routing information. - When accessing CeresDB by
Proxy
mode, the requests are just sent to any one CeresDB instance, which takes the responsibilities for forwarding the requests.
If the client can’t access the CeresDB server directly because of the
network partition, Proxy
mode is the only choice. Otherwise, Direct
mode
is suggested for better performance.
Usage
Build the client, and then manipulate the CeresDB by writing and querying.
Example
Here is an example to create a table in CeresDB by the client.
let client = Builder::new("127.0.0.1:8831".to_string(), Mode::Direct).build();
let rpc_ctx = RpcContext::default().database("public".to_string());
let create_table_sql = r#"CREATE TABLE IF NOT EXISTS ceresdb (
str_tag string TAG,
int_tag int32 TAG,
var_tag varbinary TAG,
str_field string,
int_field int32,
bin_field varbinary,
t timestamp NOT NULL,
TIMESTAMP KEY(t)) ENGINE=Analytic with
(enable_ttl='false')"#;
let req = SqlQueryRequest {
tables: vec!["ceresdb".to_string()],
sql: create_table_sql.to_string(),
};
let resp = client
.sql_query(&rpc_ctx, &req)
.await
.expect("Should succeed to create table");
println!("Create table result:{:?}", resp);
Structs
- The builder for building
DbClient
. - Config for the underlying grpc client
- Context for rpc request.
- Sql query request.
- The response for
SqlQueryRequest
. - Write request.
- The response for the
WriteRequest
.
Enums
- An error generated by the client.
- Access mode to CeresDB server(s).
Traits
Type Definitions
- A result holding the an
Error
.