You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by GitBox <gi...@apache.org> on 2019/01/29 21:45:04 UTC

[GitHub] nwangtw commented on a change in pull request #3180: [Streamlet] Fix streamlet config to apply cpu and ram in topology

nwangtw commented on a change in pull request #3180: [Streamlet] Fix streamlet config to apply cpu and ram in topology
URL: https://github.com/apache/incubator-heron/pull/3180#discussion_r252030479
 
 

 ##########
 File path: heron/api/src/java/org/apache/heron/streamlet/Config.java
 ##########
 @@ -63,7 +64,7 @@
     static final boolean USE_KRYO = true;
     static final org.apache.heron.api.Config CONFIG = new org.apache.heron.api.Config();
     static final double CPU = 1.0;
-    static final long RAM = 100 * MB;
+    static final ByteAmount RAM = ByteAmount.fromMegabytes(100);
 
 Review comment:
   Good question.
   
   The default value is not really used (and not really needed) because low level api has its own default values. Let me clean it up.

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


With regards,
Apache Git Services