10KHz+ Ingestion
Handle high-frequency vibration, temperature, and pressure sensors without data loss.
10KHz sensor ingestion. Real-time anomaly detection. Predictive maintenance at microsecond latency.
10KHz+ Ingestion
Handle high-frequency vibration, temperature, and pressure sensors without data loss.
Real-Time Analytics
Window functions for rolling averages, anomaly detection, and threshold alerts — all in SQL.
Edge to Cloud
Run on edge nodes (ARM Graviton) or cloud clusters. Parquet HDB for long-term storage on S3.
OPC-UA Ready
Industrial protocol support for PLC and SCADA integration (roadmap).
-- 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 |
|---|---|
| Edge (single node) | ARM Graviton, 16GB RAM, local NVMe |
| Factory floor cluster | 3-node cluster, 10GbE, shared Parquet on NAS |
| Cloud (historical) | Multi-node on EKS, Parquet HDB on S3 |
| Hybrid | Edge for real-time, cloud sync for analytics |
See Production Deployment for details.