Fix Iceberg metadata listing failure when materialized view dropped#10844
Merged
findepi merged 6 commits intotrinodb:masterfrom Mar 4, 2022
Merged
Fix Iceberg metadata listing failure when materialized view dropped#10844findepi merged 6 commits intotrinodb:masterfrom
findepi merged 6 commits intotrinodb:masterfrom
Conversation
37650c4 to
dfe8e50
Compare
dfe8e50 to
a609f99
Compare
findepi
commented
Jan 28, 2022
plugin/trino-sqlserver/src/test/java/io/trino/plugin/sqlserver/BaseSqlServerConnectorTest.java
Outdated
Show resolved
Hide resolved
a609f99 to
204cdff
Compare
Member
Author
|
stress test green https://github.com/trinodb/trino/runs/4984192609?check_suite_focus=true except #9658 |
2bee038 to
6b944ed
Compare
alexjo2144
reviewed
Jan 28, 2022
plugin/trino-sqlserver/src/test/java/io/trino/plugin/sqlserver/BaseSqlServerConnectorTest.java
Outdated
Show resolved
Hide resolved
c98bfeb to
8e0fcc1
Compare
8e0fcc1 to
2259982
Compare
Member
Author
|
(rebased) |
2259982 to
906ba83
Compare
906ba83 to
62bc793
Compare
Member
Author
|
(rebased) |
62bc793 to
74c1ec9
Compare
findepi
commented
Feb 2, 2022
plugin/trino-phoenix/src/test/java/io/trino/plugin/phoenix/TestPhoenixConnectorTest.java
Outdated
Show resolved
Hide resolved
findepi
commented
Feb 2, 2022
plugin/trino-phoenix5/src/test/java/io/trino/plugin/phoenix5/TestPhoenixConnectorTest.java
Outdated
Show resolved
Hide resolved
findepi
commented
Feb 2, 2022
plugin/trino-phoenix/src/test/java/io/trino/plugin/phoenix/TestPhoenixConnectorTest.java
Outdated
Show resolved
Hide resolved
findepi
commented
Feb 2, 2022
plugin/trino-phoenix5/src/test/java/io/trino/plugin/phoenix5/TestPhoenixConnectorTest.java
Outdated
Show resolved
Hide resolved
findepi
commented
Feb 2, 2022
plugin/trino-sqlserver/src/test/java/io/trino/plugin/sqlserver/BaseSqlServerConnectorTest.java
Outdated
Show resolved
Hide resolved
Member
Author
|
resolved (snd squashed fixups) to resolve conflicts |
4649ac4 to
9277446
Compare
8501c7b to
94ebab1
Compare
Member
Author
|
rebased & updated after #11134 |
bc982fc to
f9673ff
Compare
Member
Author
Member
Author
will disable |
f9673ff to
dbf8a6f
Compare
hashhar
approved these changes
Feb 28, 2022
Member
hashhar
left a comment
There was a problem hiding this comment.
LGTM % someone more familiar with Iceberg to look at "Fix Iceberg metadata listing failure when materialized view dropped". The fix looks ok to me but I don't know all failure modes in Iceberg connector. cc: @alexjo2144
Member
Author
|
Conflict, will rebase to resolve. |
Unexpected exceptions shouldn't be swallowed silently, if they are not being dealt with.
E.g. `SHOW TABLES` must not fail when tables, views or materialized views are concurrently created or dropped.
Fix `SHOW TABLES` and `information_schema.tables` read failure when materialized view is concurrently dropped
dbf8a6f to
a396163
Compare
Member
Author
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix
SHOW TABLESandinformation_schema.tablesread failure whenmaterialized view is concurrently dropped
Fixes #10976