Is It Possible To Read Logs From The Disk-Buffer Faster?
说明
Are there any possible options for increasing the throughput of reading/writing to a disk-buffer, both reliable and non-reliable?
原因
Increased throughput is desired for logs buffering within a queue file.
解决办法
Queue files are currently read as fast as possible, there are no options to increase this throughput because of this.
Disk I/O (read/write speeds) will dictate how fast log throughput is, as well as how much memory is available to store logs in the memory buffer to be sent out through the destination.
Note - Reliable disk-buffers are slower than non-reliable as logs are written to disk before being sent through to the destination. Please consider this when choosing which disk-buffer to use.