Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
* A window store that only supports read operations.
* Implementations should be thread-safe as concurrent reads and writes are expected.
*
* <p>Note: The current implementation of either forward or backward fetches on range-key-range-time does not
* obey the ordering when there are multiple local stores hosted on that instance. For example,
* if there are two stores from two tasks hosting keys {1,3} and {2,4}, then a range query of key [1,4]
* would return in the order of [1,3,2,4] but not [1,2,3,4] since it is just looping over the stores only.
*
* @param <K> Type of keys
* @param <V> Type of values
*/
Expand Down