Re: Use of GridFutureAdapter$Node objects ?

2018-12-26 Thread userx
Thanks Andrei, will try what you have suggested. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Use of GridFutureAdapter$Node objects ?

2018-12-26 Thread aealexsandrov
Hi, Looks like it's a part of the current implementation. I will try to investigate it. However, as a workaround you can use the next code to decrease the possible memory allocation in case if you are going to load a lot of data: int chunk_size = 1000; try (IgniteDataStreamer

Use of GridFutureAdapter$Node objects ?

2018-12-25 Thread userx
Hi I was writing a sample program to use IgniteDataStreamer and was looking at the objects which are created while we use the addData method of the Streamer. Here is the sample code (pasting only relevant code). try (IgniteDataStreamer streamer = ignite.dataStreamer("Cache1")) {