[
https://issues.apache.org/jira/browse/IGNITE-14790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Vladislav Pyatkov updated IGNITE-14790:
---------------------------------------
Description:
The map is using as a temporary solution until storage will be implemented.
Here we need to implement the RAFT listener through the persistent layer:
{code:java}
/**
* Storage.
* This is a temporary solution, it will apply until persistence layer
would not be implemented.
* TODO: Replace in the future.
*/
private ConcurrentHashMap<KeyWrapper, BinaryRow> storage = new
ConcurrentHashMap<>();
{code}
was:
The map is using as a temporary solution until storage will be implemented.
Here we need to implement the RAFT listener through the persistent layer:
{code:java}
/**
* Storage.
* This is a temporary solution, it will apply until persistence layer
would not be implemented.
* TODO: Replace in the future.
*/
private ConcurrentHashMap<KeyWrapper, BinaryRow> storage = new
ConcurrentHashMap<>();
{code}
> Replace a storage map in RAFT partition listener to the persistence storage
> ---------------------------------------------------------------------------
>
> Key: IGNITE-14790
> URL: https://issues.apache.org/jira/browse/IGNITE-14790
> Project: Ignite
> Issue Type: Improvement
> Reporter: Vladislav Pyatkov
> Assignee: Vladislav Pyatkov
> Priority: Major
>
> The map is using as a temporary solution until storage will be implemented.
> Here we need to implement the RAFT listener through the persistent layer:
> {code:java}
> /**
> * Storage.
> * This is a temporary solution, it will apply until persistence layer
> would not be implemented.
> * TODO: Replace in the future.
> */
> private ConcurrentHashMap<KeyWrapper, BinaryRow> storage = new
> ConcurrentHashMap<>();
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)