You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we assume that each operator has its own key, so currently, we add "keyby" after each operator except for the sink.
It is a problem when rescaling such an operator. Because in our design, rescale a stateless operator does not need synchronization. However, that will cause the operator to receive a key that does not belong to it.
In flink, when processing data, it will extract key using the code below:
Since we assume that each operator has its own key, so currently, we add "keyby" after each operator except for the sink.
It is a problem when rescaling such an operator. Because in our design, rescale a stateless operator does not need synchronization. However, that will cause the operator to receive a key that does not belong to it.
In flink, when processing data, it will extract key using the code below:
When receiving other's keys, an exception will be thrown.
The text was updated successfully, but these errors were encountered: