Limit of a slave server in master-slave architecture

0

I want to deploy a master server with three slave servers. How do you restrict the maximum number of connections to the slave server?

What would be the best choice if the slave exceeds the maximum number of connections?

user1049385

Posted 2019-06-13T11:35:12.597

Reputation: 1

1Without knowing anything about your communications architecture, applications or OS, it's impossible to answer, but if you have a separate port for each connection and limit the number of listening ports on each slave you won't be able to exceed this number of connections - this will need to be marshalled by the master server, of course. – AFH – 2019-06-13T11:52:57.190

No answers