Apache Ignite Ack Back

29 Views Asked by At

I am exploring Apache Ignite with Spring Boot, and I have a requirement to ensure data is restored into in-memory even after server reboots, and I need acknowledgements for data insertion. Is there an in-built acknowledgement feature in Apache Ignite for this, and are there any resources for integrating Apache Ignite with Spring Boot?

1

There are 1 best solutions below

0
On

By default, writes into Ignite are synchronous, meaning that if it returns, then the data has been correctly stored. You can influence what "correctly stored" means using the writeSynchronizationMode option when you create your tables.

The documentation includes references to Spring Boot, Spring Data and Spring Caching, depending on how you want to build your application.