Documentation
Get started.
Provision a workspace, write data, run hybrid queries, ship agents with governance enforced in the engine.
Quickstart
# install the SDK
$ npm install @infino/sdk
# write, then ask
import { Infino } from "@infino/sdk";
const infino = new Infino({ accessKey: process.env.INFINO_KEY });
// Write events as they arrive — schema is derived
await infino.write("checkout_events", {
user_id: "u_123",
amount: 49.0,
status: "failed",
ts: Date.now(),
});
// Query directly — governed, audited, executed
const result = await infino.queryDsl("checkout_events", {
query: { term: { status: "failed" } },
aggs: { by_reason: { terms: { field: "error_code", size: 5 } } },
});Reference
01
Quickstart
Provision a workspace, install the SDK, write your first records, run a hybrid query.
02
Concepts
Append-only storage, derived schemas, time partitions, hybrid retrieval, scope.
03
Query reference
SQL, Query DSL, PromQL — one engine, the right language for each question.
04
Deployment
Cloud, customer VPC, on-premise, air-gapped. Your bucket, your region, your governance.
