How to increase the read/write throughput for foundationdb 5.2

FoundationDB clients also have only one thread that handles FDB network traffic in the background, which can be easily saturated by a sustained benchmarking workload. Running multiple client processes would be the better thing to do.

in my test, I use "fdbcli --exec ‘configure single ssd-redwood-experimental’ " to start fdbcli. What do I need to do? Need I add something in the foundation.cnf ? currently, FDB client and FDB Server are installed in the same machine.

I have 9 FDB server, they are running like this:

tcn 4002 4000 1 15:51 ? 00:00:06 /usr/sbin/fdbserver --class stateless --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4500 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver --public_address auto:4500
tcn 4003 4000 0 15:51 ? 00:00:01 /usr/sbin/fdbserver --class log --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4501 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver1 --public_address auto:4501
tcn 4004 4000 0 15:51 ? 00:00:02 /usr/sbin/fdbserver --class storage --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4502 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver2 --public_address auto:4502
tcn 4005 4000 0 15:51 ? 00:00:02 /usr/sbin/fdbserver --class storage --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4503 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver3 --public_address auto:4503
tcn 4006 4000 0 15:51 ? 00:00:02 /usr/sbin/fdbserver --class storage --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4504 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver4 --public_address auto:4504
tcn 4007 4000 0 15:51 ? 00:00:02 /usr/sbin/fdbserver --class storage --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4505 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver5 --public_address auto:4505
tcn 4008 4000 0 15:51 ? 00:00:02 /usr/sbin/fdbserver --class storage --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4506 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver6 --public_address auto:4506
tcn 4009 4000 0 15:51 ? 00:00:02 /usr/sbin/fdbserver --class storage --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4507 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver7 --public_address auto:4507
tcn 4010 4000 0 15:51 ? 00:00:02 /usr/sbin/fdbserver --class storage --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4508 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver8 --public_address auto:4508
tcn 4011 4000 0 15:51 ? 00:00:02 /usr/sbin/fdbserver --class storage --cluster_file /etc/foundationdb/fdb.cluster --datadir /opt/data/fdb-7.0/data/4509 --listen_address public --logdir /opt/data/fdb-7.0/log/fdbserver9 --public_address auto:4509

Thanks,