-
ensure you have the binary of ClickHouse client
- Download from the ClickHouse release page, stable release is recommended.
- or download here, a repacked ClickHouse client for your quick start. (Still go to the official release above if you want to try the full or latest ClickHouse.)
-
get the binary of TensorBase server
Download from the TensorBase release page
-
config a base.conf for server booting
Here is an example of base.conf
-
start the TensorBase server like this:
./server -c $path_to_base_conf$
-
connect to the TensorBase server with clickhouse-client like this:
clickhouse-client --port 9528
NOTE: here 9528 is the default port of TensorBase
-
execute query like this:
show tables
or
select count(trip_id) from trips_lite
-
more supported statements could be seen here
TensorBase supports high concurrent ingestions from clickhouse-client and native protocol drivers ( Rust client driver here). Welcome to practice!