# configuration queue [//]: # (Attention! this is a generated markdown from casual-configuration-documentation - do not edit this file!) This is the runtime configuration for a casual domain. The sections can be splitted in arbitrary ways, and aggregated to one configuration model `casual` uses. Same sections can be defined in different files, hence, give more or less unlimited configuration setup. Most of the _sections_ has a property `note` for the user to provide descriptions of the documentation. The examples further down uses this to make it easier to understand the examples by them self. But can of course be used as a mean to help document actual production configuration. ## domain.queue Defines the queue configuration ### Duration : `string` A string representation of a _duration_. SI units can be used. Example: `30ms`, `1h`, `3min`, `40s`. if no SI unit `s` is used ### Retry _(structure)_ property | description | default -----------------------|--------------------------------------------------------------|----------- [count : `integer`] | number of rollbacks before move to _error queue_ | `0` [delay : `Duration`] | delay before message is available for dequeue after rollback | `0s` ### domain.queue.default Default properties that will be used if not defined per `queue` property | description | default -------------------------|---------------------------------------|------------ [directory : `string`] | directory for generated storage files | `${CASUAL_PERSISTENT_DIRECTORY}/queue` [queue.retry : `Retry`] | retry semantics | ### domain.queue.groups _(list)_ Defines groups of queues which share the same storage location. Groups has no other meaning. property | description | default -----------------------|----------------------------------------------|------ alias : `string` | the (unique) alias of the group. | [queuebase : `string`] | the path to the storage file. | `domain.queue.default.directory/.qb` [queues : `list`] | defines all queues in this group, see below | Note: if `:memory:` is used as `queuebase`, the storage is non persistent #### domain.queue.groups.queues property | description -------------------|---------------------------------------------------- name : `string` | the (unique) name of the queue. [retry : `Retry`] | retry semantics ### domain.queue.forward Section to configure queue to service forwards and queue to queue forwards. #### domain.queue.forward.default Default properties that will be used if not explicitly configured per forward. property | description | default -----------------------------------|-------------------------------|------------ [service.instances : `integer`] | number of forward instances | `1` [service.reply.delay : `Duration`] | reply enqueue available delay | `0s` [queue.instances : `integer`] | number of forward instances | `1` [queue.target.delay : `Duration`] | enqueue available delay | `0s` ##### domain.queue.forward.groups _(list)_ property | description ---------------------|---------------------------------- alias : `string` | the (unique) alias of the group. [services : `list`] | queue-to-services forwards [queues : `list`] | queue-to-queue forwards ##### domain.queue.forward.groups.services property | description | default ---------------------------|-------------------------------------|---------------------------------------- source : `string` | the queue to dequeue from | [alias : `string`] | the (unique) alias of the forward | ``, on collisions `.#` [instances : `integer`] | number of multiplexing 'instances' | `domain.queue.forward.default.service.instances` target.service : `string` | service to call | [reply.queue : `string`] | queue to enqueue reply to | [reply.delay : `Duration`] | reply enqueue available delay | ##### domain.queue.forward.groups.queues _(list)_ property | description | default ----------------------------|-------------------------------------|---------------------------------------- source : `string` | the queue to dequeue from | [alias : `string`] | the (unique) alias of the forward | ``, on collisions `.#` [instances : `integer`] | number of multiplexing 'instances' | `domain.queue.forward.default.queue.instances` target.queue : `string` | queue to enqueue to | [target.delay : `Duration`] | enqueued available delay | `domain.queue.forward.default.queue.target.delay` ## examples Below follows examples in `yaml` and `json` _(casual can also handle `ini` and `xml`)_ ### yaml ```` yaml --- domain: queue: note: "retry.count - if number of rollbacks is greater, message is moved to error-queue retry.delay - the amount of time before the message is available for consumption, after rollback\n" default: queue: retry: count: 3 delay: "20s" directory: "${CASUAL_DOMAIN_HOME}/queue/groups" groups: - alias: "A" note: "will get default queuebase: ${CASUAL_DOMAIN_HOME}/queue/groups/A.qb" queues: - name: "a1" - name: "a2" retry: count: 10 delay: "100ms" note: "after 10 rollbacked dequeues, message is moved to a2.error" - name: "a3" - name: "a4" - alias: "B" queuebase: "/some/fast/disk/queue/groupB.qb" queues: - name: "b1" - name: "b2" retry: count: 20 note: "after 20 rollbacked dequeues, message is moved to b2.error. retry.delay is 'inherited' from default, if any" - alias: "C" queuebase: ":memory:" note: "group is an in-memory queue, hence no persistence" queues: - name: "c1" - name: "c2" forward: default: service: instances: 3 reply: delay: "2s" queue: instances: 1 target: delay: "500ms" groups: - alias: "forward-group-1" services: - alias: "foo" source: "b1" instances: 4 target: service: "casual/example/echo" reply: queue: "a3" delay: "10ms" queues: - source: "c1" note: "gets the alias 'c1'" target: queue: "a4" - alias: "forward-group-2" services: - alias: "bar" source: "b2" target: service: "casual/example/echo" ... ```` ### json ```` json { "domain": { "queue": { "note": "retry.count - if number of rollbacks is greater, message is moved to error-queue retry.delay - the amount of time before the message is available for consumption, after rollback\n", "default": { "queue": { "retry": { "count": 3, "delay": "20s" } }, "directory": "${CASUAL_DOMAIN_HOME}/queue/groups" }, "groups": [ { "alias": "A", "note": "will get default queuebase: ${CASUAL_DOMAIN_HOME}/queue/groups/A.qb", "queues": [ { "name": "a1" }, { "name": "a2", "retry": { "count": 10, "delay": "100ms" }, "note": "after 10 rollbacked dequeues, message is moved to a2.error" }, { "name": "a3" }, { "name": "a4" } ] }, { "alias": "B", "queuebase": "/some/fast/disk/queue/groupB.qb", "queues": [ { "name": "b1" }, { "name": "b2", "retry": { "count": 20 }, "note": "after 20 rollbacked dequeues, message is moved to b2.error. retry.delay is 'inherited' from default, if any" } ] }, { "alias": "C", "queuebase": ":memory:", "note": "group is an in-memory queue, hence no persistence", "queues": [ { "name": "c1" }, { "name": "c2" } ] } ], "forward": { "default": { "service": { "instances": 3, "reply": { "delay": "2s" } }, "queue": { "instances": 1, "target": { "delay": "500ms" } } }, "groups": [ { "alias": "forward-group-1", "services": [ { "alias": "foo", "source": "b1", "instances": 4, "target": { "service": "casual/example/echo" }, "reply": { "queue": "a3", "delay": "10ms" } } ], "queues": [ { "source": "c1", "note": "gets the alias 'c1'", "target": { "queue": "a4" } } ] }, { "alias": "forward-group-2", "services": [ { "alias": "bar", "source": "b2", "target": { "service": "casual/example/echo" } } ] } ] } } } } ````