From f4ded183919d3474f91be635a4dc8fcf0d2a7468 Mon Sep 17 00:00:00 2001 From: Lachlan Evenson Date: Mon, 31 Oct 2016 22:22:55 -0700 Subject: [PATCH] Update README with new values --- incubator/spark/README.md | 3 +++ incubator/spark/values.yaml | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/incubator/spark/README.md b/incubator/spark/README.md index 73f58aebbb..7a909c69f2 100644 --- a/incubator/spark/README.md +++ b/incubator/spark/README.md @@ -45,6 +45,7 @@ The following tables lists the configurable parameters of the Spark chart and th | `Master.Memory` | container requested memory | `512Mi` | | `Master.ServicePort` | k8s service port | `7077` | | `Master.ContainerPort` | Container listening port | `7077` | +| `Master.DaemonMemory` | Master JVM Xms and Xmx option | `1g` | ### Spark WebUi @@ -68,6 +69,8 @@ The following tables lists the configurable parameters of the Spark chart and th | `Worker.Memory` | container requested memory | `512Mi` | | `Worker.ContainerPort` | Container listening port | `7077` | | `Worker.CpuTargetPercentage` | k8s hpa cpu targetPercentage | `50` | +| `Worker.DaemonMemory` | Worker JVM Xms and Xmx setting | `1g` | +| `Worker.ExecutorMemory` | Worker memory available for executor | `1g` | diff --git a/incubator/spark/values.yaml b/incubator/spark/values.yaml index 0fcec93090..a984e61877 100644 --- a/incubator/spark/values.yaml +++ b/incubator/spark/values.yaml @@ -14,7 +14,7 @@ Master: ServicePort: 7077 ContainerPort: 7077 # Set Master JVM memory. Default 1g - #DaemonMemory: 2g + #DaemonMemory: 1g WebUi: Name: spark-webui @@ -31,9 +31,9 @@ Worker: Memory: "512Mi" ContainerPort: 8081 # Set Worker JVM memory. Default 1g - #DaemonMemory: 2g + #DaemonMemory: 1g # Set how much total memory workers have to give executors - #ExecutorMemory: 2g + #ExecutorMemory: 1g Zeppelin: Name: zeppelin-controller