As far as know there's no such functionality at the moment. The only way that comes to my mind is to try making a SQL query that scans it. For example if you created a index like that:
CREATE INDEX indexName ON tableName (field1, field2); Then you can try to execute: SELECT field1, field2 FROM tableName USE INDEX(indexName); By the way I suppose it's going to be possible soon, have a look at https://cwiki.apache.org/confluence/display/IGNITE/IEP-40+Cache+warm-up -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
