Keep keyed state across multiple transformations

冷暖自知 提交于 2019-12-04 15:08:51

You can not.

Even if you would call keyBy() a second time (or somehow pass the "key-ed" information downstream), you would get a new state because a state is associated to a single operator only.

As as workaround, you need to merge both operators into one.

If you think this feature might be helpful, feel free to suggest it at dev@flink.apache.org.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!