emqx_limiter_schema {
max_conn_rate.desc:
"""Maximum connection rate.
This is used to limit the connection rate for this node.
Once the limit is reached, new connections will be deferred or refused.
For example:
- 1000/s
:: Only accepts 1000 connections per second
- 1000/10s
:: Only accepts 1000 connections every 10 seconds."""
max_conn_rate.label:
"""Maximum Connection Rate"""
messages_rate.desc:
"""Messages publish rate.
This is used to limit the inbound message numbers for this node.
Once the limit is reached, the restricted client will slow down and even be hung for a while.
For example:
- 500/s
:: Only the first 500 messages are sent per second and other messages are buffered.
- 500/10s
:: Only the first 500 messages are sent even 10 second and other messages are buffered."""
messages_rate.label:
"""Messages Publish Rate"""
bytes_rate.desc:
"""Data publish rate.
This is used to limit the inbound bytes rate for this node.
Once the limit is reached, the restricted client will slow down and even be hung for a while.
The unit of the bytes could be:KB MB GB.
For example:
- 500KB/s
:: Only the first 500 kilobytes are sent per second and other messages are buffered.
- 500MB/10s
:: Only the first 500 megabytes are sent even 10 second and other messages are buffered."""
bytes_rate.label:
"""Data Publish Rate"""
}