Skip to content

Latest commit

 

History

History
39 lines (21 loc) · 1.49 KB

get_started_users.md

File metadata and controls

39 lines (21 loc) · 1.49 KB
  1. 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.)
  2. get the binary of TensorBase server

    Download from the TensorBase release page

  3. config a base.conf for server booting

    Here is an example of base.conf

  4. start the TensorBase server like this:

     ./server -c $path_to_base_conf$
    
  5. connect to the TensorBase server with clickhouse-client like this:

     clickhouse-client --port 9528
    

    NOTE: here 9528 is the default port of TensorBase

  6. execute query like this:

     show tables
    

    or

     select count(trip_id) from trips_lite
    
  7. 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!

Get Started Live Recording


play_out_of_the_box