apache_beam.runners.interactive.options.capture_limiters module
Module to condition how Interactive Beam stops capturing data.
For internal use only; no backwards-compatibility guarantees.
- class apache_beam.runners.interactive.options.capture_limiters.Limiter[source]
Bases:
objectLimits an aspect of the caching layer.
- class apache_beam.runners.interactive.options.capture_limiters.ElementLimiter[source]
Bases:
LimiterA Limiter that limits reading from cache based on some property of an element.
- class apache_beam.runners.interactive.options.capture_limiters.SizeLimiter(size_limit: int)[source]
Bases:
LimiterLimits the cache size to a specified byte limit.
- class apache_beam.runners.interactive.options.capture_limiters.DurationLimiter(duration_limit: timedelta)[source]
Bases:
LimiterLimits the duration of the capture.
- class apache_beam.runners.interactive.options.capture_limiters.CountLimiter(max_count)[source]
Bases:
ElementLimiterLimits by counting the number of elements seen.
- class apache_beam.runners.interactive.options.capture_limiters.ProcessingTimeLimiter(max_duration_secs)[source]
Bases:
ElementLimiterLimits by how long the ProcessingTime passed in the element stream.
Reads all elements from the timespan [start, start + duration).
This measures the duration from the first element in the stream. Each subsequent element has a delta “advance_duration” that moves the internal clock forward. This triggers when the duration from the internal clock and the start exceeds the given duration.
Initialize the ProcessingTimeLimiter.