kyma-server 0.0.1

HTTP + gRPC query API, auth stub, health, observability.
docs.rs failed to build kyma-server-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

HTTP query server — phase A.

Exposes POST /v1/query accepting:

  • X-Database: database to query (defaults to default)
  • Content-Type: application/sql — the query text is the request body

Builds a one-shot DataFusion SessionContext, registers every table in the specified database as a [KymaTable], executes the SQL, and streams the results back as NDJSON (one JSON object per row).

Phase-A simplifications:

  • Only SQL (via DataFusion). KQL lands in M2 when kyma-kql and the QueryFrontend registry are wired.
  • Results are buffered in memory before streaming. Truly streaming response lands when we implement a custom scan ExecutionPlan.