10KHz+ ingestion per sensor
Vibration, current, pressure, and temperature at the rate the physics demand. Lock-free pipeline with no jitter on the hot path.
10KHz sensors tell the plant what is happening. Agent memory helps the plant remember what worked last time. ZeptoDB combines edge time-series ingestion with maintenance context, cache lookup, and replayable agent decisions.
10KHz+ ingestion per sensor
Vibration, current, pressure, and temperature at the rate the physics demand. Lock-free pipeline with no jitter on the hot path.
Real-time analytics in SQL
Rolling averages, SPC, anomaly detection, threshold alerts — standard SQL window functions, no UDFs to maintain.
Edge to cloud
ARM Graviton on the line, multi-node cluster in the plant, Parquet HDB on S3 for long-tail history. Same binary, same SQL.
Industrial protocols
OPC-UA, MQTT, Telegraf, and Kinesis connectors for PLC, SCADA, brownfield sensor buses, and cloud streams. OPC-UA covers scalar, array, string, structured, history, alarms, browse, and server-mode surfaces.
Maintenance memory
Keep prior diagnoses, operator notes, work orders, model calls, and tool outputs searchable by machine, session, and incident.
-- Detect anomalous vibration readings using rolling statisticsSELECT sensor_id, ts, vibration, ema(vibration, 100) AS ema_100, vibration - ema(vibration, 100) AS deviationFROM sensor_readingsWHERE ts > now() - interval '5 minutes' AND abs(vibration - ema(vibration, 100)) > 3 * stddev(vibration) OVER (PARTITION BY sensor_id ORDER BY ts ROWS 1000 PRECEDING)ORDER BY deviation DESC| Environment | Configuration |
|---|---|
| Line / cell edge | Single node, ARM Graviton, 16 GB RAM, local NVMe |
| Plant cluster | 3-node cluster, 10 GbE, Parquet HDB on NAS |
| Cross-site historian | Multi-node EKS, Parquet HDB on S3, cross-site replication |
| Hybrid | Edge for real-time, cloud sync for cross-plant analytics and ML |
See Production Deployment for reference architectures.
For connector details, see Integrations, Telegraf Output, HTTP MessagePack ingest, C++ OPC-UA reference, and Kinesis feed handlers.
Industrial data platforms typically stitch together a historian, a stream processor, a vector store, a feature store, and a warehouse. ZeptoDB replaces the hot path with one model for live facts and agent context, from a ruggedized edge node to the cloud. Fewer integrations, less bespoke glue, and a clearer path from pilot line to production agent.
Share plant, edge, or connector feedback through the public project: GitHub Discussions → · Issues →