You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Stefan Richter (JIRA)" <ji...@apache.org> on 2018/02/28 13:04:00 UTC

[jira] [Closed] (FLINK-8515) update RocksDBMapState to replace deprecated remove() with delete()

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

Stefan Richter closed FLINK-8515.
---------------------------------
    Resolution: Fixed

Already fixed in ff6662c.

> update RocksDBMapState to replace deprecated remove() with delete()
> -------------------------------------------------------------------
>
>                 Key: FLINK-8515
>                 URL: https://issues.apache.org/jira/browse/FLINK-8515
>             Project: Flink
>          Issue Type: Improvement
>          Components: State Backends, Checkpointing
>    Affects Versions: 1.5.0
>            Reporter: Bowen Li
>            Assignee: Bowen Li
>            Priority: Minor
>             Fix For: 1.5.0
>
>
> Currently in RocksDBMapState:
> {code:java}
> @Override
> 	public void remove(UK userKey) throws IOException, RocksDBException {
> 		byte[] rawKeyBytes = serializeUserKeyWithCurrentKeyAndNamespace(userKey);
> 		backend.db.remove(columnFamily, writeOptions, rawKeyBytes);
> 	}
> {code}
> remove() is actually deprecated. Should be replaced with delete()



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)