asterisk/res/ari
Matthew Jordan 9cc1a8e893 stasis: Reduce creation of channel snapshots to improve performance
During some performance testing of Asterisk with AGI, ARI, and lots of Local
channels, we noticed that there's quite a hit in performance during channel
creation and releasing to the dialplan (ARI continue). After investigating
the performance spike that occurs during channel creation, we discovered
that we create a lot of channel snapshots that are technically unnecessary.
This includes creating snapshots during:
 * AGI execution
 * Returning objects for ARI commands
 * During some Local channel operations
 * During some dialling operations
 * During variable setting
 * During some bridging operations
And more.

This patch does the following:
 - It removes a number of fields from channel snapshots. These fields were
   rarely used, were expensive to have on the snapshot, and hurt performance.
   This included formats, translation paths, Log Call ID, callgroup, pickup
   group, and all channel variables. As a result, AMI Status,
   "core show channel", "core show channelvar", and "pjsip show channel" were
   modified to either hit the live channel or not show certain pieces of data.
   While this is unfortunate, the performance gain from this patch is worth
   the loss in behaviour.
 - It adds a mechanism to publish a cached snapshot + blob. A large number of
   publications were changed to use this, including:
   - During Dial begin
   - During Variable assignment (if no AMI variables are emitted - if AMI
     variables are set, we have to make snapshots when a variable is changed)
   - During channel pickup
   - When a channel is put on hold/unhold
   - When a DTMF digit is begun/ended
   - When creating a bridge snapshot
   - When an AOC event is raised
   - During Local channel optimization/Local bridging
   - When endpoint snapshots are generated
   - All AGI events
   - All ARI responses that return a channel
   - Events in the AgentPool, MeetMe, and some in Queue
 - Additionally, some extraneous channel snapshots were being made that were
   unnecessary. These were removed.
 - The result of ast_hashtab_hash_string is now cached in stasis_cache. This
   reduces a large number of calls to ast_hashtab_hash_string, which reduced
   the amount of time spent in this function in gprof by around 50%.

#ASTERISK-23811 #close
Reported by: Matt Jordan

Review: https://reviewboard.asterisk.org/r/3568/
........

Merged revisions 416211 from http://svn.asterisk.org/svn/asterisk/branches/12


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@416216 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2014-06-13 18:24:49 +00:00
..
ari_model_validators.c TALK_DETECT: A channel function that raises events when talking is detected 2014-05-30 12:42:57 +00:00
ari_model_validators.h TALK_DETECT: A channel function that raises events when talking is detected 2014-05-30 12:42:57 +00:00
ari_websockets.c ARI: Add debug logging for events and responses 2014-04-18 14:25:47 +00:00
cli.c Rename everything Stasis-HTTP to ARI 2013-07-27 23:11:02 +00:00
config.c ARI: Don't complain about missing ARI users when we aren't enabled 2014-03-25 18:44:57 +00:00
internal.h optional_api: Fix linking problems between modules that export global symbols 2013-08-30 13:40:27 +00:00
resource_applications.c res_ari: Fix various memory leaks. 2014-01-12 22:24:27 +00:00
resource_applications.h ARI: Support channel variables in originate 2014-01-21 14:27:21 +00:00
resource_asterisk.c ari: User better nicknames for ARI operations 2013-11-07 21:10:31 +00:00
resource_asterisk.h ARI: Support channel variables in originate 2014-01-21 14:27:21 +00:00
resource_bridges.c ARI: Make bridges/{bridgeID}/play queue sound files 2014-04-18 20:09:24 +00:00
resource_bridges.h ARI: Make bridges/{bridgeID}/play queue sound files 2014-04-18 20:09:24 +00:00
resource_channels.c stasis: Reduce creation of channel snapshots to improve performance 2014-06-13 18:24:49 +00:00
resource_channels.h ARI: Add tones playback resource 2014-04-17 21:57:36 +00:00
resource_device_states.c res_ari: Fix various memory leaks. 2014-01-12 22:24:27 +00:00
resource_device_states.h ARI: Support channel variables in originate 2014-01-21 14:27:21 +00:00
resource_endpoints.c json: Fix off-nominal json ref counting issues. 2014-02-21 18:04:54 +00:00
resource_endpoints.h ari: User better nicknames for ARI operations 2013-11-07 21:10:31 +00:00
resource_events.c ARI: Add ability to raise arbitrary User Events 2014-05-22 16:09:51 +00:00
resource_events.h ARI: Add ability to raise arbitrary User Events 2014-05-22 16:09:51 +00:00
resource_mailboxes.c ARI: Add mailboxes resource for controlling and polling external MWI 2014-01-14 23:44:57 +00:00
resource_mailboxes.h ARI: Support channel variables in originate 2014-01-21 14:27:21 +00:00
resource_playbacks.c res_ari: Fix various memory leaks. 2014-01-12 22:24:27 +00:00
resource_playbacks.h ARI: Support channel variables in originate 2014-01-21 14:27:21 +00:00
resource_recordings.c Remove unused RAII_VAR() declarations. 2014-04-15 18:01:47 +00:00
resource_recordings.h ari: User better nicknames for ARI operations 2013-11-07 21:10:31 +00:00
resource_sounds.c ari: User better nicknames for ARI operations 2013-11-07 21:10:31 +00:00
resource_sounds.h ARI: Support channel variables in originate 2014-01-21 14:27:21 +00:00