@@ -64,7 +64,7 @@ class OperatorSummary extends React.Component {
6464 Output
6565 </ td >
6666 < td >
67- { formatCount ( operator . outputPositions ) + " rows (" + operator . outputDataSize + ")" }
67+ { formatCount ( operator . outputPositions ) + " rows (" + operator . outputDataSizeInBytes + ")" }
6868 </ td >
6969 </ tr >
7070 < tr >
@@ -174,8 +174,8 @@ function OperatorDetail({ index, operator, tasks }) {
174174 } ,
175175 {
176176 name : "Output Data Size" ,
177- id : "outputDataSize " ,
178- supplier : operator => parseDataSize ( operator . outputDataSize ) ,
177+ id : "outputDataSizeInBytes " ,
178+ supplier : operator => parseDataSize ( operator . outputDataSizeInBytes ) ,
179179 renderer : formatDataSize
180180 } ,
181181 ] ;
@@ -209,7 +209,7 @@ function OperatorDetail({ index, operator, tasks }) {
209209 const byteInputRate = totalWallTime === 0 ? 0 : ( 1.0 * parseDataSize ( operator . inputDataSize ) ) / ( totalWallTime / 1000.0 ) ;
210210
211211 const rowOutputRate = totalWallTime === 0 ? 0 : ( 1.0 * operator . outputPositions ) / totalWallTime ;
212- const byteOutputRate = totalWallTime === 0 ? 0 : ( 1.0 * parseDataSize ( operator . outputDataSize ) ) / ( totalWallTime / 1000.0 ) ;
212+ const byteOutputRate = totalWallTime === 0 ? 0 : ( 1.0 * parseDataSize ( operator . outputDataSizeInBytes ) ) / ( totalWallTime / 1000.0 ) ;
213213
214214 return (
215215 < div className = "col-12 container mx-2" >
@@ -248,7 +248,7 @@ function OperatorDetail({ index, operator, tasks }) {
248248 Output
249249 </ td >
250250 < td >
251- { formatCount ( operator . outputPositions ) + " rows (" + operator . outputDataSize + ")" }
251+ { formatCount ( operator . outputPositions ) + " rows (" + operator . outputDataSizeInBytes + ")" }
252252 </ td >
253253 </ tr >
254254 < tr >
@@ -649,4 +649,4 @@ export class StageDetail extends React.Component {
649649 }
650650}
651651
652- export default StageDetail ;
652+ export default StageDetail ;
0 commit comments