Skip to content

Commit

Permalink
correct rowInputRate
Browse files Browse the repository at this point in the history
  • Loading branch information
qqibrow authored and raghavsethi committed Jun 14, 2018
1 parent dbacd3a commit 4d378d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-main/src/main/resources/webapp/assets/stage.js
Expand Up @@ -22,7 +22,7 @@ let OperatorSummary = React.createClass({

const totalWallTime = parseDuration(operator.addInputWall) + parseDuration(operator.getOutputWall) + parseDuration(operator.finishWall) + parseDuration(operator.blockedWall);

const rowInputRate = totalWallTime === 0 ? 0 : (1.0 * operator.inputPositions) / totalWallTime;
const rowInputRate = totalWallTime === 0 ? 0 : (1.0 * operator.inputPositions) / (totalWallTime / 1000.0);
const byteInputRate = totalWallTime === 0 ? 0 : (1.0 * parseDataSize(operator.inputDataSize)) / (totalWallTime / 1000.0);

return (
Expand Down

0 comments on commit 4d378d7

Please sign in to comment.