Server 0.4.1-beta Getting Started
Use this page only for existing 0.4.1-beta environments. The current docs are the right default for new work.
Install
Download the matching 0.4.1-beta release artifact or use the exact image tag already approved for your environment.
curl -LO https://github.com/kalamstack/KalamDB/releases/download/v0.4.1-beta/kalamdb-server-0.4.1-beta-linux-x86_64.tar.gz
tar -xzf kalamdb-server-0.4.1-beta-linux-x86_64.tar.gz
./kalamdb-serverBootstrap
Use the auth status, setup, and login endpoints before sending protected SQL requests.
curl http://127.0.0.1:8080/v1/api/auth/statusSmoke Test
TOKEN="<ACCESS_TOKEN>"
curl -X POST http://127.0.0.1:8080/v1/api/sql \
-H "Authorization: Bearer $TOKEN" \
-H 'Content-Type: application/json' \
-d '{"sql":"SELECT CURRENT_USER();"}'Upgrade Note
Before moving to a newer release, verify schema DDL, live subscription payloads, and topic consumer offsets against your exact workload.
Last updated on