mirror of https://github.com/ceph/ceph-ansible.git
ceph-osd: allow to use ceph_tcmalloc_max_total_thread_cache for bluestore
TCMALLOC_MAX_TOTAL_THREAD_CACHE_BYTES is for both bluestore and filestore Signed-off-by: Seena Fallah <seenafallah@gmail.com>pull/6507/head
parent
22c18e82f0
commit
41295f0ef6
|
@ -55,7 +55,6 @@
|
|||
include_tasks: configure_memory_allocator.yml
|
||||
when:
|
||||
- (ceph_tcmalloc_max_total_thread_cache | int) > 0
|
||||
- osd_objectstore == 'filestore'
|
||||
- (ceph_origin == 'repository' or ceph_origin == 'distro')
|
||||
|
||||
- name: include selinux.yml
|
||||
|
|
|
@ -54,7 +54,7 @@ numactl \
|
|||
{% endif -%}
|
||||
{{ container_env_args }} \
|
||||
-e CLUSTER={{ cluster }} \
|
||||
{% if (ceph_tcmalloc_max_total_thread_cache | int) > 0 and osd_objectstore == 'filestore' -%}
|
||||
{% if (ceph_tcmalloc_max_total_thread_cache | int) > 0 -%}
|
||||
-e TCMALLOC_MAX_TOTAL_THREAD_CACHE_BYTES={{ ceph_tcmalloc_max_total_thread_cache }} \
|
||||
{% endif -%}
|
||||
-v /run/lvm/:/run/lvm/ \
|
||||
|
|
Loading…
Reference in New Issue