Skip to content

[Python] Bound Watch state with a timestamp cursor#39090

Open
Eliaaazzz wants to merge 2 commits into
apache:masterfrom
Eliaaazzz:python-watch-timestamp-cursor
Open

[Python] Bound Watch state with a timestamp cursor#39090
Eliaaazzz wants to merge 2 commits into
apache:masterfrom
Eliaaazzz:python-watch-timestamp-cursor

Conversation

@Eliaaazzz

@Eliaaazzz Eliaaazzz commented Jun 24, 2026

Copy link
Copy Markdown
Contributor

Stacked on #39023 (the Watch transform MVP); the first commit belongs to that PR, so the change to review is the second commit. Relates to #18459 (the unbounded completed dedup set).

By default Watch dedups by value identity and keeps one hash per distinct output, so the per-input state grows without bound. This adds an opt-in Watch.with_timestamp_cursor() that dedups by a high-water-mark timestamp instead: Watch keeps only the greatest event time it has emitted for an input and emits the polled outputs strictly past it, then advances the cursor. No hash set is kept and the poll result is not hashed, so the per-input state and per-checkpoint encoding are O(1) regardless of how many outputs the input produces. It is for sources whose outputs carry strictly increasing event-time timestamps; an output at or below the cursor is treated as already seen, so the default exact dedup remains for arbitrary-relisting or out-of-order sources. This also documents the event-time/watermark contract and adds a throttled late-emission warning.

Testing: 28 unit tests and 5 subtests on the in-memory DirectRunner; yapf 0.43.0, isort 7.0.0, and pylint clean. Load tested on Dataflow Runner v2 (us-east1) against the default hash dedup, 4 inputs emitting 15000 outputs per 1s round over a 240s budget: the cursor processed 6,825,000 outputs versus the default's 1,650,000 in the same budget (4.1x), because the default re-serializes its growing dedup set on every checkpoint (it reached about 300-495K entries per input) while the cursor writes one timestamp; the gap widens with runtime. Both stayed exactly-once and reached JOB_STATE_DONE. Jobs on apache-beam-testing: cursor 2026-06-24_08_45_05-17501676526076065162, default 2026-06-24_08_45_23-5060488636914380336.


