InfluxDB 对 UDP 协议的支持
UDP 输入
关于 UDP/IP 操作系统缓冲区大小的说明
某些操作系统(尤其是 Linux)对 UDP 协议的性能设置了非常严格的限制。强烈建议在尝试将 UDP 流量发送到实例之前,将这些操作系统限制至少增加到 25MB。25MB 只是一个建议,应调整到与您的 read-buffer
插件设置一致。
Linux
通过输入以下命令检查当前的 UDP/IP 接收缓冲区默认值和限制
sysctl net.core.rmem_max
sysctl net.core.rmem_default
如果值小于 26214400 字节(25MB),您应将以下行添加到 /etc/sysctl.conf
文件中
net.core.rmem_max=26214400
net.core.rmem_default=26214400
对 /etc/sysctl.conf
的更改不会立即生效,直到重启。要立即更新值,请以 root 用户身份输入以下命令
sysctl -w net.core.rmem_max=26214400
sysctl -w net.core.rmem_default=26214400
BSD/Darwin
在 BSD/Darwin 系统上,您需要将内核限制套接字缓冲区增加大约 15% 的填充。例如,如果您想设置 25MB 缓冲区(26214400 字节),则需要将内核限制设置为 26214400*1.15 = 30146560
。这在任何文档中都没有说明,但在内核的这里发生了这里。
检查当前 UDP/IP 缓冲区限制
要检查当前的 UDP/IP 缓冲区限制,请输入以下命令
sysctl kern.ipc.maxsockbuf
如果值小于 30146560 字节,您应将以下行添加到 /etc/sysctl.conf
文件中(如果需要,则创建它)
kern.ipc.maxsockbuf=30146560
对 /etc/sysctl.conf
的更改不会立即生效,直到重启。要立即更新值,请以 root 用户身份输入以下命令
sysctl -w kern.ipc.maxsockbuf=30146560
为 UDP 监听器使用 read-buffer
选项
read-buffer
选项允许用户设置 UDP 监听器的缓冲区大小。它设置与 UDP 流量关联的操作系统接收缓冲区的大小。请注意,操作系统必须能够处理这里设置的数字,否则 UDP 监听器将出错并退出。
将 read-buffer = 0
设置为使用 OS 默认值,这通常对于高 UDP 性能来说太小。
配置
每个 UDP 输入都可以设置绑定地址、目标数据库和目标保留策略。如果数据库不存在,则在初始化输入时将自动创建它。如果未配置保留策略,则使用数据库的默认保留策略。但是,如果设置了保留策略,则必须显式创建保留策略。输入不会自动创建它。
每个UDP输入也会对其接收的点进行内部批处理,因为批量写入数据库更高效。默认的批量大小是1000,待处理批量系数是5,批量超时为1秒。这意味着输入将写入最大大小为1000的批量,但如果一个批量在第一个点被添加到批量后的1秒内没有达到1000个点,它将无论大小都会发出该批量。待处理批量系数控制同时可以有多少批量在内存中,允许输入传输一个批量,同时仍在构建其他批量。
处理
UDP输入每次读取可以接收多达64KB的数据,并将接收到的数据按换行符分割。然后每个部分被解释为行协议编码的点,并相应地进行解析。
UDP是无连接的
由于UDP是无连接协议,无法向数据源发送信号来指示是否发生任何错误,以及数据是否已成功索引。在决定是否以及何时使用UDP输入时,应牢记这一点。内置的UDP统计信息对于监控UDP输入非常有用。
配置示例
一个UDP监听器
# influxd.conf
...
[[udp]]
enabled = true
bind-address = ":8089" # the bind address
database = "telegraf" # Name of the database that will be written to
batch-size = 5000 # will flush if this many points get buffered
batch-timeout = "1s" # will flush at least this often even if the batch-size is not reached
batch-pending = 10 # number of batches that may be pending in memory
read-buffer = 0 # UDP read buffer, 0 means to use OS default
...
多个UDP监听器
# influxd.conf
...
[[udp]]
# Default UDP for Telegraf
enabled = true
bind-address = ":8089" # the bind address
database = "telegraf" # Name of the database that will be written to
batch-size = 5000 # will flush if this many points get buffered
batch-timeout = "1s" # will flush at least this often even if the batch-size is not reached
batch-pending = 10 # number of batches that may be pending in memory
read-buffer = 0 # UDP read buffer size, 0 means to use OS default
[[udp]]
# High-traffic UDP
enabled = true
bind-address = ":8189" # the bind address
database = "mymetrics" # Name of the database that will be written to
batch-size = 5000 # will flush if this many points get buffered
batch-timeout = "1s" # will flush at least this often even if the batch-size is not reached
batch-pending = 100 # number of batches that may be pending in memory
read-buffer = 8388608 # (8*1024*1024) UDP read buffer size
...
内容来自README
这个页面有帮助吗?
感谢您的反馈!