-
Notifications
You must be signed in to change notification settings - Fork 13.8k
[FLINK-6578] Fix self-loop handling in SharedBuffer. #3909
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
1215346 to
0fdcd37
Compare
| } | ||
|
|
||
| /** | ||
| * Extracts all the sequences of events from the start to the given computation state. An event |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With the Preconditions.checkState(paths.size() <= 1); all = 1
| * @param version Version of the previous relation | ||
| */ | ||
| public void put( | ||
| public int put( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing javadoc for return
| * @param version Version of the previous relation | ||
| */ | ||
| public void put( | ||
| public int put( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing javadoc for return
| */ | ||
| public void lock(final K key, final V value, final long timestamp) { | ||
| SharedBufferEntry<K, V> entry = get(key, value, timestamp); | ||
| public void lock(final K key, final V value, final long timestamp, int counter) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing javadoc for counter
| */ | ||
| public void release(final K key, final V value, final long timestamp) { | ||
| SharedBufferEntry<K, V> entry = get(key, value, timestamp); | ||
| public void release(final K key, final V value, final long timestamp, int counter) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing javadoc for counter
ff965e8 to
e01659b
Compare
|
Merged. |
This RP addresses: FLINK-6604, FLINK-6371, FLINK-6536, FLINK-6255, and FLINK-6578.
R @dawidwys