Thank you for your contribution! Follow this checklist to help us incorporate your contribution quickly and easily:

  • Mention the appropriate issue in your description (for example: addresses #123), if applicable. This will automatically add a link to the pull request in the issue. If you would like the issue to automatically close on merging the pull request, comment fixes #<ISSUE NUMBER> instead.
  • Update CHANGES.md with noteworthy changes.
  • If this contribution is large, please file an Apache Individual Contributor License Agreement.

See the Contributor Guide for more tips on how to make review process smoother.

To check the build health, please visit https://github.com/apache/beam/blob/master/.test-infra/BUILD_STATUS.md

See CI.md for more information about GitHub Actions CI or the workflows README to see a list of phrases to trigger workflows.

Add an experimental Watch transform that watches a growing set of outputs
per input element. Watch.growth_of(poll_fn) runs a periodic poll loop as a
splittable DoFn and emits an unbounded PCollection of (input, output) pairs.

Each process() performs one poll round and self-checkpoints via
defer_remainder. New outputs are deduplicated with a stable 128-bit blake2b
hash of the encoded output, and a manual watermark estimator advances per
poll. Per-input termination supports never() and after_total_of(); polling
also stops when a poll returns PollResult.complete(). The DoFn is its own
RestrictionProvider, and restriction state serializes through a tagged
GrowthState coder.

Tests cover termination conditions, coder round-trips, the restriction
tracker claim/checkpoint/dedup logic, and DirectRunner end-to-end runs.
Follow-up to the experimental Watch transform that documents the event-time
contract, makes late data observable, and adds an opt-in O(1) bound on the
per-input state.

Watermark/event-time:
- Document the event-time/watermark contract on the module and PollResult.
- Warn (throttled) when an output is emitted behind the current watermark, so
  out-of-order late data is observable instead of silently dropped, and point
  to PollResult.with_watermark for out-of-order sources.

Scalability:
- Add opt-in Watch.with_timestamp_cursor(): dedup by a high-water-mark timestamp
  instead of by value identity. Watch keeps only the greatest event time emitted
  per input and emits the polled outputs strictly past it, so the per-input
  state is a single timestamp that never grows and the poll result is not
  hashed, giving O(1) state and per-checkpoint encoding. For sources whose
  outputs carry strictly increasing event-time timestamps; an output at or below
  the cursor is treated as already seen, so out-of-order or equal-timestamp
  outputs are dropped (use the default exact dedup otherwise).
- Reuse the parent dedup map on idle rounds to drop the O(N) per-round copy.

Tests cover the watermark contract, the out-of-order late warning, cursor
emit-after-high-water-mark, O(1) state, relist-once, complete, cursor coder
round-trip, and end-to-end cursor dedup. 26 tests and 5 subtests pass.
@Eliaaazzz Eliaaazzz force-pushed the python-watch-timestamp-cursor branch from 85476e4 to 71d6282 Compare June 24, 2026 15:43
@Eliaaazzz Eliaaazzz marked this pull request as ready for review July 5, 2026 00:49
@gemini-code-assist

Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This PR introduces a more scalable deduping strategy for the Watch transform in the Python SDK. By allowing users to opt into a timestamp-based cursor, the transform can now handle high-cardinality sources with O(1) state growth, avoiding the performance degradation associated with the default hash-based deduping set.

Highlights

  • New Watch.with_timestamp_cursor() feature: Added an opt-in deduping mechanism based on event-time timestamps, reducing state complexity to O(1) for monotonic sources.
  • Improved scalability: Eliminated the need for a growing hash set for deduping, significantly improving performance for long-lived, high-cardinality sources.
  • Enhanced observability: Added throttled warnings for late emissions when poll results arrive out of event-time order.
New Features

🧠 You can now enable Memory (public preview) to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize the Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counterproductive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces an experimental Watch transform for the Python SDK, which continuously polls and watches a growing set of outputs for each input element. It supports exact deduplication using 128-bit hashes or O(1) state deduplication using a high-water-mark timestamp cursor. The feedback suggests two improvements: first, ensuring that timestamps are normalized to Timestamp objects before comparison in cursor mode to prevent TypeError exceptions in Python 3; second, converting the input outputs iterable to a list during normalization to safely handle single-use generators or iterators.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment on lines +480 to +483
new_outputs = [
output for output in result.outputs
if cursor is None or output.timestamp > cursor
]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In _GrowthRestrictionTracker.try_claim, when self._cursor_mode is enabled, the code compares output.timestamp > cursor. However, output.timestamp can be a raw float or integer if the user directly instantiated TimestampedValue without using Timestamp objects (as TimestampedValue accepts int or float for its timestamp). Since cursor is a Timestamp object (or None), comparing a Timestamp with a float or integer will raise a TypeError in Python 3. To prevent comparison errors, normalize output.timestamp to a Timestamp object using Timestamp.of(output.timestamp) before comparison.

Suggested change
new_outputs = [
output for output in result.outputs
if cursor is None or output.timestamp > cursor
]
cursor = restriction.cursor
new_outputs = [
output for output in result.outputs
if cursor is None or Timestamp.of(output.timestamp) > cursor
]

Comment on lines +167 to +171
for output in outputs:
if isinstance(output, TimestampedValue):
normalized.append(output)
else:
normalized.append(TimestampedValue(output, default_ts))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

When iterating over outputs, if the user passes a single-use generator or iterator, iterating over it to normalize elements will consume it. Since outputs is iterated again when constructing the PollResult or during normalization, this can lead to empty outputs or unexpected behavior. Consider converting outputs to a list or tuple first before normalization.

Suggested change
for output in outputs:
if isinstance(output, TimestampedValue):
normalized.append(output)
else:
normalized.append(TimestampedValue(output, default_ts))
outputs = list(outputs)
normalized = []
for output in outputs:
if isinstance(output, TimestampedValue):
normalized.append(output)
else:
normalized.append(TimestampedValue(output, default_ts))

@github-actions

github-actions Bot commented Jul 5, 2026

Copy link
Copy Markdown
Contributor

Assigning reviewers:

R: @jrmccluskey for label python.

Note: If you would like to opt out of this review, comment assign to next reviewer.

Available commands:

  • stop reviewer notifications - opt out of the automated review tooling
  • remind me after tests pass - tag the comment author after tests pass
  • waiting on author - shift the attention set back to the author (any comment or push by the author will return the attention set to the reviewers)

The PR bot will only process comments in the main thread (not review comments).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant