'Fast Data load from RDBMS to Ignite Cache

I have a user interface which internally connects to a RDBMS. From the UI, a user can select any number of tables or the user can write a select query to get a result set and load it into an Apache Ignite cache. Can you please suggest with sample examples or API which loads the data into cache in table format.



Solution 1:[1]

You need to use the Data Streamer API. As for how long it will take: it depends on the size of your cluster, the performance of your network, the size of the records, etc. Ignite scales horizontally, so it'll be able to load it as fast as you can send it with a big enough cluster.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Stephen Darlington