You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Martijn Visser (Jira)" <ji...@apache.org> on 2022/07/28 09:14:00 UTC

[jira] [Closed] (FLINK-5683) Fix RedisConnector documentation (Java)

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

Martijn Visser closed FLINK-5683.
---------------------------------
    Resolution: Won't Fix

Flink doesn't bundle Redis connector anymore

> Fix RedisConnector documentation (Java)
> ---------------------------------------
>
>                 Key: FLINK-5683
>                 URL: https://issues.apache.org/jira/browse/FLINK-5683
>             Project: Flink
>          Issue Type: Improvement
>          Components: Connectors / Common, Documentation
>    Affects Versions: 1.1.3, 1.1.4
>            Reporter: Vikram Rawat
>            Priority: Not a Priority
>              Labels: auto-deprioritized-major, auto-deprioritized-minor, redis
>
> The RedisConnector documentation for Java can be improved.
> https://ci.apache.org/projects/flink/flink-docs-release-1.1/apis/streaming/connectors/redis.html 
> The code snippet on the site is:
> DataStream<String> stream = ...;
> stream.addSink(new RedisSink<Tuple2<String, String>>(conf, new RedisExampleMapper());
> This gives compile time error in IDE. It should be changed to:
> DataStream<Tuple2<String, String>> stream = ...;
> stream.addSink(new RedisSink<Tuple2<String, String>>(conf, new RedisExampleMapper());
> The code snippets on the Project WebSite must be accurate so I recommend this change. And it will only take a few minutes. 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)