Anis Belaid
Anis Belaid

Reputation: 304

apache ignite database location with multiple nodes

I am new to apache ignite and I am wondering in case we want to create a persistent database , where will the database will be stored in case we are starting multiple nodes on several servers? Do the Schema and all data will be replicated across the system?

Upvotes: 0

Views: 42

Answers (1)

alamar
alamar

Reputation: 19313

Please see the documentation on partitioning.

In short, REPLICATED caches are replicated on all nodes, PARTITIONED are distributed between nodes automatically with zero or more backups, and you can also control affinity function to include/exclude nodes.

Upvotes: 1

Related Questions