mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Beanstalkd is a simple to use job queue. It provides a means to create multiple job queues called "tubes". Each tube can store multiple jobs, with varying priorities with the queue. Queue processing is available via a simple TCP socket or via well defined libraries, avaialble at https://github.com/kr/beanstalkd/wiki/client-libraries This module is based upon the beanstalk-client library, available for download at: https://github.com/deepfryed/beanstalk-client This module currently doesn't support user defined events. Change-Id: Ic3a087faeeac045d69a2a018e60e29831ddb95ab
22 lines
819 B
Plaintext
22 lines
819 B
Plaintext
;
|
|
; Beanstalkd Job Queue Server CEL Backend
|
|
;
|
|
[general]
|
|
|
|
; Backend Activation
|
|
;
|
|
; Use the 'enabled' keyword to turn CEL logging
|
|
; on or off.
|
|
;
|
|
; Accepted values: yes and no
|
|
; Default value: no
|
|
;enabled = yes
|
|
|
|
;host = 127.0.0.1 ; Specify the remote IP address of the Beanstalkd server
|
|
;port = 11300 ; Specify the remote PORT of the the Beanstalkd server
|
|
;tube = asterisk-cel ; Specify the default CDR job queue to use
|
|
;priority = 99 ; Specify the default job priority for the queue. This parameter is useful when building
|
|
; platform with multiple Asterisk servers, that are used for different functions. For example,
|
|
; none billable CDR records can be inserted with a priority of 99, while billable ones be
|
|
; inserted with a priority of 1
|