-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Retry on NoSuchNamespaceException not found in rename table for rest catalog #12159
Open
huan233usc
wants to merge
12
commits into
apache:main
Choose a base branch
from
huan233usc:rename
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
b69d774
retry on name space not found in rename table
huan233usc 66d4f79
remove debug log
huan233usc 2041c1f
Merge branch 'main' into rename
huan233usc 2ba5593
fix comment
huan233usc 498a47a
fix merge conflict
huan233usc 48d6d8e
fix format
huan233usc ca71487
move test
huan233usc 41ac42d
fix format
huan233usc 5bc2e1d
fix format
huan233usc 30c2b56
Merge branch 'main' into rename
huan233usc 4cc1130
Core: Remove catalog name during rename operation
huan233usc e18540d
Merge pull request #1 from nastra/remove-catalog-name-during-rename
huan233usc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -25,6 +25,7 @@ | |||||
import java.io.IOException; | ||||||
import java.io.UncheckedIOException; | ||||||
import java.time.Duration; | ||||||
import java.util.Arrays; | ||||||
import java.util.List; | ||||||
import java.util.Locale; | ||||||
import java.util.Map; | ||||||
|
@@ -428,7 +429,19 @@ public void renameTable(SessionContext context, TableIdentifier from, TableIdent | |||||
Endpoint.check(endpoints, Endpoint.V1_RENAME_TABLE); | ||||||
checkIdentifierIsValid(from); | ||||||
checkIdentifierIsValid(to); | ||||||
try { | ||||||
renameInternal(context, from, to); | ||||||
} catch (NoSuchNamespaceException e) { | ||||||
if (name().equals(to.namespace().level(0)) && to.namespace().length() > 1) { | ||||||
Namespace namespace = | ||||||
Namespace.of(Arrays.copyOfRange(to.namespace().levels(), 1, to.namespace().length())); | ||||||
TableIdentifier toWithStrippingCatalog = TableIdentifier.of(namespace, to.name()); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
renameInternal(context, from, toWithStrippingCatalog); | ||||||
} | ||||||
huan233usc marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
} | ||||||
} | ||||||
|
||||||
private void renameInternal(SessionContext context, TableIdentifier from, TableIdentifier to) { | ||||||
RenameTableRequest request = | ||||||
RenameTableRequest.builder().withSource(from).withDestination(to).build(); | ||||||
|
||||||
|
This file contains 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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -277,10 +277,6 @@ public void testAlterColumnPositionFirst() { | |||||
|
||||||
@TestTemplate | ||||||
public void testTableRename() { | ||||||
assumeThat(catalogConfig.get(ICEBERG_CATALOG_TYPE)) | ||||||
.as( | ||||||
"need to fix https://github.com/apache/iceberg/issues/11154 before enabling this for the REST catalog") | ||||||
.isNotEqualTo(ICEBERG_CATALOG_TYPE_REST); | ||||||
assumeThat(validationCatalog) | ||||||
.as("Hadoop catalog does not support rename") | ||||||
.isNotInstanceOf(HadoopCatalog.class); | ||||||
|
@@ -298,6 +294,37 @@ public void testTableRename() { | |||||
assertThat(validationCatalog.tableExists(renamedIdent)).as("New name should exist").isTrue(); | ||||||
} | ||||||
|
||||||
@TestTemplate | ||||||
public void testTableRenameInMultiLevelNameSpace() { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
assumeThat(catalogConfig.get(ICEBERG_CATALOG_TYPE)).isEqualTo(ICEBERG_CATALOG_TYPE_REST); | ||||||
|
||||||
assertThat(validationCatalog.tableExists(tableIdent)).as("Initial name should exist").isTrue(); | ||||||
// Use a special case that first level name space is same as catalog name | ||||||
sql("CREATE NAMESPACE IF NOT EXISTS %s.%s.secondlevel", catalogName, catalogName); | ||||||
|
||||||
sql("ALTER TABLE %s RENAME TO %s.secondlevel.table2", tableName, catalogName); | ||||||
|
||||||
assertThat(validationCatalog.tableExists(tableIdent)) | ||||||
.as("Initial name should not exist") | ||||||
.isFalse(); | ||||||
assertThat( | ||||||
validationCatalog.tableExists(TableIdentifier.of(catalogName, "secondlevel", "table2"))) | ||||||
.as("New name should exist") | ||||||
.isTrue(); | ||||||
|
||||||
sql( | ||||||
"ALTER TABLE %s.%s.secondlevel.table2 RENAME TO %s.%s.secondlevel.table3", | ||||||
catalogName, catalogName, catalogName, catalogName); | ||||||
assertThat( | ||||||
validationCatalog.tableExists(TableIdentifier.of(catalogName, "secondlevel", "table2"))) | ||||||
.as("Second name should not exist") | ||||||
.isFalse(); | ||||||
assertThat( | ||||||
validationCatalog.tableExists(TableIdentifier.of(catalogName, "secondlevel", "table3"))) | ||||||
.as("Third name should exist") | ||||||
.isTrue(); | ||||||
} | ||||||
|
||||||
@TestTemplate | ||||||
public void testSetTableProperties() { | ||||||
sql("ALTER TABLE %s SET TBLPROPERTIES ('prop'='value')", tableName); | ||||||
|
Oops, something went wrong.
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.
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.
can you please add some tests to
CatalogTests
and toViewCatalogTests
?