nizhikov commented on a change in pull request #9345:
URL: https://github.com/apache/ignite/pull/9345#discussion_r823812263
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/GridCacheOffheapManager.java
##########
@@ -1041,7 +1041,7 @@ public void destroyPartitionStore(int partId) throws
IgniteCheckedException {
int tag = pageMemory.invalidate(grp.groupId(), partId);
- if (grp.walEnabled())
+ if (grp.persistenceEnabled() && grp.walEnabled())
Review comment:
> CheckpointWorkflow#fillCacheGroupState which may be the mistake
Checkpoint can only happens when persistence enabled.
So code flow don't get to `CheckpointWorkflow` is persistence disabled.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]