Henrik
Henrik

Reputation: 143

What's the max size limit of partition and value in ignite

I need to put some big data in Ignite using Key-Value API, let's say at least 128 MB, I wonder what's the max size of a value in cache, and what's the max size of a partition?

Upvotes: 1

Views: 908

Answers (1)

antkr
antkr

Reputation: 414

Partition size doesn't have any kind of limit.

When you are feeding large entries into Ignite there is only one strict limitation — a single entry must be less than WAL segment size. It's defaulted to 64mb, so you must increase it to let yor use-case work.

https://ignite.apache.org/docs/latest/persistence/native-persistence#changing-wal-segment-size

Upvotes: 2

Related Questions