美文网首页
Flink多流和和维表实现对比

Flink多流和和维表实现对比

作者: zh_harry | 来源:发表于2020-04-08 10:24 被阅读0次
/**
     * Operator used for directing tuples to specific named outputs using an
     * {@link org.apache.flink.streaming.api.collector.selector.OutputSelector}.
     * Calling this method on an operator creates a new {@link SplitStream}.
     *
     * @param outputSelector
     *            The user defined
     *            {@link org.apache.flink.streaming.api.collector.selector.OutputSelector}
     *            for directing the tuples.
     * @return The {@link SplitStream}
     * @deprecated Please use side ouput instead.
     */
    @Deprecated
    public SplitStream<T> split(OutputSelector<T> outputSelector) {
        return new SplitStream<>(this, clean(outputSelector));
    }

维表方案对比

header 1 预加载DB数据到内存 Distrbuted Cache 热存储关联 广播维表 Temporal Table Function join
实现复杂度
维表数据量
维表更新频率
维表更新实时性
维表形式 DB 文件 热存储 实时流 实时流
是否依赖外部存储

相关文章

网友评论

      本文标题:Flink多流和和维表实现对比

      本文链接:https://www.haomeiwen.com/subject/blyvxhtx.html