Awesome
<a href="https://quackpipe.fly.dev" target="_blank"><img src="https://user-images.githubusercontent.com/1423657/231310060-aae46ee6-c748-44c9-905e-20a4eba0a814.png" width=220 /></a>
a pipe for quackheads
:baby_chick: quackpipe
QuackPipe is a serverless OLAP API built on top of DuckDB emulating and aliasing the ClickHouse HTTP API
Play with DuckDB SQL and Cloud storage though a familiar API, without giving up old habits and integrations.
:hatched_chick: Demos
:hatched_chick: try a sample s3/parquet query in our miniature playground (fly.io free tier, 1x-shared-vcpu, 256Mb) <br> :hatched_chick: launch your own free instance on fly.io
<a href="https://flyctl.sh/shell?repo=metrico/quackpipe" target="_blank"> <img src="https://user-images.githubusercontent.com/1423657/236479471-a1cb0484-dfd3-4dc2-8d62-121debd7faa3.png" width=300> </a> <br> <br>:seedling: Get Started
Download a binary release, use docker or build from source
🐋 Using Docker
docker pull ghcr.io/metrico/quackpipe:latest
docker run -ti --rm -p 8123:8123 ghcr.io/metrico/quackpipe:latest
📦 Download Binary
curl -fsSL github.com/metrico/quackpipe/releases/latest/download/quackpipe-amd64 --output quackpipe \
&& chmod +x quackpipe
🔌 Start Server w/ parameters
./quackpipe --port 8123
🔌 Start Server w/ file database, READ-ONLY access
./quackpipe --port 8123 --params "/tmp/test.db?access_mode=READ_ONLY"
🔌 Start Server w/ Motherduck authentication token
Using DuckDB Params
./quackpipe --port 8123 --params "/tmp/test.db?motherduck_token=YOUR_TOKEN_HERE"
Using System ENV
export motherduck_token='<token>'
./quackpipe --port 8123
Run with -h
for a full list of parameters
Parameters
params | usage | default |
---|---|---|
--port | HTTP API Port | 8123 |
--host | HTTP API Host | 0.0.0.0 |
--stdin | STDIN query mode | false |
--format | FORMAT handler | JSONCompact |
--params | Optional Parameters |
:point_right: Playground
Execute stateless queries w/o persistence using the embedded playground
<a href="https://quackpipe.fly.dev" target=_blank><img src="https://github.com/metrico/quackpipe/assets/1423657/fa0c8b8f-7480-4bd1-b8b2-bee24ee39186" width=800></a>
👉 Stateful Queries
Execute stateful queries with data persistence by adding unique HTTP Authentication. No registration required.
<a href="https://quackpipe.fly.dev" target=_blank><img src="https://github.com/metrico/quackpipe/assets/1423657/b0546f2a-fa0b-4cbf-b336-a6cdeaa86863" width=800></a>
:point_right: API
Execute queries using the POST API
curl -X POST https://quackpipe.fly.dev
-H "Content-Type: application/json"
-d 'SELECT version()'
:point_right: STDIN
Execute queries using STDIN
# echo "SELECT 'hello', version() as version FORMAT CSV" | ./quackpipe --stdin
hello,v1.1.1
:fist_right: Extensions
Several extensions are pre-installed by default in Docker images, including parquet, json, httpfs<br> When using HTTP API, httpfs, parquet, json extensions are automatically pre-loaded by the wrapper.
Users can pre-install extensions and execute quackpipe using a custom parameters:
echo "INSTALL httpfs;" | ./quackpipe --stdin --params "?extension_directory=/tmp/"
./quackpipe --port 8123 --host 0.0.0.0 --params "?extension_directory=/tmp/"
<img src="https://github.com/metrico/quackpipe/assets/1423657/f66fd8f8-a756-40a6-bee9-7979b09f2576" height=20 > ClickHouse HTTP
Quackpipe can be used to query a remote instance of itself and/or ClickHouse using the HTTP API
CREATE OR REPLACE MACRO quackpipe(query, server := 'https://play.clickhouse.com', user := 'play', format := 'JSONEachRow') AS TABLE
SELECT * FROM read_json_auto(concat(server, '/?default_format=', format, '&user=', user, '&query=', query));
SELECT * FROM quackpipe("SELECT number as once, number *2 as twice FROM numbers(10)")
<img src="https://github.com/metrico/quackpipe/assets/1423657/f66fd8f8-a756-40a6-bee9-7979b09f2576" height=20 > ClickHouse UDF
Quackpipe can be used as executable UDF to get DuckDB data IN/OUT of ClickHouse queries:
SELECT *
FROM executable('quackpipe -stdin -format TSV', TSV, 'id UInt32, num UInt32', (
SELECT 'SELECT 1, 2'
))
Query id: dd878948-bec8-4abe-9e06-2f5813653c3a
┌─id─┬─num─┐
│ 1 │ 2 │
└────┴─────┘
1 rows in set. Elapsed: 0.155 sec.
🃏 What is this? Think of it as a SELECT within a SELECT with a different syntax.<br> 🃏 Format confusion? Make DuckDB SQL feel like ClickHouse with the included ClickHouse Macro Aliases
<br>:construction: Feature Status
- DuckDB Core 1
- cgo binding
- Extension preloading
- Aliases Extension
- REST API 2
- CH FORMAT Emulation
- CSV, CSVWithNames
- TSV, TSVWithNames
- JSONCompact
- Native
- Web Playground (from ClickkHouse, Apache2 Licensed) 3
- CH FORMAT Emulation
- STDIN Fast Query Execution
- ClickHouse Executable UDF
-
:memory:
mode Cloud Storage (s3/r2/minio, httpfs, etc) -
:file:
mode using optional parameters