Sub-cycle latency
272μs queries over millions of rows. Detect grid disturbances within a single AC cycle — not on the next dashboard refresh.
Synchrophasor streams, smart meters, wind farms, batteries, operator actions, and incident memory. ZeptoDB gives grid agents one timeline for live evidence and durable context.
Sub-cycle latency
272μs queries over millions of rows. Detect grid disturbances within a single AC cycle — not on the next dashboard refresh.
PMU-scale ingestion
Thousands of phasor measurement units at 30–240 samples/sec each, with nanosecond timestamps. Lock-free pipeline, no dropped frames.
Millions of endpoints
Symbol-partitioned column store scales to millions of meters, inverters, and sensors without cardinality penalties.
Parquet historian
Years of telemetry on S3 / GCS / NFS. Query hot and cold transparently for forensic analysis and regulatory reporting.
Incident memory
Store operator notes, prior disturbances, mitigation steps, model calls, and retrieved context beside PMU and asset telemetry.
-- Detect sub-synchronous oscillations by comparing phase angles across substationsSELECT p1.ts, p1.substation AS sub_a, p2.substation AS sub_b, p1.phase_angle - p2.phase_angle AS angle_diff, ema(abs(p1.phase_angle - p2.phase_angle), 60) AS smoothed_diffFROM phasors p1ASOF JOIN phasors p2 ON p1.ts = p2.ts AND p2.substation = 'SUB-B'WHERE p1.substation = 'SUB-A' AND p1.ts > now() - interval '5 minutes' AND abs(p1.phase_angle - p2.phase_angle) > 10 -- degrees| Environment | Configuration |
|---|---|
| Substation edge | Single node, ARM Graviton, WAL + local Parquet |
| Control center | Multi-node cluster, 10/25 GbE, Parquet HDB on NAS |
| Cloud historian | EKS cluster, Parquet HDB on S3, cross-region replication |
| Hybrid | Edge ingests + aggregates; cloud keeps long-tail history |
See Production Deployment and EKS Cluster Requirements for reference architectures.
See Security for the full posture.