Class RestrictionTracker<RestrictionT,PositionT>
- Direct Known Subclasses:
ByteKeyRangeTracker,OffsetRangeTracker,PeriodicSequence.OutputRangeTracker,ReadChangeStreamPartitionProgressTracker,TimestampRangeTracker,TrackerWithProgress
DoFn.
The restriction may be modified by different threads, however the system will ensure sufficient locking such that no methods on the restriction tracker will be called concurrently.
RestrictionTrackers should implement RestrictionTracker.HasProgress otherwise poor auto-scaling
of workers and/or splitting may result if the progress is an inaccurate representation of the
known amount of completed and remaining work.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceAllRestrictionTrackers SHOULD implement this interface to improve auto-scaling and splitting performance.static enumstatic classA representation for the amount of known completed and remaining work.static classA representation of the truncate result. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract voidChecks whether the restriction has been fully processed.abstract RestrictionTReturns a restriction accurately describing the full range of work the currentDoFn.ProcessElementcall will do, including already completed work.abstract RestrictionTracker.IsBoundedReturn the boundedness of the current restriction.abstract booleanAttempts to claim the block of work in the current restriction identified by the given position.abstract @Nullable SplitResult<RestrictionT> trySplit(double fractionOfRemainder) Splits current restriction based onfractionOfRemainder.
-
Constructor Details
-
RestrictionTracker
public RestrictionTracker()
-
-
Method Details
-
tryClaim
Attempts to claim the block of work in the current restriction identified by the given position. Each claimed position MUST be a valid split point.If this succeeds, the DoFn MUST execute the entire block of work. If this fails:
DoFn.ProcessElementMUST returnDoFn.ProcessContinuation.stop()without performing any additional work or emitting output (note that emitting output or performing work fromDoFn.ProcessElementis also not allowed before the first call to this method).checkDone()MUST succeed.
-
currentRestriction
Returns a restriction accurately describing the full range of work the currentDoFn.ProcessElementcall will do, including already completed work.The current restriction returned by method may be updated dynamically due to due to concurrent invocation of other methods of the
RestrictionTracker, For example,trySplit(double).This method is required to be implemented.
-
trySplit
Splits current restriction based onfractionOfRemainder.If splitting the current restriction is possible, the current restriction is split into a primary and residual restriction pair. This invocation updates the
currentRestriction()to be the primary restriction effectively having the currentDoFn.ProcessElementexecution responsible for performing the work that the primary restriction represents. The residual restriction will be executed in a separateDoFn.ProcessElementinvocation (likely in a different process). The work performed by executing the primary and residual restrictions as separateDoFn.ProcessElementinvocations MUST be equivalent to the work performed as if this split never occurred.The
fractionOfRemaindershould be used in a best effort manner to choose a primary and residual restriction based upon the fraction of the remaining work that the currentDoFn.ProcessElementinvocation is responsible for. For example, if aDoFn.ProcessElementwas reading a file with a restriction representing the offset range[100, 200)and has processed up to offset 130 with afractionOfRemainderof0.7, the primary and residual restrictions returned would be[100, 179), [179, 200)(note:currentOffset + fractionOfRemainder * remainingWork = 130 + 0.7 * 70 = 179).fractionOfRemainder = 0means a checkpoint is required.The API is recommended to be implemented for a batch pipeline to improve parallel processing performance.
The API is recommended to be implemented for batch pipeline given that it is very important for pipeline scaling and end to end pipeline execution.
The API is required to be implemented for a streaming pipeline.
- Parameters:
fractionOfRemainder- A hint as to the fraction of work the primary restriction should represent based upon the current known remaining amount of work.- Returns:
- a
SplitResultif a split was possible, otherwise returnsnull. If thefractionOfRemainder == 0, anullresult MUST imply that the restriction tracker is done and there is no more work left to do.
-
checkDone
Checks whether the restriction has been fully processed.Called by the SDK harness after
DoFn.ProcessElementreturns.Must throw an exception with an informative error message, if there is still any unclaimed work remaining in the restriction.
This method is required to be implemented in order to prevent data loss during SDK processing.
- Throws:
IllegalStateException
-
isBounded
Return the boundedness of the current restriction. If the current restriction represents a finite amount of work, it should returnRestrictionTracker.IsBounded.BOUNDED. Otherwise, it should returnRestrictionTracker.IsBounded.UNBOUNDED.It is valid to return
RestrictionTracker.IsBounded.BOUNDEDafter returningRestrictionTracker.IsBounded.UNBOUNDEDonce the end of a restriction is discovered. It is not valid to returnRestrictionTracker.IsBounded.UNBOUNDEDafter returningRestrictionTracker.IsBounded.BOUNDED.This method is required to be implemented.
-