Skip to content
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
6 changes: 6 additions & 0 deletions ansible/roles/jicofo/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ jicofo_jvb_brewery_muc: JvbBrewery@{{ jicofo_internal_muc_prefix }}.{{ environme
jicofo_max_audio_senders: 999999
# Max participants in a single conference on a single bridge.
jicofo_max_bridge_participants: 80
# The interval for jicofo_max_bridge_participants_per_interval.
jicofo_max_bridge_participants_interval: 1 minute
# Max participants that a single conference may add to a single bridge within
# jicofo_max_bridge_participants_interval (-1 to disable). This limits the overshoot when a conference bursts, because
# the stress level reported by a bridge lags the actual load by 5-10 seconds.
jicofo_max_bridge_participants_per_interval: 30
jicofo_max_memory: "1536m"
jicofo_max_video_senders: 999999
jicofo_prosody_jvb_hostname: "127.0.0.1"
Expand Down
2 changes: 2 additions & 0 deletions ansible/roles/jicofo/templates/jicofo.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jicofo {
average-participant-stress = {{ jicofo_average_participant_stress }}
stress-threshold = {{ jicofo_stress_threshold }}
max-bridge-participants = {{ jicofo_max_bridge_participants }}
max-bridge-participants-per-interval = {{ jicofo_max_bridge_participants_per_interval }}
max-bridge-participants-interval = {{ jicofo_max_bridge_participants_interval }}

# This duplicates oracle_to_aws_region_map and aws_to_oracle_region_map.
# Once we're moved to oracle regions everywhere we should remove the extra mappings.
Expand Down