@@ -21,8 +21,6 @@ enqueue:
21
21
connection_timeout : 1
22
22
buffer_size : 1000
23
23
lazy : true
24
-
25
- # Should be true if you want to use secure connections. False by default
26
24
ssl_on : false
27
25
rabbitmq_stomp :
28
26
host : localhost
@@ -34,6 +32,7 @@ enqueue:
34
32
connection_timeout : 1
35
33
buffer_size : 1000
36
34
lazy : true
35
+ ssl_on : false
37
36
38
37
# The option tells whether RabbitMQ broker has management plugin installed or not
39
38
management_plugin_installed : false
@@ -42,7 +41,7 @@ enqueue:
42
41
# The option tells whether RabbitMQ broker has delay plugin installed or not
43
42
delay_plugin_installed : false
44
43
amqp :
45
- driver : ~ # One of "ext"; "lib"; "bunny"
44
+ driver : ~
46
45
47
46
# The connection to AMQP broker set as a string. Other parameters could be used as defaults
48
47
dsn : ~
@@ -106,7 +105,7 @@ enqueue:
106
105
# Path to local private key file on filesystem in case of separate files for certificate (local_cert) and private key. A string.
107
106
ssl_key : ~
108
107
rabbitmq_amqp :
109
- driver : ~ # One of "ext"; "lib"; "bunny"
108
+ driver : ~
110
109
111
110
# The connection to AMQP broker set as a string. Other parameters could be used as defaults
112
111
dsn : ~
@@ -190,18 +189,27 @@ enqueue:
190
189
polling_interval : 100
191
190
redis :
192
191
192
+ # The redis connection given as DSN. For example redis://host:port?vendor=predis
193
+ dsn : ~
194
+
193
195
# can be a host, or the path to a unix domain socket
194
- host : ~ # Required
196
+ host : ~
195
197
port : ~
196
198
197
199
# The library used internally to interact with Redis server
198
- vendor : ~ # One of "phpredis"; "predis", Required
200
+ vendor : ~ # One of "phpredis"; "predis"; "custom"
201
+
202
+ # A custom redis service id, used with vendor true only
203
+ redis : ~
199
204
200
205
# bool, Whether it use single persisted connection or open a new one for every context
201
206
persisted : false
202
207
203
208
# the connection will be performed as later as possible, if the option set to true
204
209
lazy : true
210
+
211
+ # Database index to select when connected.
212
+ database : 0
205
213
dbal :
206
214
207
215
# The Doctrine DBAL DSN. Other parameters are ignored if set
@@ -229,6 +237,7 @@ enqueue:
229
237
230
238
# the connection will be performed as later as possible, if the option set to true
231
239
lazy : true
240
+ endpoint : null
232
241
gps :
233
242
234
243
# The connection to Google Pub/Sub broker set as a string. Other parameters are ignored if set
@@ -248,8 +257,36 @@ enqueue:
248
257
249
258
# The connection will be performed as later as possible, if the option set to true
250
259
lazy : true
260
+ rdkafka :
261
+
262
+ # The kafka DSN. Other parameters are ignored if set
263
+ dsn : ~
264
+
265
+ # The kafka global configuration properties
266
+ global : []
267
+
268
+ # The kafka topic configuration properties
269
+ topic : []
270
+
271
+ # Delivery report callback
272
+ dr_msg_cb : ~
273
+
274
+ # Error callback
275
+ error_cb : ~
276
+
277
+ # Called after consumer group has been rebalanced
278
+ rebalance_cb : ~
279
+
280
+ # Which partitioner to use
281
+ partitioner : ~ # One of "RD_KAFKA_MSG_PARTITIONER_RANDOM"; "RD_KAFKA_MSG_PARTITIONER_CONSISTENT"
282
+
283
+ # Logging level (syslog(3) levels)
284
+ log_level : ~
285
+
286
+ # Commit asynchronous
287
+ commit_async : false
251
288
client :
252
- traceable_producer : false
289
+ traceable_producer : true
253
290
prefix : enqueue
254
291
app_name : app
255
292
router_topic : default
0 commit comments