emqx/apps/emqx_retainer
ieQu1 8967e13eee docs(schema): Move descriptions from emqx.conf.all 2022-03-23 13:52:54 +01:00
..
etc fix(limiter): improve code style and description 2022-03-18 16:00:42 +08:00
include chore: update copyright 2022-01-05 20:55:00 +01:00
src docs(schema): Move descriptions from emqx.conf.all 2022-03-23 13:52:54 +01:00
test fix(limiter): improve code style and description 2022-03-18 16:00:42 +08:00
.gitignore style: ensure newline at EOF for all files 2021-11-04 14:40:14 +01:00
README.md docs(README): EMQ X -> EMQX 2022-02-15 16:19:26 +01:00
TODO refactor(proj): Add apps 2020-12-04 22:11:53 +01:00
rebar.config chore: update emqtt to 1.4.8 2022-03-15 12:11:44 +01:00

README.md

EMQX Retainer

The retainer plugin is responsible for storing retained MQTT messages.

Configuration

etc/emqx_retainer.conf:

## Where to store the retained messages.
## Notice that all nodes in a cluster are to have the same storage_type.
##
## Value: ram | disc
##  - ram: memory only
##  - disc: both memory and disc
##
## Default: ram
retainer.storage_type = ram

## Maximum number of retained messages allowed.
##
## Value: Number >= 0
retainer.max_retained_messages = 1000000

## Maximum payload size of a retained message.
##
## Value: Bytes
retainer.max_payload_size = 64KB

## Expiration interval of the retained messages. Never expire if the value is 0.
##
## Value: Duration
##  - h: hour
##  - m: minute
##  - s: second
##
## Examples:
##  - 2h:  2 hours
##  - 30m: 30 minutes
##  - 20s: 20 seconds
##
## Default: 0
retainer.expiry_interval = 0

License

Apache License Version 2.0

Author

EMQX Team