🚀
Introducing Versions: Develop data products using Git. Join the waitlist

Real-time Data Processing: What’s New in 2023

Real-time data processing is changing. Learn the ins and outs of real-time data processing and how things are changing headed into next year.
Cameron Archer
Content Lead
Sep 7, 2023
 ・ 
  min read

Data analytics is changing. Batch is out. Real-time is in. And with this shift comes a new mindset, new tools, and new terminology that data engineers have to master.

We’ve crossed the “hump” in 2023, and as we round out the back half of the year, real-time data processing is growing in both importance and adoption. Its value can’t be understated, and data engineering and data platform teams are turning to tech and tools that can help them achieve it.

In this post, I’ll explain what real-time data processing is, why it isn’t what you think it is, and also provide some useful reference architectures to help you plan, manage, and build a real-time data processing engine.

Understanding real-time data processing

Real-time data processing is but one gear in the machinations of real-time data and real-time analytics.

Sitting squarely between real-time data ingestion and real-time visualization (or real-time data automation!), real-time data processing links the engine and the caboose of a real-time data train.

A 3-car train. The engine is labeled "real-time ingestion", the middle car is labeled "real-time processing", and the caboose is labeled "real-time visualization"
All aboard the real-time train!

But don’t assume that just because it’s the middle child of the real-time data family it should go unnoticed by you and your team.

Mixed metaphors aside, the systems and tools that enable real-time data processing within real-time streaming data architectures can quickly become bottlenecks. They’re tasked with maintaining data freshness on incoming data, ultra-low query latency, and high user concurrency while processing bigger and bigger “big data”.

If you’re building a real-time analytics dashboard that needs to display milliseconds-old data with millisecond query latency for thousands of concurrent users, your data processing infrastructure better be able to scale.

What is real-time data?

Real-time data has 3 qualities:

  1. It’s fresh. Real-time data should be made available to downstream use cases and consumers within seconds (if not milliseconds) of its creation. This is sometimes referred to as “end-to-end latency”.
  2. It’s fast. Real-time data queries must have a “query response latency” in milliseconds regardless of their complexity. Filters, aggregates, and joins are all on the table when you’re building real-time analytics, and complex queries can’t slow you down. Why? Because real-time analytics often integrate with user-facing products, and queries that take seconds or more will dramatically degrade the user experience.
  3. It’s highly concurrent. Real-time data will almost always be accessed by many users at once. We aren’t building data pipelines for a handful of executives browsing Looker dashboards. We’re building in-product analytics, real-time personalization, real-time fraud detection, and many more user-facing features. Real-time data is meant for the masses, so it needs to scale.

What is real-time data processing?

Real-time data processing is the practice of filtering, aggregating, enriching, and otherwise transforming streaming data and sending it on to downstream consumers  as quickly as it is ingested.

If a real-time data processing system is connected on one end to a streaming data platform producing millions of events per second and a vast user base of thousands of active users on the other, it must be able to handle all of the transformations in between without missing a beat.

How is real-time different from batch data processing?

Real-time data processing and batch processing are fundamentally different ways of handling data. Real-time data processing handles data as soon as possible, ingesting, transforming, and exposing data products as soon as new data events are generated.

In contrast, batch processing handles data on some periodic schedule, using ETL/ELT workflows to occasionally extract data from source systems, transform it, and load it into things like cloud data warehouses.

A diagram showing how data processing is different for real-time analytics vs batch analytics.
Real-time analytics and batch analytics use different methods of data processing.

The differences between real-time data processing and batch data processing should be apparent simply by name: One happens in “real-time”, and the other happens in “batches”. Beyond their names, some important points draw a thick line between the two:

  1. Data Ingestion. Real-time data processing and batch processing use very different data ingestion patterns.

    Real-time data processing follows event-driven architectural patterns. Data processing is triggered as soon as events are generated. As much as possible, real-time data processing systems avoid data ingestion patterns that temporarily store event data in upstream systems (though real-time change data capture workflows can sometimes be a unique exception).

    Batch data processing, on the other hand, generally requires that events be placed in an upstream database, data warehouse, or object storage system. This data is occasionally retrieved and processed on a schedule.
  2. Data Tooling. Real-time data processing and batch processing use very different toolsets to achieve their aims.

    Real-time data processing relies on event streaming platforms like Apache Kafka and Confluent, serverless functions like AWS Lambdas, or real-time change data capture for data ingestion and to trigger processing workflows. They utilize stream processing engines like Apache Flink (or derivatives thereof, e.g., Decodable) to process data in motion and/or real-time databases (specifically those that support real-time materialized views) like ClickHouse to perform complex filters, aggregations, and enrichments with minimal latency.

    Batch data processing, on the other hand, uses orchestrators or schedulers like Airflow, Dagster, or Prefect to occasionally run Python code or Spark jobs that retrieves data from a source system (sometimes inefficiently), load the data into a cloud data warehouse, and transform it within the warehouse using tools like dbt.
  3. Access Modalities. Real-time data processing and batch data processing serve different purposes for different users, and the way they expose data to downstream consumers is quite different.

    Real-time data processing generally supports user-facing features that demand low-latency data access for many concurrent users. It’s designed for operational decision-making, real-time visualizations, real-time analytics, and automation.

    Batch processing supports long-running analytical queries that don’t require low latency and for must serve only a few business intelligence or data science consumers. It’s designed for strategic decision-making and long-term forecasting.

