Search in sources :

Example 1 with ThrottlingInvoker

use of com.amazonaws.athena.connector.lambda.ThrottlingInvoker in project aws-athena-query-federation by awslabs.

the class TestBase method setupOnce.

@BeforeClass
public static void setupOnce() throws Exception {
    ddbClient = setupDatabase();
    ThrottlingInvoker invoker = ThrottlingInvoker.newDefaultBuilder(EXCEPTION_FILTER).build();
    schema = DDBTableUtils.peekTableForSchema(TEST_TABLE, invoker, ddbClient);
}
Also used : ThrottlingInvoker(com.amazonaws.athena.connector.lambda.ThrottlingInvoker) BeforeClass(org.junit.BeforeClass)

Example 2 with ThrottlingInvoker

use of com.amazonaws.athena.connector.lambda.ThrottlingInvoker in project aws-athena-query-federation by awslabs.

the class DDBTableUtils method getTable.

/**
 * Fetches metadata for a DynamoDB table
 *
 * @param tableName the (case sensitive) table name
 * @param invoker the ThrottlingInvoker to call DDB with
 * @param ddbClient the DDB client to use
 * @return the table metadata
 */
public static DynamoDBTable getTable(String tableName, ThrottlingInvoker invoker, AmazonDynamoDB ddbClient) throws TimeoutException {
    DescribeTableRequest request = new DescribeTableRequest().withTableName(tableName);
    TableDescription table = invoker.invoke(() -> ddbClient.describeTable(request).getTable());
    KeyNames keys = getKeys(table.getKeySchema());
    // get data statistics
    long approxTableSizeInBytes = table.getTableSizeBytes();
    long approxItemCount = table.getItemCount();
    final long provisionedReadCapacity = table.getProvisionedThroughput() != null ? table.getProvisionedThroughput().getReadCapacityUnits() : PSUEDO_CAPACITY_FOR_ON_DEMAND;
    // get secondary indexes
    List<LocalSecondaryIndexDescription> localSecondaryIndexes = table.getLocalSecondaryIndexes() != null ? table.getLocalSecondaryIndexes() : ImmutableList.of();
    List<GlobalSecondaryIndexDescription> globalSecondaryIndexes = table.getGlobalSecondaryIndexes() != null ? table.getGlobalSecondaryIndexes() : ImmutableList.of();
    ImmutableList.Builder<DynamoDBIndex> indices = ImmutableList.builder();
    localSecondaryIndexes.forEach(i -> {
        KeyNames indexKeys = getKeys(i.getKeySchema());
        // DynamoDB automatically fetches all attributes from the table for local secondary index, so ignore projected attributes
        indices.add(new DynamoDBIndex(i.getIndexName(), indexKeys.getHashKey(), indexKeys.getRangeKey(), ProjectionType.ALL, ImmutableList.of()));
    });
    globalSecondaryIndexes.stream().filter(i -> IndexStatus.fromValue(i.getIndexStatus()).equals(IndexStatus.ACTIVE)).forEach(i -> {
        KeyNames indexKeys = getKeys(i.getKeySchema());
        indices.add(new DynamoDBIndex(i.getIndexName(), indexKeys.getHashKey(), indexKeys.getRangeKey(), ProjectionType.fromValue(i.getProjection().getProjectionType()), i.getProjection().getNonKeyAttributes() == null ? ImmutableList.of() : i.getProjection().getNonKeyAttributes()));
    });
    return new DynamoDBTable(tableName, keys.getHashKey(), keys.getRangeKey(), table.getAttributeDefinitions(), indices.build(), approxTableSizeInBytes, approxItemCount, provisionedReadCapacity);
}
Also used : Schema(org.apache.arrow.vector.types.pojo.Schema) ThrottlingInvoker(com.amazonaws.athena.connector.lambda.ThrottlingInvoker) AttributeDefinition(com.amazonaws.services.dynamodbv2.model.AttributeDefinition) KeySchemaElement(com.amazonaws.services.dynamodbv2.model.KeySchemaElement) KeyType(com.amazonaws.services.dynamodbv2.model.KeyType) ScanResult(com.amazonaws.services.dynamodbv2.model.ScanResult) LoggerFactory(org.slf4j.LoggerFactory) TimeoutException(java.util.concurrent.TimeoutException) IndexStatus(com.amazonaws.services.dynamodbv2.model.IndexStatus) HashSet(java.util.HashSet) LocalSecondaryIndexDescription(com.amazonaws.services.dynamodbv2.model.LocalSecondaryIndexDescription) TableDescription(com.amazonaws.services.dynamodbv2.model.TableDescription) ImmutableList(com.google.common.collect.ImmutableList) SchemaBuilder(com.amazonaws.athena.connector.lambda.data.SchemaBuilder) AttributeValue(com.amazonaws.services.dynamodbv2.model.AttributeValue) Map(java.util.Map) ItemUtils(com.amazonaws.services.dynamodbv2.document.ItemUtils) DynamoDBTable(com.amazonaws.athena.connectors.dynamodb.model.DynamoDBTable) DescribeTableRequest(com.amazonaws.services.dynamodbv2.model.DescribeTableRequest) GlobalSecondaryIndexDescription(com.amazonaws.services.dynamodbv2.model.GlobalSecondaryIndexDescription) ProjectionType(com.amazonaws.services.dynamodbv2.model.ProjectionType) Logger(org.slf4j.Logger) ScanRequest(com.amazonaws.services.dynamodbv2.model.ScanRequest) Set(java.util.Set) Field(org.apache.arrow.vector.types.pojo.Field) AmazonDynamoDB(com.amazonaws.services.dynamodbv2.AmazonDynamoDB) DynamoDBIndex(com.amazonaws.athena.connectors.dynamodb.model.DynamoDBIndex) List(java.util.List) Optional(java.util.Optional) ImmutableList(com.google.common.collect.ImmutableList) DynamoDBIndex(com.amazonaws.athena.connectors.dynamodb.model.DynamoDBIndex) DescribeTableRequest(com.amazonaws.services.dynamodbv2.model.DescribeTableRequest) TableDescription(com.amazonaws.services.dynamodbv2.model.TableDescription) GlobalSecondaryIndexDescription(com.amazonaws.services.dynamodbv2.model.GlobalSecondaryIndexDescription) LocalSecondaryIndexDescription(com.amazonaws.services.dynamodbv2.model.LocalSecondaryIndexDescription) DynamoDBTable(com.amazonaws.athena.connectors.dynamodb.model.DynamoDBTable)

