我一直在尝试找到一个连接器,用于将数据从Redis读取到Flink。 Flink的文档包含要写入Redis的连接器的说明。我需要在我的Flink工作中读取Redis的数据。在Using Apache Flink for data streaming中,Fabian提到可以从Redis读取数据。什么是可用于此目的的连接器?
答案 0 :(得分:1)
目前,Flink Redis Connector不可用,但可以通过扩展RichSinkFunction / SinkFunction类来实现。
public class RedisSink extends RichSinkFunction<String> {
@Override
public void open(Configuration parameters) throws Exception {
//open redis connection
}
@Override
public void invoke(String map) throws Exception {
//sink data to redis
}
@Override
public void close() throws Exception {
super.close();
}
}
答案 1 :(得分:0)
有一些关于为Apache Flink提供流式redis源连接器的讨论(见FLINK-3033),但没有一个可用。然而,实现一个并不困难。
答案 2 :(得分:0)
我们在生产中运行一个看起来大致相同的
class RedisSource extends RichSourceFunction[SomeDataType] {
var client: RedisClient = _
override def open(parameters: Configuration) = {
client = RedisClient() // init connection etc
}
@volatile var isRunning = true
override def cancel(): Unit = {
isRunning = false
client.close()
}
override def run(ctx: SourceContext[SomeDataType]): Unit = while (isRunning) {
for {
data <- ??? // get some data from the redis client
} yield ctx.collect(SomeDataType(data))
}
}
我认为这实际上取决于你需要从redis中获取什么。以上内容可用于从列表/队列中获取消息,转换/推送然后从队列中删除它。 Redis还支持Pub / Sub,因此可以订阅,获取SourceConext并向下游推送消息。
答案 3 :(得分:0)
让您的Flink程序使用Jedis与Redis交谈的挑战之一是将相应的库放入您提交给Flink的JAR文件中。如果没有这个,您将获得调用堆栈,指示某些类未定义。这是我创建的一个Maven pom.xml的片段,用于将Redis及其依赖组件apache commons-pool2移动到我的JAR中。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>unpack</id>
<!-- executed just before the package phase -->
<!-- https://ci.apache.org/projects/flink/flink-docs-release-1.3/dev/linking.html -->
<phase>prepare-package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.4.2</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<includes>org/apache/commons/**</includes>
</artifactItem>
<artifactItem>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<includes>redis/clients/**</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>