Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase memory #331

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading