KarmaGYZ commented on a change in pull request #9760: [FLINK-13982][runtime] 
Implement memory calculation logics
URL: https://github.com/apache/flink/pull/9760#discussion_r327918736
 
 

 ##########
 File path: 
flink-core/src/main/java/org/apache/flink/configuration/MemorySize.java
 ##########
 @@ -115,6 +115,27 @@ public String toString() {
                return bytes + " bytes";
        }
 
+       // 
------------------------------------------------------------------------
+       //  Calculations
+       // 
------------------------------------------------------------------------
+
+       public MemorySize add(MemorySize that) {
+               return new MemorySize(Math.addExact(this.bytes, that.bytes));
+       }
+
+       public MemorySize subtract(MemorySize that) {
+               return new MemorySize(Math.subtractExact(this.bytes, 
that.bytes));
+       }
+
+       public MemorySize multiply(double multiplier) {
+               checkArgument(multiplier >= 0, "multiplier must be >= 0");
+               double product = this.bytes * multiplier;
 
 Review comment:
   I think it could cause some loss of precision here. We need to estimate its 
influence.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to