0Pricing
Apache Kafka & Stream Processing Fundamentals · Lesson

Time Semantics in Stream Processing

Understand event time, processing time, and ingestion time, and why choosing the right time semantic is critical for correct stream results.

Time Semantics in Stream Processing is a free Apache Kafka & Stream Processing Fundamentals lesson on CoddyKit — lesson 4 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Apache Kafka & Stream Processing Fundamentals learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Why Time Matters

In stream processing, when an event happened is often more important than when you processed it.

Choosing the wrong notion of time leads to incorrect counts, broken windows, and misleading analytics.

Event Time

Event time is the timestamp embedded in the event itself — when it actually occurred at the source.

  • A purchase made at 14:03 carries 14:03 regardless of network delays.
  • It produces deterministic, replayable results.

Processing Time

Processing time is the wall-clock time of the machine running the stream operator when it sees the event.

  • Simple and low-latency.
  • But non-deterministic — the same data reprocessed later yields different windows.

Ingestion Time

Ingestion time is when the event entered the streaming system (e.g., appended to a Kafka topic).

It is a middle ground: more stable than processing time, but still not the true moment the event occurred.

Comparing the Three

For one event, the order is usually:

  • Event time (created at source)
  • then ingestion time (arrives in the system)
  • then processing time (operator reads it)

The gaps between them are caused by network and queueing delays.

The Out-of-Order Problem

Events rarely arrive in event-time order. A mobile device offline for an hour may deliver events long after they occurred.

If you window by event time, the engine must wait for and correctly slot these late arrivals.

Watermarks

A watermark is the engine's estimate that no events older than time T will still arrive.

  • It lets the system decide when an event-time window is complete.
  • It trades latency for completeness — wait longer, catch more late events.

Extracting Event Time

To use event time, you tell the engine how to read the timestamp from each record's payload.

{
  "orderId": "A-1001",
  "amount": 42.50,
  "eventTime": "2026-05-31T14:03:00Z"
}

Choosing a Semantic

Pick based on requirements:

  • Event time — analytics, billing, anything needing correctness and replayability.
  • Processing time — real-time monitoring where approximate is fine.
  • Ingestion time — when source timestamps are unreliable.

Allowed Lateness

Most engines let you configure allowed lateness — a grace period after the watermark during which late events still update results.

Events arriving after that are dropped or routed to a side output for separate handling.

Putting It Together

Correct time handling means:

  • Carry an event-time timestamp in every record.
  • Use watermarks to know when windows are done.
  • Set allowed lateness for stragglers.
  • Prefer event time for any result that must be reproducible.

Quick Check

Test your understanding of time semantics.

Recap

You learned the three core time semantics.

  • Event time = when it happened; processing time = when read; ingestion time = when it entered the system.
  • Watermarks decide when event-time windows are complete.
  • Allowed lateness handles stragglers.
  • Use event time for correctness and replayability.

Frequently asked questions

Is the “Time Semantics in Stream Processing” lesson free?

Yes — the full text of “Time Semantics in Stream Processing” is free to read here on the web, and the Apache Kafka & Stream Processing Fundamentals course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Apache Kafka & Stream Processing Fundamentals course, upgrade to CoddyKit PRO.

What will I learn in “Time Semantics in Stream Processing”?

Understand event time, processing time, and ingestion time, and why choosing the right time semantic is critical for correct stream results. You practise Apache Kafka & Stream Processing Fundamentals with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Apache Kafka & Stream Processing Fundamentals?

No prior experience is required. Apache Kafka & Stream Processing Fundamentals on CoddyKit is structured for beginners through advanced learners; this is — lesson 4 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Time Semantics in Stream Processing” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Apache Kafka & Stream Processing Fundamentals lesson?

Yes. Every Apache Kafka & Stream Processing Fundamentals lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. What is Stream Processing?
  2. Batch vs. Stream Processing
  3. Stream Processing Paradigms
  4. Time Semantics in Stream Processing
← Back to Apache Kafka & Stream Processing Fundamentals