ilke Muhtaroglu
ilke Muhtaroglu

Reputation: 137

OutOfMemory error in memory rdbms database what about in hazelcast

We have a continuously increasing data which is 1 gb in 10 minutes. We want to save this data in disk for further processing like SQL queries.

Can we store it via hazelcast like save the data to disk if it is bigger than 500 mb and use the 500 mb data for in memory computing and so on.

What is the solution big data technology for such a usage? We use 32 bit Windows XP.

Upvotes: 0

Views: 59

Answers (1)

mrck
mrck

Reputation: 328

You can use IMap and can configure map-store and eviction for it.

With map-store, entries in IMap is stored into db and with eviction, you can control used memory.

Upvotes: 1

Related Questions