Computing Library › Data Systems
Data Systems

Edge Data Collection

Edge data collection gathers, filters, and buffers data near its source, sending only what matters upstream over constrained and unreliable links.

Computing near the source

Sensors and instruments generate data far from the data center, often faster than any link could carry it raw. Edge data collection moves early processing to the source: a device or nearby gateway filters, aggregates, and buffers data before transmission. This cuts bandwidth, reduces latency for local decisions, and keeps the system working when the network does not.

Why not send everything

Kronos motion — what is fusion

Filtering and aggregation at the edge

The edge decides what is worth sending. It may downsample steady signals, transmit full resolution only around detected events, or compute summaries such as means and extremes over short windows. A common pattern keeps a high-rate local recording briefly and forwards only a compact stream, retrieving the full recording on demand when an event warrants investigation. This preserves fidelity where it matters without paying for it everywhere.

Store-and-forward

Because links are unreliable, edge collectors buffer locally and forward when connectivity returns, a pattern called store-and-forward. The buffer must be bounded, so a policy decides what to drop when it fills: usually the oldest or least important data. Each forwarded record carries its original event-time timestamp so downstream systems reconstruct the true sequence regardless of when the data actually arrived.

Time synchronization

Correlating data from many edge devices requires their clocks to agree. Without synchronization, events that were simultaneous appear staggered, corrupting any cross-device analysis. Edge systems therefore invest in clock discipline and stamp every reading with a synchronized event time at capture. For instrumenting a complex physical system with distributed diagnostics, edge collection with disciplined timestamps is what makes later correlation trustworthy. See stream processing and time-series compression.