Hi Kestas, There are several possible reasons for that. In your case, I think you are trying to put or get huge objects, that contain internal collections and so on.
> at > o.a.i.i.binary.BinaryUtils.doReadCollection(BinaryUtils.java:2016) > at > o.a.i.i.binary.BinaryReaderExImpl.deserialize0(BinaryReaderExImpl.java:1904) ... > at > o.a.i.i.binary.BinaryUtils.doReadCollection(BinaryUtils.java:2016) > at > o.a.i.i.binary.BinaryReaderExImpl.deserialize0(BinaryReaderExImpl.java:1904) Another possible reason is intensive use of getAll()/putAll() methods from different threads. In that case, you need to sort collection of keys before, because batch operation on the same entries in different order could lead to deadlock. Thanks. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Possible-starvation-in-striped-pool-message-tp15993p16002.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
