Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
As a first step towards MV-storage in Ignite 3.0 it's required to have specific methods on the partition storage and index storage interfaces. These will replace currently available VersionedRowStore, which was a prototype in itself and doesn't correspond to a desired functionality.
Partition storage needs:
- addWrite(k, v, txId)
- commitWrite(k, ts)
- abortWrite(k)
- read(k, ts)
- scan(ts, tbd)
- cleanup(tbd)
Sorted index storage needs:
- scan(lower, upper, bounds_options, projection, partition_filter, ts)
Index updates will be hidden inside of addWrite, abortWrite and cleanup methods. No external "update" and "remove" are required.
This particular issue is a precursor for the https://issues.apache.org/jira/browse/IGNITE-16611.
Reference implementation is also required, it'll provide an example of what's expected from the storage and a set of tests to fix methods contracts.
Attachments
Issue Links
- Blocked
-
IGNITE-16881 Integrate MV-storage into current tx implementation
- Resolved
- links to