Dmitriy, According to the docs, INSERTS are transformed into cache.putIfAbsent or cache.invokeAll operations: https://apacheignite-sql.readme.io/docs/insert#section-description
UPDATES are turned into cache.invokeAll all the times: https://apacheignite-sql.readme.io/docs/update#section-description Once an SQL statement becomes a key-value operation(s) we should update both RAM and a 3rd party database following a standard contract: https://apacheignite.readme.io/docs/3rd-party-store SQL experts, please confirm my understanding is correct. -- Denis On Sun, Apr 22, 2018 at 7:54 AM, Dmitriy Setrakyan <[email protected]> wrote: > Igniters, > > Do we support write-through to a 3rd party database when performing SQL > inserts and updates? If yes, how does the mapping between SQL and > CacheStore key-value API happen? > > D. >
