All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.trino.tests.product.deltalake.util.DeltaLakeTestUtils Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.trino.tests.product.deltalake.util;
import com.amazonaws.services.glue.model.ConcurrentModificationException;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.model.DeleteObjectsRequest;
import com.amazonaws.services.s3.model.ObjectListing;
import com.amazonaws.services.s3.model.S3ObjectSummary;
import com.google.common.base.Throwables;
import dev.failsafe.Failsafe;
import dev.failsafe.RetryPolicy;
import io.airlift.log.Logger;
import io.trino.tempto.query.QueryResult;
import org.intellij.lang.annotations.Language;
import java.sql.SQLException;
import java.time.temporal.ChronoUnit;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.regex.Pattern;
import static com.google.common.collect.ImmutableList.toImmutableList;
import static com.google.common.collect.ImmutableMap.toImmutableMap;
import static com.google.common.collect.Iterables.getOnlyElement;
import static com.google.common.collect.MoreCollectors.onlyElement;
import static io.trino.tests.product.utils.QueryExecutors.onDelta;
import static io.trino.tests.product.utils.QueryExecutors.onTrino;
import static java.lang.String.format;
public final class DeltaLakeTestUtils
{
private static final Logger log = Logger.get(DeltaLakeTestUtils.class);
public static final String DATABRICKS_COMMUNICATION_FAILURE_ISSUE = "https://github.com/trinodb/trino/issues/14391";
@Language("RegExp")
public static final String DATABRICKS_COMMUNICATION_FAILURE_MATCH =
"\\Q[Databricks][\\E(DatabricksJDBCDriver|JDBCDriver)\\Q](500593) Communication link failure. Failed to connect to server. Reason: \\E" +
"(" +
"(HTTP retry after response received with no Retry-After header, error: HTTP Response code: 503|HTTP Response code: 504), Error message: Unknown." +
"|java.net.SocketTimeoutException: Read timed out." +
")";
private static final RetryPolicy DATABRICKS_COMMUNICATION_FAILURE_RETRY_POLICY = RetryPolicy.builder()
.handleIf(throwable -> Throwables.getRootCause(throwable) instanceof SQLException)
.handleIf(throwable -> Pattern.compile(DATABRICKS_COMMUNICATION_FAILURE_MATCH).matcher(Throwables.getRootCause(throwable).getMessage()).find())
.withBackoff(1, 10, ChronoUnit.SECONDS)
.withMaxRetries(3)
.onRetry(event -> log.warn(event.getLastException(), "Query failed on attempt %d, will retry.", event.getAttemptCount()))
.build();
private static final RetryPolicy CONCURRENT_MODIFICATION_EXCEPTION_RETRY_POLICY = RetryPolicy.builder()
.handleIf(throwable -> Throwables.getRootCause(throwable) instanceof ConcurrentModificationException)
.handleIf(throwable -> throwable.getMessage() != null && throwable.getMessage().contains("Table being modified concurrently"))
.withBackoff(1, 10, ChronoUnit.SECONDS)
.withMaxRetries(3)
.onRetry(event -> log.warn(event.getLastException(), "Query failed on attempt %d, will retry.", event.getAttemptCount()))
.build();
private DeltaLakeTestUtils() {}
public static Optional getDatabricksRuntimeVersion()
{
String version = (String) Failsafe.with(DATABRICKS_COMMUNICATION_FAILURE_RETRY_POLICY)
.get(() -> onDelta().executeQuery("SELECT java_method('java.lang.System', 'getenv', 'DATABRICKS_RUNTIME_VERSION')"))
.getOnlyValue();
// OSS Spark returns null
if (version.equals("null")) {
return Optional.empty();
}
return Optional.of(DatabricksVersion.parse(version));
}
public static List getColumnNamesOnDelta(String schemaName, String tableName)
{
QueryResult result = Failsafe.with(DATABRICKS_COMMUNICATION_FAILURE_RETRY_POLICY)
.get(() -> onDelta().executeQuery("SHOW COLUMNS IN " + schemaName + "." + tableName));
return result.column(1);
}
public static String getColumnCommentOnTrino(String schemaName, String tableName, String columnName)
{
return (String) onTrino()
.executeQuery("SELECT comment FROM delta.information_schema.columns WHERE table_schema = '" + schemaName + "' AND table_name = '" + tableName + "' AND column_name = '" + columnName + "'")
.getOnlyValue();
}
public static String getColumnCommentOnDelta(String schemaName, String tableName, String columnName)
{
QueryResult result = Failsafe.with(DATABRICKS_COMMUNICATION_FAILURE_RETRY_POLICY)
.get(() -> onDelta().executeQuery(format("DESCRIBE %s.%s %s", schemaName, tableName, columnName)));
return (String) result.row(2).get(1);
}
public static String getTableCommentOnTrino(String schemaName, String tableName)
{
return (String) onTrino().executeQuery("SELECT comment FROM system.metadata.table_comments WHERE catalog_name = 'delta' AND schema_name = '" + schemaName + "' AND table_name = '" + tableName + "'")
.getOnlyValue();
}
public static String getTableCommentOnDelta(String schemaName, String tableName)
{
QueryResult result = Failsafe.with(DATABRICKS_COMMUNICATION_FAILURE_RETRY_POLICY)
.get(() -> onDelta().executeQuery(format("DESCRIBE EXTENDED %s.%s", schemaName, tableName)));
return (String) result.rows().stream()
.filter(row -> row.get(0).equals("Comment"))
.map(row -> row.get(1))
.collect(onlyElement());
}
public static Map getTablePropertiesOnDelta(String schemaName, String tableName)
{
QueryResult result = Failsafe.with(DATABRICKS_COMMUNICATION_FAILURE_RETRY_POLICY)
.get(() -> onDelta().executeQuery("SHOW TBLPROPERTIES %s.%s".formatted(schemaName, tableName)));
return result.rows().stream()
.map(column -> Map.entry((String) column.get(0), (String) column.get(1)))
.collect(toImmutableMap(Map.Entry::getKey, Map.Entry::getValue));
}
public static String getTablePropertyOnDelta(String schemaName, String tableName, String propertyName)
{
QueryResult result = Failsafe.with(DATABRICKS_COMMUNICATION_FAILURE_RETRY_POLICY)
.get(() -> onDelta().executeQuery("SHOW TBLPROPERTIES %s.%s(%s)".formatted(schemaName, tableName, propertyName)));
return (String) getOnlyElement(result.rows()).get(1);
}
/**
* Workaround method to avoid Table being modified concurrently error in Glue .
*/
public static QueryResult dropDeltaTableWithRetry(String tableName)
{
return Failsafe.with(CONCURRENT_MODIFICATION_EXCEPTION_RETRY_POLICY)
.get(() -> onDelta().executeQuery("DROP TABLE IF EXISTS " + tableName));
}
public static void removeS3Directory(AmazonS3 s3, String bucketName, String directoryPrefix)
{
ObjectListing listing = s3.listObjects(bucketName, directoryPrefix);
do {
List objectKeys = listing.getObjectSummaries().stream().map(S3ObjectSummary::getKey).collect(toImmutableList());
DeleteObjectsRequest deleteObjectsRequest = new DeleteObjectsRequest(bucketName).withKeys(objectKeys.toArray(new String[0]));
log.info("Deleting keys: %s", objectKeys);
s3.deleteObjects(deleteObjectsRequest);
listing = s3.listNextBatchOfObjects(listing);
}
while (listing.isTruncated());
}
}