Skip to content
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
wants to merge 12 commits into
base: main
Choose a base branch
from

Conversation

huan233usc
Copy link

This PR attempts to fix the issue mentioned in #11154.

On NoSuchNamespaceException, we retry rename table with stripping the catalog name if the first level in table identifier is catalog name

@huan233usc huan233usc changed the title Retry on NoSuchNamespaceException not found in rename table Retry on NoSuchNamespaceException not found in rename table for rest catalog Feb 2, 2025
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());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
TableIdentifier toWithStrippingCatalog = TableIdentifier.of(namespace, to.name());
TableIdentifier toWithoutCatalog = TableIdentifier.of(namespace, to.name());

@@ -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);
Copy link
Contributor

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 to ViewCatalogTests?

@huan233usc
Copy link
Author

Updated PR with comments, working on resolving conflict

@huan233usc huan233usc requested a review from nastra March 1, 2025 22:40
@@ -2506,6 +2506,29 @@ public void testNamespaceExistsViaHEADRequest() {
any());
}

@Test
public void renameTableNamespaceWithCatalogName() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please move this to CatalogTests so that we can test the same behavior with different catalog implementations

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done, only RestCatalog(maybe Hive also?) handles this case for now.

@@ -244,6 +244,33 @@ public void viewExistsViaHEADRequest() {
any());
}

@Test
public void renameViewNamespaceHavingCatalogName() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
public void renameViewNamespaceHavingCatalogName() {
public void renameViewNamespaceWithCatalogName() {

please move this to ViewCatalogTests so that we can test the same behavior with different catalog implementations

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

if (requiresNamespaceCreate()) {
catalog().createNamespace(from.namespace());
}
assertThat(catalog().viewExists(from)).as("View should not exist").isFalse();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: please add a newline right before this line

@@ -298,6 +294,37 @@ public void testTableRename() {
assertThat(validationCatalog.tableExists(renamedIdent)).as("New name should exist").isTrue();
}

@TestTemplate
public void testTableRenameInMultiLevelNameSpace() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
public void testTableRenameInMultiLevelNameSpace() {
public void testTableRenameWithNestedNamespace() {

@huan233usc huan233usc requested a review from nastra March 4, 2025 05:43
@nastra
Copy link
Contributor

nastra commented Mar 4, 2025

@huan233usc can you rebase your branch against latest main please? I've opened huan233usc#1 against your branch with an alternative fix that we can explore. This would also fix this issue for other catalogs

@huan233usc
Copy link
Author

Done
截屏2025-03-04 下午7 12 09

@nastra
Copy link
Contributor

nastra commented Mar 14, 2025

@huan233usc thanks for your patience on the PR here, I haven't forgotten about it but I need to explore how we can potentially fix this on the Spark side. @amogh-jahagirdar could you in the meantime also take a look at this please?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants