...
Code Block |
---|
resource <resource> { disk { al-extents 65001; ... } net { congestion-extents 58501; # 90% of the al-extents } } |
Code Block |
---|
resource <resource> {
disk {
al-extents 6001;
...
}
...
} |
sndbuf-size
The transmission buffer implements the optimization of the transmission amount through buffering. Since TCP/IP transmission is an ACK-based protocol, the more the segment is transmitted, the greater the protocol overhead. Therefore, from a network transmission perspective, it is advantageous to collect and send as much data as possible when sending data. Since the transmit buffer implements this part, optimization can be achieved naturally. In particular, in a situation in which a small amount of data is continuously transmitted, the amount of data can be greatly improved by collecting and sending the data to the transmission buffer queue for a certain amount. You should consider optimizing with sndbuf-size in the following situations:
...