You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ke...@apache.org on 2017/10/26 17:11:02 UTC

[5/6] beam git commit: CR: [BEAM-3005] Set JVM max heap size in java container

CR: [BEAM-3005] Set JVM max heap size in java container


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/f56e8f6e
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/f56e8f6e
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/f56e8f6e

Branch: refs/heads/master
Commit: f56e8f6ec86bff94ea93f040d2146a20404fd7b6
Parents: d495d1f
Author: Henning Rohde <he...@google.com>
Authored: Thu Oct 26 08:13:53 2017 -0700
Committer: Henning Rohde <he...@google.com>
Committed: Thu Oct 26 08:13:53 2017 -0700

----------------------------------------------------------------------
 sdks/java/container/boot.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/f56e8f6e/sdks/java/container/boot.go
----------------------------------------------------------------------
diff --git a/sdks/java/container/boot.go b/sdks/java/container/boot.go
index a5505d5..a6c4406 100644
--- a/sdks/java/container/boot.go
+++ b/sdks/java/container/boot.go
@@ -118,7 +118,7 @@ func main() {
 
 // heapSizeLimit returns 80% of the runner limit, if provided. If not provided,
 // it returns 70% of the physical memory on the machine. If it cannot determine
-// that value, it returns 1GB. This is an imperfect heuristic. I aims to
+// that value, it returns 1GB. This is an imperfect heuristic. It aims to
 // ensure there is memory for non-heap use and other overhead, while also not
 // underutilizing the machine.
 func heapSizeLimit(info *pb.ProvisionInfo) uint64 {