public class OffsetRangeTracker extends RestrictionTracker<OffsetRange,java.lang.Long>
RestrictionTracker
for claiming offsets in an OffsetRange
in a monotonically
increasing fashion.RestrictionTracker.ClaimObserver<PositionT>
Constructor and Description |
---|
OffsetRangeTracker(OffsetRange range) |
Modifier and Type | Method and Description |
---|---|
void |
checkDone()
Called by the runner after
DoFn.ProcessElement returns. |
OffsetRange |
checkpoint()
Signals that the current
DoFn.ProcessElement call should terminate as soon as possible:
after this method returns, the tracker MUST refuse all future claim calls, and RestrictionTracker.checkDone() MUST succeed. |
OffsetRange |
currentRestriction()
Returns a restriction accurately describing the full range of work the current
DoFn.ProcessElement call will do, including already completed work. |
void |
markDone()
Marks that there are no more offsets to be claimed in the range.
|
java.lang.String |
toString() |
protected boolean |
tryClaimImpl(java.lang.Long i)
Attempts to claim the given offset.
|
setClaimObserver, tryClaim
public OffsetRangeTracker(OffsetRange range)
public OffsetRange currentRestriction()
RestrictionTracker
DoFn.ProcessElement
call will do, including already completed work.currentRestriction
in class RestrictionTracker<OffsetRange,java.lang.Long>
public OffsetRange checkpoint()
RestrictionTracker
DoFn.ProcessElement
call should terminate as soon as possible:
after this method returns, the tracker MUST refuse all future claim calls, and RestrictionTracker.checkDone()
MUST succeed.
Modifies RestrictionTracker.currentRestriction()
. Returns a restriction representing the rest of the
work: the old value of RestrictionTracker.currentRestriction()
is equivalent to the new value and the
return value of this method combined.
Must be called at most once on a given object. Must not be called before the first
successful RestrictionTracker.tryClaim(PositionT)
call.
checkpoint
in class RestrictionTracker<OffsetRange,java.lang.Long>
protected boolean tryClaimImpl(java.lang.Long i)
Must be larger than the last successfully claimed offset.
tryClaimImpl
in class RestrictionTracker<OffsetRange,java.lang.Long>
true
if the offset was successfully claimed, false
if it is outside the
current OffsetRange
of this tracker (in that case this operation is a no-op).public void markDone()
E.g., a DoFn
reading a file and claiming the offset of each record in the file might
call this if it hits EOF - even though the last attempted claim was before the end of the
range, there are no more offsets to claim.
public void checkDone() throws java.lang.IllegalStateException
RestrictionTracker
DoFn.ProcessElement
returns.
Must throw an exception with an informative error message, if there is still any unclaimed work remaining in the restriction.
checkDone
in class RestrictionTracker<OffsetRange,java.lang.Long>
java.lang.IllegalStateException
public java.lang.String toString()
toString
in class java.lang.Object