I am trying to do the below use case and I am unable to find any explanation about how to do it with Apache Geode.
For example:
I have an Apache Geode Region called A (1000 records) that has the SD Repository "crudRepoA".
During run-time I want to snapshot this Region to another Region called A1 (1000 records) and use a similar CRUD Repository that I have defined on Region A.
Is live Snapshot possible with an out-of-the-box feature of Apache Geode?
Is it possible to use the "crudRepoA" on this newly created Region?
Is there a way to create a new "crudRepoA1" (identical to "crudRepoA") on the fly and run my queries on this newly created Region?