Reputation: 340
I'm planning to integrate the current Cassandra database with Apache ignite cache mechanism. Cassandra will act as the persistent store in that case. Database currently having Gigabytes of data. Question is : Will this cause data duplication ? Does ignite store the existing data in its own schema for persistence ?
Upvotes: 1
Views: 201
Reputation: 2292
This is a common database caching use case. Ignite will be caching the data in memory for faster access, while Cassandra is going to be storing this data on disk. This is data caching, not data duplication.
Upvotes: 2