I would like to use Apache Ignite as failover read-only storage so my application will be able to access the most sensitive data if main storage (Oracle) is down.
So I need to
- Start nodes
- Create schema (execute DDL queries)
- Load data from Oracle to Ignite
Seems like it's not the same as database caching and I don't need to use Cache. However, this page says that I need to implement a store to load a large amount of data from 3rd parties.
So, my questions are:
- How to effectively transfer data from Oracle to Ignite? Data Streamers?
- Who should init this transfer? First started node? How to do that? (tutorials explain how to achieve that via clients, should I follow this advice?)