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
13 changes: 13 additions & 0 deletions core/src/main/java/org/apache/iceberg/rest/RESTSessionCatalog.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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?

} 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());
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());

renameInternal(context, from, toWithStrippingCatalog);
}
}
}

private void renameInternal(SessionContext context, TableIdentifier from, TableIdentifier to) {
RenameTableRequest request =
RenameTableRequest.builder().withSource(from).withDestination(to).build();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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() {

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);
Expand Down
Loading