You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@beam.apache.org by "Israel Herraiz (Jira)" <ji...@apache.org> on 2022/03/13 22:00:00 UTC

[jira] [Created] (BEAM-14093) OffsetRestrictionTracker calculates wrongly the tryClaim conditions

Israel Herraiz created BEAM-14093:
-------------------------------------

             Summary: OffsetRestrictionTracker calculates wrongly the tryClaim conditions
                 Key: BEAM-14093
                 URL: https://issues.apache.org/jira/browse/BEAM-14093
             Project: Beam
          Issue Type: Bug
          Components: io-py-common
    Affects Versions: 2.37.0
            Reporter: Israel Herraiz


The OffsetRestrictionTracker method tryClaim tries to calculate if the claim can be done using this condition:
{code:python}
if self._range.start <= position < self._range.stop:
  self._current_position = position
  return True{code}

The condition should be
{code:python}
if self._range.start <= position and position < self._range.stop:
  self._current_position = position
  return True{code}

This affects the correctness of the claims for SplittableDoFns.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)