Merge "Reduce memory consumption in Cinder services"

This commit is contained in:
Zuul 2022-07-01 13:10:17 +00:00 committed by Gerrit Code Review
commit 66d340423d
3 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
tcib_envs:
MALLOC_ARENA_MAX: 1
MALLOC_MMAP_THRESHOLD_: 131072
MALLOC_TRIM_THRESHOLD_: 262144
tcib_actions:
- run: dnf -y install {{ tcib_packages.common | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf
- run: mkdir -p /etc/libqb

View File

@ -1,3 +1,7 @@
tcib_envs:
MALLOC_ARENA_MAX: 1
MALLOC_MMAP_THRESHOLD_: 131072
MALLOC_TRIM_THRESHOLD_: 262144
tcib_actions:
- run: dnf -y install {{ tcib_packages.common | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf
- run: cp /usr/share/openstack-tripleo-common-containers/container-images/kolla/cinder-volume/extend_start.sh /usr/local/bin/kolla_extend_start

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fix high water mark memory usage on Cinder Volume and Backup services and
reduce peak memory usage.