Skip to Content
Getting Started

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.

bash snippetBASH
curl -LO https://github.com/kalamstack/KalamDB/releases/download/v0.4.1-beta/kalamdb-server-0.4.1-beta-linux-x86_64.tar.gztar -xzf kalamdb-server-0.4.1-beta-linux-x86_64.tar.gz./kalamdb-server

Bootstrap

Use the auth status, setup, and login endpoints before sending protected SQL requests.

bash snippetBASH
curl http://127.0.0.1:2900/v1/api/auth/status

Smoke Test

bash snippetBASH
TOKEN="<ACCESS_TOKEN>" curl -X POST http://127.0.0.1:2900/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