Skip to content

Draft: limit memory consumption after each call made

Lukasz Kotasa requested to merge lk_stasis_cache_limit into release-7.2

After each call, stasis message is created and stored in memory. This can cause big memory consumption if many calls are processed. We re-use csv_max_row config (see below) to control how many entries can be cached in stasis_cache.

/etc/config/asterisk

config cdr 'cdr_options' option csv_max_row '100'

Merge request reports