[
https://issues.apache.org/jira/browse/FLINK-5283?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ted Yu updated FLINK-5283:
--------------------------
Description:
{code}
HashMap<String, RocksDBStateBackend.FinalFullyAsyncSnapshot> namedStates =
InstantiationUtil.deserializeObject(restoreState.iterator().next().openInputStream(),
userCodeClassLoader);
{code}
The InputStream returned by openInputStream() should be closed upon return from
the method.
Similar problem exists in HeapKeyedStateBackend#restoreOldSavepointKeyedState
was:
{code}
HashMap<String, RocksDBStateBackend.FinalFullyAsyncSnapshot> namedStates =
InstantiationUtil.deserializeObject(restoreState.iterator().next().openInputStream(),
userCodeClassLoader);
{code}
The InputStream returned by openInputStream() should be closed upon return from
the method.
Similar problem exists in HeapKeyedStateBackend#restoreOldSavepointKeyedState
> InputStream should be closed in
> RocksDBKeyedStateBackend#restoreOldSavepointKeyedState
> --------------------------------------------------------------------------------------
>
> Key: FLINK-5283
> URL: https://issues.apache.org/jira/browse/FLINK-5283
> Project: Flink
> Issue Type: Bug
> Reporter: Ted Yu
> Assignee: Stefan Richter
> Priority: Minor
>
> {code}
> HashMap<String, RocksDBStateBackend.FinalFullyAsyncSnapshot> namedStates =
>
> InstantiationUtil.deserializeObject(restoreState.iterator().next().openInputStream(),
> userCodeClassLoader);
> {code}
> The InputStream returned by openInputStream() should be closed upon return
> from the method.
> Similar problem exists in HeapKeyedStateBackend#restoreOldSavepointKeyedState
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)