-
Notifications
You must be signed in to change notification settings - Fork 80
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
feat!: support refreshing Iceberg tables #5707
Conversation
engine/table/src/main/java/io/deephaven/engine/table/impl/locations/TableLocationProvider.java
Outdated
Show resolved
Hide resolved
/** | ||
* Notify the listener of a {@link TableLocationKey} encountered while initiating or maintaining the location | ||
* subscription. This should occur at most once per location, but the order of delivery is <i>not</i> | ||
* guaranteed. | ||
* | ||
* @param tableLocationKey The new table location key | ||
*/ | ||
void handleTableLocationKey(@NotNull ImmutableTableLocationKey tableLocationKey); | ||
void handleTableLocationKeyAdded(@NotNull ImmutableTableLocationKey tableLocationKey); |
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.
Good change, may be breaking for DHE, please consult Andy pre-merge.
void beginTransaction(); | ||
|
||
void endTransaction(); | ||
|
||
/** | ||
* Notify the listener of a {@link TableLocationKey} encountered while initiating or maintaining the location | ||
* subscription. This should occur at most once per location, but the order of delivery is <i>not</i> |
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.
Consider whether we can have add + remove + add. What about remove + add in the same pull?
Should document that this may change the "at most once per location" guarantee, and define semantics.
I think it should be something like:
We allow re-add of a removed TLK. Downstream consumers should process these in an order that respects delivery and transactionality.
Within one transaction, expect at most one of "remove" or "add" for a given TLK.
Within one transaction, we can allow remove followed by add, but not add followed by remove. This dictates that we deliver pending removes before pending adds in processPending
.
That is, one transaction allows:
- Replace a TLK (remove followed by add)
- Remove a TLK (remove)
- Add a TLK (add)
Double add, double remove, or add followed by remove is right out.
Processing an addition to a transaction.
- Remove: If there's an existing accumulated remove, error. Else, if there's an existing accumulated add, error. Else, accumulate the remove.
- Add: If there's an existing accumulated add, error. Else, accumulate the add.
Across multiple transactions delivered as a batch, ensure that the right end-state is achieved.
- Add + remove collapses pairwise to no-op
- Remove + add (assuming prior add) should be processed in order. We might very well choose to not allow re-add at this time, I don't expect Iceberg to do this. If we do allow it, we need to be conscious that the removed location's region(s) need(s) to be used for previous data, while the added one needs to be used for current data.
- Multiple adds or removes
withinwithout their opposite intervening is an error.
null
token should be handled exactly the same as a single-element transaction.
Processing a transaction:
- Process removes first. If there's an add pending, then delete, swallow the remove. Else, if there's a remove pending, error. Else, store the remove as pending.
- Process adds. If there's an add pending, error. Else, store the add as pending.
Note: removal support means that RegionedColumnSources may no longer be immutable! We need to be sure that we are aware of whether a particular TLP might remove data, and ensure that in those cases the RCS is not marked immutable. REVISED: ONLY REPLACE IS AN ISSUE FOR IMMUTABILITY, AS LONG AS WE DON'T RESUSE SLOTS.
We discussed that TLPs should probably specify whether they are guaranteeing that they will never remove TLKs, and whether their TLs will never remove or modify rows. I think if and when we encounter data sources that require modify support, we should probably just use SourcePartitionedTable
instead of PartitionAwareSourceTable
.
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.
I'm not sure if I need to handle the RCS immutability question in this PR since Iceberg will not modify rows.
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.
Removing a region makes the values in the corresponding row key range disappear. That's OK for immutability.
If you allow a new region to use the same slot, or allow the old region to reincarnate in the same slot potentially with different data, you are violating immutability.
Not reusing slots means that a long-lived iceberg table may eventually exhaust its row key space.
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.
Replace (remove + add of a TLK) requires some kind of versioning of the TL, in a way that the TLK is aware of in order to ensure that we provide the table with the right TL for the version. AbstractTableLocationProvider
's location caching layer is not currently sufficient for atomically replacing TLs.
...e/src/main/java/io/deephaven/engine/table/impl/locations/impl/CompositeTableDataService.java
Show resolved
Hide resolved
...c/main/java/io/deephaven/engine/table/impl/locations/impl/AbstractTableLocationProvider.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergCatalogAdapter.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergCatalogAdapter.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergTable.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergTable.java
Outdated
Show resolved
Hide resolved
...ceberg/src/main/java/io/deephaven/iceberg/layout/IcebergRefreshingTableLocationProvider.java
Outdated
Show resolved
Hide resolved
engine/table/src/main/java/io/deephaven/engine/table/impl/SourceTable.java
Outdated
Show resolved
Hide resolved
engine/table/src/main/java/io/deephaven/engine/table/impl/locations/TableLocationProvider.java
Outdated
Show resolved
Hide resolved
engine/table/src/main/java/io/deephaven/engine/table/impl/locations/TableLocationProvider.java
Outdated
Show resolved
Hide resolved
engine/table/src/main/java/io/deephaven/engine/table/impl/locations/TableLocationProvider.java
Outdated
Show resolved
Hide resolved
engine/table/src/main/java/io/deephaven/engine/table/impl/locations/TableLocationProvider.java
Outdated
Show resolved
Hide resolved
...c/main/java/io/deephaven/engine/table/impl/sources/regioned/RegionedColumnSourceManager.java
Outdated
Show resolved
Hide resolved
...ceberg/src/main/java/io/deephaven/iceberg/layout/IcebergRefreshingTableLocationProvider.java
Outdated
Show resolved
Hide resolved
...ions/iceberg/src/main/java/io/deephaven/iceberg/layout/IcebergTableLocationProviderBase.java
Outdated
Show resolved
Hide resolved
...ions/iceberg/src/main/java/io/deephaven/iceberg/layout/IcebergTableLocationProviderBase.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergTableRefreshing.java
Outdated
Show resolved
Hide resolved
* must also be newer (higher in sequence number) than the current snapshot or an {@link IllegalArgumentException} | ||
* is thrown. | ||
* Update a manually refreshing table location provider with a specific snapshot from the catalog. If the | ||
* {@code snapshotId} is not found in the list of snapshots for the table, an {@link IllegalArgumentException} is |
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.
Does Iceberg have a SnapshotNotFoundException
? If not, should we add one of our own? IAE is OK, though.
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.
Iceberg does not produce an error when a snapshot is not matched. Intending to keep these as IAE rather than create an exception used exactly once.
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.
.
...erg/src/main/java/io/deephaven/iceberg/layout/IcebergManualRefreshTableLocationProvider.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergInstructions.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergInstructions.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergTable.java
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergTableAdapter.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergTableAdapter.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergTableAdapter.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergTableAdapter.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/layout/IcebergBaseLayout.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/layout/IcebergBaseLayout.java
Outdated
Show resolved
Hide resolved
extensions/iceberg/src/main/java/io/deephaven/iceberg/util/IcebergTableAdapter.java
Outdated
Show resolved
Hide resolved
def update(self, snapshot_id:Optional[int] = None): | ||
""" | ||
Updates the table with a specific snapshot. If no snapshot is provided, the most recent snapshot is used. |
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.
Updates the table to match the contents of the specified snapshot. This may result in row removes and additions that will be propagated asynchronously via this IcebergTable's UpdateGraph.
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.
.
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.
Provided a few bits of feedback in Slack.
…g Iceberg tables.
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.
Am I correct to assume that we still don't unit test python iceberg?
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.
Yes, still correct. We created #5656 and this is a priority for us. With JDBC + sqlite catalogs, we are pretty confident we can get full python testing on a local catalog.
Labels indicate documentation is required. Issues for documentation have been opened: Community: deephaven/deephaven-docs-community#328 |
Add two methods of refreshing tables:
Example code:
Java automatic and manually refreshing tables
Python automatic and manually refreshing tables