Is real-time data processing the same as stream processing?

No, real-time processing and stream processing are not the same. Stream processing is a subset of real-time data processing that deals with limited state and short time windows. Real-time data processing encompasses data processing with large state over unbounded time windows using real-time databases that support high-frequency ingestion, incremental materialized views, and low-latency queries.

The core difference between real-time data processing and stream processing is that real-time data processing is optimized for large volumes of data stored over long periods of time. Stream processing engines like Apache Flink or ksqlDB struggle to transform data over unbounded time windows or with high cardinality. Real-time data processing leverages a full OLAP to run transformations over unbounded time windows on data with many fields that have potentially high cardinality.

Streaming analytics utilizes stream processing engines, whereas real-time analytics leverages a full OLAP.

Real-time data processing utilizes a real-time database to either store transformations in real-time within materialized views or maintain long histories of raw data sets that can be accessed at query time. The choice of a highly optimized, columnar, OLAP storage enables low query latency even for complex analytics over large amounts of data.

What’s an example of real-time data processing?

Real-time fraud detection is a great example of real-time data processing. A real-time fraud detection engine ingests a financial transaction event, compares transaction metadata against historical data (sometimes using online machine learning) to make a fraud determination, and exposes its determination to the point of sale or to ATMs within milliseconds.

Real-time fraud detection is a great example of real-time data processing at work.

This is distinctly a real-time data processing example because of its requirement for maintaining state. Real-time fraud detection systems must maintain long histories of transaction data which are used to train and update online feature stores or heuristical models that perform the real-time data processing as transactions stream in. They support streaming data ingestion and low-latency, high-concurrency access.

Real use cases for real-time data processing

Real-time data processing has wide adoption across many industries. Some examples of real-time data processing can be found in:

  • Real-time personalization on e-commerce websites
  • Real-time operational analytics dashboards for logistics companies
  • User-facing analytics dashboards in SaaS
  • Smart inventory management in retail
  • Anomaly detection in server management

… and many more such use cases. Let’s dig into more detail on how real-time data processing plays a role in these industries.

Real-time personalization in e-commerce

Real-time personalization is a means of customizing a user’s online experiences based on data that is collected in real time, including data from the current browsing session.

A classic real-time personalization example involves eCommerce websites placing customized offers in front of a visitor during browsing or checkout. The customized offers might include products that closely match items that the visitor viewed or added to their cart.

Achieving this use case requires real-time data processing. The data from the user’s browsing session must be captured and processed in real-time to determine what kinds of personalized offers to place back into the application during their active session.

A diagram showing the real-time personalization process
The entire real-time personalization process should take only a few seconds at most.

The entire process, from ingestion to personalization, can take only a few seconds, at most.

Operational analytics in logistics

Consider an airline company seeking to track luggage across a network of airplanes, airports, and everywhere in between. A real-time data platform can use real-time data processing to analyze streaming data from IoT sensors and “tags on bags”. This data is used to update real-time dashboards that help airline staff keep track of baggage, handle passenger offloading events or gate changes, and other last-minute requirements in a busy airport terminal.

User-facing analytics in SaaS

One of the most common applications for real-time data processing is user-facing analytics, sometimes called “in-product analytics”.

SaaS users often want analytics on how they and their teams are utilizing the software, and user-facing analytics dashboards can provide that information.

However, if the data is out of date, then the user experience suffers. Real-time data processing makes it possible for SaaS users to get up-to-date analysis on their usage in real time.

Smart inventory management in retail

Related to real-time personalization, smart inventory management involves making faster, better decisions (perhaps even automated decisions) about how to appropriately route product inventory to meet consumer demand.

Retailers want to avoid stockout scenarios - where the product a user wants to buy is unavailable. Using real-time data processing, retailers can monitor demand and supply in real time and help forecast where new inventory is required.

This can result in a better shopping experience (for example by only showing products that are definitely in stock) while also allowing retailers to reroute inventory to regional distribution hubs where demand is highest.

Anomaly detection in server management

Direct Denial of Service (DDos) attacks can bring down a server in a heartbeat. Companies that operate hosted services, ranging from cloud providers to SaaS builders, need to be able to detect and resolve DDoS attacks as quickly as possible to avoid the collapse of their application servers.

