Re: How to perform this join operation?
Posted by
Elias Levy on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/How-to-perform-this-join-operation-tp6088p7061.html
Till,
An issue with your suggestion is that the job state may grow unbounded. You are managing
expiration of data from the cache in the operator, but the state is partitioned by the stream key.
That means if we no longer observe a key, the state associated with that key will never be
removed.
In my data set keys come and go, and many will never be observed again. That will lead to
continuous state growth over time.