Aggregations

ThrottlingInvoker (com.amazonaws.athena.connector.lambda.ThrottlingInvoker)2 SchemaBuilder (com.amazonaws.athena.connector.lambda.data.SchemaBuilder)1 DynamoDBIndex (com.amazonaws.athena.connectors.dynamodb.model.DynamoDBIndex)1 DynamoDBTable (com.amazonaws.athena.connectors.dynamodb.model.DynamoDBTable)1 AmazonDynamoDB (com.amazonaws.services.dynamodbv2.AmazonDynamoDB)1 ItemUtils (com.amazonaws.services.dynamodbv2.document.ItemUtils)1 AttributeDefinition (com.amazonaws.services.dynamodbv2.model.AttributeDefinition)1 AttributeValue (com.amazonaws.services.dynamodbv2.model.AttributeValue)1 DescribeTableRequest (com.amazonaws.services.dynamodbv2.model.DescribeTableRequest)1 GlobalSecondaryIndexDescription (com.amazonaws.services.dynamodbv2.model.GlobalSecondaryIndexDescription)1 IndexStatus (com.amazonaws.services.dynamodbv2.model.IndexStatus)1 KeySchemaElement (com.amazonaws.services.dynamodbv2.model.KeySchemaElement)1 KeyType (com.amazonaws.services.dynamodbv2.model.KeyType)1 LocalSecondaryIndexDescription (com.amazonaws.services.dynamodbv2.model.LocalSecondaryIndexDescription)1 ProjectionType (com.amazonaws.services.dynamodbv2.model.ProjectionType)1 ScanRequest (com.amazonaws.services.dynamodbv2.model.ScanRequest)1 ScanResult (com.amazonaws.services.dynamodbv2.model.ScanResult)1 TableDescription (com.amazonaws.services.dynamodbv2.model.TableDescription)1 ImmutableList (com.google.common.collect.ImmutableList)1 HashSet (java.util.HashSet)1