Re: Ignite.cache.loadcache.Does this method do Increamental Load?

2020-05-18 Thread nithin91
Thanks for the inputs.It is really helpful. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite.cache.loadcache.Does this method do Increamental Load?

2020-05-18 Thread Ilya Kasnacheev
Hello! You can use Data Streamer with allowOverride flag set can do incremental load with keys replacement. Load cache is tailored for initial loading only. Of course, you will have to write your own code around Data Streamer. Regards, -- Ilya Kasnacheev пт, 15 мая 2020 г. в 18:53, nithin91 <

Re: Ignite.cache.loadcache.Does this method do Increamental Load?

2020-05-15 Thread nithin91
Then what is the best way to do perform incremental load. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite.cache.loadcache.Does this method do Increamental Load?

2020-04-03 Thread Ilya Kasnacheev
Hello! Yes, LoadCache will not overwrite keys with existing values. Regards, -- Ilya Kasnacheev пн, 23 мар. 2020 г. в 21:35, nithin91 < nithinbharadwaj.govindar...@franklintempleton.com>: > Hi > > I am trying to load the data into ignite cache using JDBC Pojo Store method > ignite.cache("cach

Re: Ignite.cache.loadcache.Does this method do Increamental Load?

2020-03-26 Thread Andrei Aleksandrov
Hi, loadCache - will load all the keys and values from third party store into Ignite. It can be used for initial loading and for restore of the Ignite cache. There are no incremental updates. In case if you are going to do updates in the third party store not using Ignite API then you also