Dear MC Team.
Please clarify the usage of clustering nodes according to https://www.multichain.com/developers/clustering-high-availability/
We use MC as ledger to store all transactions with consistency. Throughput is very important for us.
In out model, we store no private keys in MC
1. we prepare transactions with createrawsendfrom
2. we sign the transaction outside of MC
3. We submit transaction to MC with sendrawtransaction
Currently we have 2 nodes, and we have plans to increase the amount of active nodes to 6 servers in various locations. No POW, all of them are trusted, and due to that, any of the node can confirm the transaction.
So, our idea is to submit transactions to the nodes on a round-robin bases, to achieve the maximum transaction/per-second speed. In this scenario, we can simply add mode nodes for higher throughput.
So 20 servers can make ~20 times more transactions per second then.
Please correct me if I'm wrong !
Thank you in advance.