zhangzl
zhangzl

Reputation: 11

why ignite cluster unbalanced load?

I have a pressure test on 3 nodes, but only one CPU is very high, others are very low. Ignite cluster with TCP discovery,I have a jdbc connection like: jdbc:ignite:thin://172.16.14.15,172.16.14.16,172.16.14.17/

Upvotes: 0

Views: 155

Answers (2)

zhangzl
zhangzl

Reputation: 11

I have a try with LB, every node's CPU is similar, but I don't known whether this is a right way.

Upvotes: 0

Alexandr Shapkin
Alexandr Shapkin

Reputation: 2425

JDBC will try to establish a connection to one of the specified servers one by one until it manages to connect. You can't rely on it if you want an even connection distribution. What kind of SQL queries do you use, btw?

Upvotes: 1

Related Questions