You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Dawid Wysakowicz (Jira)" <ji...@apache.org> on 2021/01/27 20:05:00 UTC

[jira] [Created] (FLINK-21167) Make StateTable snapshots iterable

Dawid Wysakowicz created FLINK-21167:
----------------------------------------

             Summary: Make StateTable snapshots iterable
                 Key: FLINK-21167
                 URL: https://issues.apache.org/jira/browse/FLINK-21167
             Project: Flink
          Issue Type: Sub-task
          Components: Runtime / Checkpointing, Runtime / State Backends
            Reporter: Dawid Wysakowicz
            Assignee: Dawid Wysakowicz
             Fix For: 1.13.0


In order to implement an iterator required by a binary unified savepoint we need a way to iterate a snapshot. We should add an interface

{code}
@Internal
public interface IterableStateSnapshot<K, N, S> extends StateSnapshot {
    Iterator<StateEntry<K, N, S>> getIterator(int keyGroup);
}
{code}

that will be implemented by StateTableSnapshots.





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