quackpipe
quackpipe copied to clipboard
QuackPipe is an OLAP API built on top of DuckDB with a few extra ClickHouse compatibility bits
Very nice concept, was wondering if you've considered keeping the db connection open and implementing a connection pool to allow multiple queries to run at the same time?
# How Create a service implementing the following interface and helper types ``` type Table struct { Name string Path string Fields [][2]string // field name and type OrderBy []string...
# What Desired functionality: 1. A user makes a create table request: ``` POST /qp/query ... create_table: experiment fields: a: UInt64 b: String c: Float64 engine: Merge order_by: - a...
# What Every quackpipe instance should have an internal tables describing the created "merged parquet" tables. The tables should contain - table name - table base folder path on HD...
# What ### Desired functionality. A client sends a request: ``` create_table: experiment fields: a: UInt64 b: String c: Float64 engine: Merge order_by: - a timestamp: field: a precision: ms...