Allow to send more than 1 operation at a time

This commit is contained in:
Vitaliy Filippov
2023-02-26 02:01:04 +03:00
parent 138ffe4032
commit c3e80abad7
4 changed files with 49 additions and 30 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ void osd_messenger_t::parse_config(const json11::Json & config)
this->rdma_max_sge = 128;
this->rdma_max_send = config["rdma_max_send"].uint64_value();
if (!this->rdma_max_send)
this->rdma_max_send = 1;
this->rdma_max_send = 64;
this->rdma_max_recv = config["rdma_max_recv"].uint64_value();
if (!this->rdma_max_recv)
this->rdma_max_recv = 128;