This is an automated email from the ASF dual-hosted git repository.
csantanapr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new 13c5285 increase default invoker memory available for user actions to 2GB (#4094)
13c5285 is described below
commit 13c5285c7fcc0f10bfa85b5fbd57525b1411f4da
Author: Carlos Santana <csantanapr@apache.org>
AuthorDate: Fri Nov 2 17:19:35 2018 -0400
increase default invoker memory available for user actions to 2GB (#4094)
---
ansible/group_vars/all | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ansible/group_vars/all b/ansible/group_vars/all
index 8265c4a..7dfb293 100755
--- a/ansible/group_vars/all
+++ b/ansible/group_vars/all
@@ -170,7 +170,7 @@ invoker:
port: 12001
heap: "{{ invoker_heap | default('2g') }}"
arguments: "{{ invoker_arguments | default('') }}"
- userMemory: "{{ invoker_user_memory | default('1024 m') }}"
+ userMemory: "{{ invoker_user_memory | default('2048 m') }}"
instances: "{{ groups['invokers'] | length }}"
# Specify if it is allowed to deploy more than 1 invoker on a single machine.
allowMultipleInstances: "{{ invoker_allow_multiple_instances | default(false) }}"
|