Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
TC failure link
Likely the reason of the failure is the same as in https://issues.apache.org/jira/browse/IGNITE-22986: incorrect storage and raft stop order. E.g. in the ItMetaStorageServicePersistenceTest we first stop the storage
@AfterEach
void tearDown() throws Exception {
IgniteUtils.closeAll(storageByName.values().stream().map(storage -> storage::close));
}
and then in the base class ItAbstractListenerSnapshotTest stop the raft
@AfterEach public void afterTest() throws Exception { Stream<AutoCloseable> stopRaftGroups = servers.stream().map(s -> () -> s.stopRaftNodes(raftGroupId()));
I didn't check whether it's the only test with the problem or not.
Attachments
Issue Links
- relates to
-
IGNITE-22986 JVM can crash due to access to spill-related RocksDB after closing it
- Resolved
- links to