mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-17 03:05:19 +00:00
Moved RabbitMQ QoS to parameters
This commit is contained in:
parent
99712e5d85
commit
881b0578e7
5 changed files with 12 additions and 8 deletions
|
@ -300,7 +300,7 @@ old_sound_rabbit_mq:
|
||||||
queue_options:
|
queue_options:
|
||||||
name: 'wallabag.import.pocket'
|
name: 'wallabag.import.pocket'
|
||||||
callback: wallabag_import.consumer.amqp.pocket
|
callback: wallabag_import.consumer.amqp.pocket
|
||||||
qos_options: {prefetch_count: 10}
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
||||||
import_readability:
|
import_readability:
|
||||||
connection: default
|
connection: default
|
||||||
exchange_options:
|
exchange_options:
|
||||||
|
@ -309,7 +309,7 @@ old_sound_rabbit_mq:
|
||||||
queue_options:
|
queue_options:
|
||||||
name: 'wallabag.import.readability'
|
name: 'wallabag.import.readability'
|
||||||
callback: wallabag_import.consumer.amqp.readability
|
callback: wallabag_import.consumer.amqp.readability
|
||||||
qos_options: {prefetch_count: 10}
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
||||||
import_instapaper:
|
import_instapaper:
|
||||||
connection: default
|
connection: default
|
||||||
exchange_options:
|
exchange_options:
|
||||||
|
@ -318,7 +318,7 @@ old_sound_rabbit_mq:
|
||||||
queue_options:
|
queue_options:
|
||||||
name: 'wallabag.import.instapaper'
|
name: 'wallabag.import.instapaper'
|
||||||
callback: wallabag_import.consumer.amqp.instapaper
|
callback: wallabag_import.consumer.amqp.instapaper
|
||||||
qos_options: {prefetch_count: 10}
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
||||||
import_pinboard:
|
import_pinboard:
|
||||||
connection: default
|
connection: default
|
||||||
exchange_options:
|
exchange_options:
|
||||||
|
@ -327,7 +327,7 @@ old_sound_rabbit_mq:
|
||||||
queue_options:
|
queue_options:
|
||||||
name: 'wallabag.import.pinboard'
|
name: 'wallabag.import.pinboard'
|
||||||
callback: wallabag_import.consumer.amqp.pinboard
|
callback: wallabag_import.consumer.amqp.pinboard
|
||||||
qos_options: {prefetch_count: 10}
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
||||||
import_wallabag_v1:
|
import_wallabag_v1:
|
||||||
connection: default
|
connection: default
|
||||||
exchange_options:
|
exchange_options:
|
||||||
|
@ -336,7 +336,7 @@ old_sound_rabbit_mq:
|
||||||
queue_options:
|
queue_options:
|
||||||
name: 'wallabag.import.wallabag_v1'
|
name: 'wallabag.import.wallabag_v1'
|
||||||
callback: wallabag_import.consumer.amqp.wallabag_v1
|
callback: wallabag_import.consumer.amqp.wallabag_v1
|
||||||
qos_options: {prefetch_count: 10}
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
||||||
import_wallabag_v2:
|
import_wallabag_v2:
|
||||||
connection: default
|
connection: default
|
||||||
exchange_options:
|
exchange_options:
|
||||||
|
@ -345,7 +345,7 @@ old_sound_rabbit_mq:
|
||||||
queue_options:
|
queue_options:
|
||||||
name: 'wallabag.import.wallabag_v2'
|
name: 'wallabag.import.wallabag_v2'
|
||||||
callback: wallabag_import.consumer.amqp.wallabag_v2
|
callback: wallabag_import.consumer.amqp.wallabag_v2
|
||||||
qos_options: {prefetch_count: 10}
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
||||||
import_firefox:
|
import_firefox:
|
||||||
connection: default
|
connection: default
|
||||||
exchange_options:
|
exchange_options:
|
||||||
|
@ -354,7 +354,7 @@ old_sound_rabbit_mq:
|
||||||
queue_options:
|
queue_options:
|
||||||
name: 'wallabag.import.firefox'
|
name: 'wallabag.import.firefox'
|
||||||
callback: wallabag_import.consumer.amqp.firefox
|
callback: wallabag_import.consumer.amqp.firefox
|
||||||
qos_options: {prefetch_count: 10}
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
||||||
import_chrome:
|
import_chrome:
|
||||||
connection: default
|
connection: default
|
||||||
exchange_options:
|
exchange_options:
|
||||||
|
@ -363,7 +363,7 @@ old_sound_rabbit_mq:
|
||||||
queue_options:
|
queue_options:
|
||||||
name: 'wallabag.import.chrome'
|
name: 'wallabag.import.chrome'
|
||||||
callback: wallabag_import.consumer.amqp.chrome
|
callback: wallabag_import.consumer.amqp.chrome
|
||||||
qos_options: {prefetch_count: 10}
|
qos_options: {prefetch_count: "%rabbitmq_prefetch_count%"}
|
||||||
|
|
||||||
fos_js_routing:
|
fos_js_routing:
|
||||||
routes_to_expose:
|
routes_to_expose:
|
||||||
|
|
|
@ -49,6 +49,7 @@ parameters:
|
||||||
rabbitmq_port: 5672
|
rabbitmq_port: 5672
|
||||||
rabbitmq_user: guest
|
rabbitmq_user: guest
|
||||||
rabbitmq_password: guest
|
rabbitmq_password: guest
|
||||||
|
rabbitmq_prefetch_count: 10
|
||||||
|
|
||||||
# Redis processing
|
# Redis processing
|
||||||
redis_scheme: tcp
|
redis_scheme: tcp
|
||||||
|
|
|
@ -47,6 +47,7 @@ Bearbeite deine ``app/config/parameters.yml``-Datei, um die RabbitMQ-Parameter z
|
||||||
rabbitmq_port: 5672
|
rabbitmq_port: 5672
|
||||||
rabbitmq_user: guest
|
rabbitmq_user: guest
|
||||||
rabbitmq_password: guest
|
rabbitmq_password: guest
|
||||||
|
rabbitmq_prefetch_count: 10 # lesen http://www.rabbitmq.com/consumer-prefetch.html
|
||||||
|
|
||||||
RabbitMQ in wallabag aktivieren
|
RabbitMQ in wallabag aktivieren
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
@ -48,6 +48,7 @@ Edit your ``app/config/parameters.yml`` file to edit RabbitMQ configuration. The
|
||||||
rabbitmq_port: 5672
|
rabbitmq_port: 5672
|
||||||
rabbitmq_user: guest
|
rabbitmq_user: guest
|
||||||
rabbitmq_password: guest
|
rabbitmq_password: guest
|
||||||
|
rabbitmq_prefetch_count: 10 # read http://www.rabbitmq.com/consumer-prefetch.html
|
||||||
|
|
||||||
Enable RabbitMQ in wallabag
|
Enable RabbitMQ in wallabag
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
@ -49,6 +49,7 @@ Modifiez votre fichier ``app/config/parameters.yml`` pour éditer la configurati
|
||||||
rabbitmq_port: 5672
|
rabbitmq_port: 5672
|
||||||
rabbitmq_user: guest
|
rabbitmq_user: guest
|
||||||
rabbitmq_password: guest
|
rabbitmq_password: guest
|
||||||
|
rabbitmq_prefetch_count: 10 # lire http://www.rabbitmq.com/consumer-prefetch.html
|
||||||
|
|
||||||
Activer RabbitMQ dans wallabag
|
Activer RabbitMQ dans wallabag
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
Loading…
Reference in a new issue