You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2017/08/24 21:45:01 UTC

[jira] [Created] (BEAM-2805) Potential arithmetic overflow in Generator#nextAuctionLengthMs()

Ted Yu created BEAM-2805:
----------------------------

             Summary: Potential arithmetic overflow in Generator#nextAuctionLengthMs()
                 Key: BEAM-2805
                 URL: https://issues.apache.org/jira/browse/BEAM-2805
             Project: Beam
          Issue Type: Bug
          Components: sdk-java-extensions
            Reporter: Ted Yu
            Assignee: Reuven Lax
            Priority: Minor


{code}
    long numEventsForAuctions =
        (config.configuration.numInFlightAuctions * GeneratorConfig.PROPORTION_DENOMINATOR)
        / GeneratorConfig.AUCTION_PROPORTION;
{code}
The multiplication is done on 32-bit integers while long is expected (numEventsForAuctions).

There is possibility for arithmetic overflow



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)