How to move Ignite cached data from one cluster to other cluster ?
Asked
Active
Viewed 272 times
1 Answers
0
You need to copy your persistence files. By default, they're stored in the working directory - ${IGNITE_HOME}/work
. Copy that directory from the nodes of the first cluster to the nodes of the second.
Note that you need to have the same number of nodes and the same configuration for this to work.

Stanislav Lukyanov
- 2,147
- 10
- 20
-
is there any other way or standard way to do the same? – Sandeep Jakkula May 28 '18 at 06:10
-
@Sandy Not in Apache Ignite. GridGain Ultimate Edition has Snapshot Utility though - with that you can create a snapshot of the database, and then restore from the snapshot on another cluster. – Stanislav Lukyanov May 28 '18 at 07:44