Impala Public Jenkins has submitted this change and it was merged. ( http://gerrit.cloudera.org:8080/23349 )
Change subject: IMPALA-14358: Event processing can invalidate Iceberg tables ...................................................................... IMPALA-14358: Event processing can invalidate Iceberg tables IMPALA-12829 added extra code to CatalogServiceCatalog's reloadTableIfExists() that can throw a ClassCastException when it reloads an Iceberg table. When it happens during event processing the event processor invalidates the table. This usually happens when another engine updates an Iceberg table. It then causes slow table loading times as the tables need to be fully reloaded instead of just doing an incremental table loading. This patches fixes the ClassCastException by moving the cast into an if statement. Testing * e2e tests added Change-Id: I892cf326a72024674facad6750893352b982c658 Reviewed-on: http://gerrit.cloudera.org:8080/23349 Reviewed-by: Csaba Ringhofer <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- M fe/src/main/java/org/apache/impala/catalog/CatalogServiceCatalog.java M tests/metadata/test_event_processing.py 2 files changed, 42 insertions(+), 25 deletions(-) Approvals: Csaba Ringhofer: Looks good to me, approved Impala Public Jenkins: Verified -- To view, visit http://gerrit.cloudera.org:8080/23349 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-MessageType: merged Gerrit-Change-Id: I892cf326a72024674facad6750893352b982c658 Gerrit-Change-Number: 23349 Gerrit-PatchSet: 3 Gerrit-Owner: Zoltan Borok-Nagy <[email protected]> Gerrit-Reviewer: Csaba Ringhofer <[email protected]> Gerrit-Reviewer: Impala Public Jenkins <[email protected]> Gerrit-Reviewer: Quanlong Huang <[email protected]> Gerrit-Reviewer: Sai Hemanth Gantasala <[email protected]> Gerrit-Reviewer: Zoltan Borok-Nagy <[email protected]>
