Re: max size of Ignite cache (not memory size, i mean max amount ofrecords)

2018-03-08 Thread Jeff Jiao
Thank you guys -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: max size of Ignite cache (not memory size, i mean max amount ofrecords)

2018-03-07 Thread Ivan Rakov
I'd add that size methods of CacheDataStore (abstraction which is responsible for storing partition data in offheap) actually return int type. That means that there's a limit of Integer.MAX_VALUE entries per partition, which is still huge. FYI: If total cache size is greater than Integer.MAX_VAL

RE: max size of Ignite cache (not memory size, i mean max amount ofrecords)

2018-03-07 Thread Stanislav Lukyanov
Hi Jeff, I believe its Long.MAX_VALUE, so I wouldn’t worry about reaching that cap in one’s lifetime :) Thanks, Stan From: Jeff Jiao Sent: 7 марта 2018 г. 10:52 To: user@ignite.apache.org Subject: max size of Ignite cache (not memory size, i mean max amount ofrecords) hi Igniter, Is there a m