[
https://issues.apache.org/jira/browse/BEAM-2805?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ted Yu updated BEAM-2805:
-------------------------
Description:
{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
was:
{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
> Potential arithmetic overflow in Generator#nextAuctionLengthMs()
> ----------------------------------------------------------------
>
> Key: BEAM-2805
> URL: https://issues.apache.org/jira/browse/BEAM-2805
> Project: Beam
> Issue Type: Bug
> Components: examples-nexmark
> Reporter: Ted Yu
> 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
(v7.6.3#76005)