1 stable release

1.0.2 Nov 29, 2023

#2468 in Database interfaces

Download history 205/week @ 2023-12-22 196/week @ 2023-12-29 237/week @ 2024-01-05 287/week @ 2024-01-12 481/week @ 2024-01-19 350/week @ 2024-01-26 223/week @ 2024-02-02 104/week @ 2024-02-09 281/week @ 2024-02-16 201/week @ 2024-02-23 241/week @ 2024-03-01 287/week @ 2024-03-08 212/week @ 2024-03-15 240/week @ 2024-03-22 305/week @ 2024-03-29 267/week @ 2024-04-05

1,049 downloads per month

Apache-2.0

105KB
2K SLoC

HoraeDB Rust Client

License Crates.io

Introduction

The rust client for HoraeDB.

HoraeDB is a high-performance, distributed, schema-less, cloud native time-series database that can handle both time-series and analytics workloads.

Support features

  • Query
  • Write

Contributing

Any contribution is welcome!

Read our Contributing Guide and make your first contribution!

License

Under Apache License 2.0.


lib.rs:

This crate provides an user-friendly client for [HoraeDB](https://github.com/HoraeDB /horaedb).

With this crate, you can access a standalone HoraeDB or a HoraeDB cluster and manipulates the data in it. And the underlying communication between the client the HoraeDB servers is based on the gRPC, and the protocol is defined in the horaedbproto.

Choose Mode

Two access Modes are provided by the client, Proxy and Direct:

  • When accessing HoraeDB cluster by Direct mode, the requests will be sent directly to the right HoraeDB instance determined by routing information.
  • When accessing HoraeDB by Proxy mode, the requests are just sent to any one HoraeDB instance, which takes the responsibilities for forwarding the requests.

If the client can't access the HoraeDB 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 HoraeDB by writing and querying.

Example

Here is an example to create a table in HoraeDB 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 horaedb (
    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!["horaedb".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);

Dependencies

~20–32MB
~429K SLoC