You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Ilya Kasnacheev (Jira)" <ji...@apache.org> on 2020/11/05 14:56:00 UTC

[jira] [Updated] (IGNITE-13658) Volatile cache writes to persistent storage.

     [ https://issues.apache.org/jira/browse/IGNITE-13658?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ilya Kasnacheev updated IGNITE-13658:
-------------------------------------
    Fix Version/s: 2.10

> Volatile cache writes to persistent storage.
> --------------------------------------------
>
>                 Key: IGNITE-13658
>                 URL: https://issues.apache.org/jira/browse/IGNITE-13658
>             Project: Ignite
>          Issue Type: Bug
>          Components: data structures
>    Affects Versions: 2.9
>            Reporter: Stanilovsky Evgeny
>            Assignee: Stanilovsky Evgeny
>            Priority: Major
>             Fix For: 2.10
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> Various cluster synchronization primitives (latch, lock, semaphore e.t.c) are using volatile cache (`default-volatile-ds-group`). State of this primitives does not make sense on storage (restore, recovery), primitive's state is useful only for process in action.
> But it was stored in system data region.
> {noformat}
> if (cacheType != CacheType.USER && cfg.getDataRegionName() == null)            
>  cfg.setDataRegionName(cacheProcessor.context().database().systemDateRegionName());
> {noformat}
> Which persisted if cluster have any persistent region:
> {noformat}
>         addDataRegion(
>             memCfg,
>             createSystemDataRegion(
>                 memCfg.getSystemRegionInitialSize(),
>                 memCfg.getSystemRegionMaxSize(),
>                 CU.isPersistenceEnabled(memCfg)
>             ),
>             CU.isPersistenceEnabled(memCfg)
>         );
> {noformat}
> Should to have dedicate system region for volatile cache, and it should be in-memory.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)