Yes, this this functionality was presented in 2.1.1. Just turn on persistence by calling IgniteConfiguration cfg = new IgniteConfiguration(); cfg.setPersistentStoreConfiguration(new PersistentStoreConfiguration());
In 2.3.1 API has changed. Now it is required to enable persistence in a default data region to make queues persistent: DataStorageConfiguration dsCfg = new DataStorageConfiguration().setDefaultDataRegionConfiguration(new DataRegionConfiguration().setPersistenceEnabled(true)); cfg.setDataStorageConfiguration(dsCfg); -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
