Hello thammoud,
Every operation cache.put() takes network roundtrip, by this reason
performance of single operation depends on client network adapter. Try to
use IgniteDataStreamer for bulk loading.
Example:
try (IgniteDataStreamer<PersonKey, Person> stmr =
Ignition.ignite().dataStreamer(cache.getName())) {
stmr.perNodeBufferSize(1024); // default 1024
for (int ind = 0; ind < CACHE_ITEMS; ind++) {
PersonKey pk = new PersonKey(ind);
Person person = new Person((long)ind, "First" + ind, "Last"
+ ind);
stmr.addData(pk, person);
}
}
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Performance-Degredation-when-adding-more-nodes-tp5575p5608.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.