With real-time data processing, they can monitor server resources and real-time requests, quickly identifying DDoS attacks (and other problems) through real-time anomaly detection, and shut down would-be attackers through automated control systems.

Reference architectures for real-time data processing

If you’re trying to build a real-time data platform, real-time data processing will serve an essential role.

Every real-time data processing architecture will invariably include real-time data ingestion, often through the use of an event streaming platform like Kafka. In addition, some form of stream processing engine or real-time database will be used to transform the data in real time. Finally, a low-latency API layer will be used to expose data in various formats and power user-facing analytics, automation, and real-time visualization.

Below you’ll find some common reference architectures for real-time data processing.

The user-facing analytics architecture

In this reference architecture, events are captured through an event bus such as Apache Kafka and ingested into a real-time database, which is responsible for real-time data processing. Application users interact with real-time analytics produced by the database using a low-latency, high-concurrency API.

A diagram showing a user-facing real-time analytics use case.
User-facing analytics rely on real-time data processing in a real-time database.

The operational analytics architecture

In this reference architecture, events are captured and stored in a real-time database by the same method as above. In this example, however, it is not users who access real-time analytics through an API, but rather operational automation systems that utilize real-time data processing to initiate software functions without human intervention. The real-time database is also used in a way that is functionally similar to (though not the same as) stream processing, preparing data for batch processing in a data warehouse.

A diagram showing how operational automation can be powered by real-time data processing tools.
Sometimes real-time data processing serves automation, not visualization.

The real-time data platform architecture

In this architecture event streams and fact tables are ingested into a real-time data platform, which integrates real-time data ingestion (through native data connectors), a real-time database, and a real-time API layer into a single functional interface. 

In parallel, the data warehouse supports batch data processing for business intelligence and data science workloads.

Real-time data processing diagram containing a real-time data platform.
Real-time data platforms can simplify the real-time data processing workload.

Common tools for real-time data processing

As mentioned above, real-time data processing involves some combination of event streaming, stream processing, real-time databases, real-time APIs, and real-time data platforms.

Event Streaming Platform

You can’t have real-time data processing without real-time data ingestion, and event streaming platforms are the go-to technology here.

Some examples of event streaming platforms include:

Stream Processing Engines

Stream processing engines may or may not be utilized in real-time data processing. In the absence of a real-time database, a stream processing engine can be used to transform and process data in motion.

Stream processing engines are able to maintain some amount of state, but they won’t be able to leverage a full OLAP as do real-time databases.

Still, they can be an important part of real-time data processing implementations both with and without real-time databases.

Some examples of stream processing engines include:

Real-time databases

Real-time databases enable real-time data processing over unbounded time windows. They often support incremental materialized views. They support high write frequency, low-latency reads on filtered aggregates, and joins (to varying degrees of complexity).

Some examples of real-time databases include:

Real-time API layer

Real-time data processors must expose transformations to downstream consumers. In an ideal world, this happens through a real-time API layer that enables a wide variety of consumers to access and utilize the data concurrently.

Real-time data platforms

Real-time data platforms generally combine some or all of the components of a real-time data processing engine.

For example, Tinybird is a real-time data platform that supports real-time data ingestion through its HTTP streaming endpoint or native Kafka connector, real-time data processing through its optimized ClickHouse implementation, and a real-time, SQL-based API layer for exposing real-time data products to consumers.

How is real-time data processing changing?

Data-oriented companies are increasing their adoption of streaming technologies and the benefits of real-time data ingestion. To build upon this, large technology companies like Uber, Cloudflare, AirBnB, FanDuel, and more have adopted real-time data processing engines for user-facing applications. These early adopters have paved the way for mid-sized and small companies to implement proven patterns and best-of-breed tooling to solve their real-time data processing challenges.

In particular, open source real-time OLAP databases like ClickHouse are making it possible to expand beyond stream processing engines and process billions of rows of event data in real time.

Real-time data platforms like Tinybird leverage these real-time databases and simplify the development process by offering native streaming data ingestion connectors and a real-time API layer.

Real-time databases are growing in popularity and support, and real-time data platforms are leveraging them to enable end-to-end real-time data products from ingestion to visualization.

With these newcomers in the real-time data processing space, data and engineering teams are finding it faster, easier, safer, and more cost-effective to adopt and deploy real-time data processing methodologies into their data pipelines.

Tinybird for real-time data processing

If you’re looking for a platform to handle real-time data processing integrated with streaming ingestion and a real-time API layer, then consider Tinybird.

Tinybird makes it simple to unify both streaming and batch data sources through native data connectors, build real-time data products using SQL, and empower engineers and domain experts to build powerful user-facing, real-time data products.

For more information about Tinybird, dig into the product, check out the documentation, or try it out. It’s free to start, with no time limit or credit card needed. If you get stuck along the way, you can join our active Slack community to ask questions and get answers about real-time data processing and analytics.