Reputation: 433
What is the role of I/O threads in hazelcast? Also how does changing their numbers affects the system?
Following is the link for hazelcast I/O threading model. I am wondering what connections does it talk about?
Upvotes: 0
Views: 245
Reputation: 1098
IO = Input Output
IO Threads = threads that perform Input/Output operations.
Role of I/O Threads - (reading straight from the documentation)
3 uses:
I/O thread for the accept requests.
I/O threads to read data from other members/clients.
I/O threads to write data to other members/clients
Connections = connections from other members/clients
Upvotes: 1