Skip to content

Commit

Permalink
Increase memory, spellcheck fix
Browse files Browse the repository at this point in the history
- when running performance tests, 4G seems to be not enough

Signed-off-by: jmasar <[email protected]>
  • Loading branch information
jmasar committed Nov 23, 2023
1 parent 8fb1b9a commit 6bcee83
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@

- Security improvements in plugin

- Imroved security in configuration files
- Improved security in configuration files

### Traefik

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ $ openssl req -new -x509 -days 365 -addext 'subjectAltName = DNS:*'

### Configuring max storage usage per service

**Conductor** external storage persitence can be configured via parameters in `config/conductor/config.properties`.
**Conductor** external storage persistence can be configured via parameters in `config/conductor/config.properties`.

```sh
# default values
Expand Down
2 changes: 1 addition & 1 deletion composefiles/swarm-workflow-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ services:
environment:
- CONFIG_PROP=config.properties
- LOG4J_PROP=/app/config/log4j.properties
- _JAVA_OPTIONS="-Xmx${CS_RES_LIMIT_MEM}"
- _JAVA_OPTIONS="-Xmx${CS_XMX_RES_LIMIT_MEM}"
- CONDUCTOR_OUTBOX_TABLE_ENABLED=${CONDUCTOR_OUTBOX_TABLE_ENABLED:-false}
volumes:
- ${UF_CONFIG_PATH}/conductor/config.properties:/app/config/config.properties:ro
Expand Down
3 changes: 2 additions & 1 deletion config/prod_settings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ CS_ULIMIT_NOFILE_HARD=65535
CS_ULIMIT_NPROC_SOFT=5000
CS_ULIMIT_NPROC_HARD=5000
CS_RES_LIMIT_CPUS=4
CS_RES_LIMIT_MEM=4G
CS_RES_LIMIT_MEM=7G
CS_XMX_RES_LIMIT_MEM=6G

FF_ULIMIT_NOFILE_SOFT=65535
FF_ULIMIT_NOFILE_HARD=65535
Expand Down

0 comments on commit 6bcee83

Please sign in to comment.