All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.athena.connector.integ.stacks.ConnectorStack Maven / Gradle / Ivy

There is a newer version: 2024.46.1
Show newest version
/*-
 * #%L
 * Amazon Athena Query Federation Integ Test
 * %%
 * Copyright (C) 2019 - 2020 Amazon Web Services
 * %%
 * 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.
 * #L%
 */
package com.amazonaws.athena.connector.integ.stacks;

import com.amazonaws.athena.connector.integ.data.ConnectorPackagingAttributes;
import com.amazonaws.athena.connector.integ.data.ConnectorStackAttributes;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import software.amazon.awscdk.core.CfnParameter;
import software.amazon.awscdk.core.Construct;
import software.amazon.awscdk.core.Duration;
import software.amazon.awscdk.core.Stack;
import software.amazon.awscdk.services.athena.CfnDataCatalog;
import software.amazon.awscdk.services.iam.Effect;
import software.amazon.awscdk.services.iam.PolicyDocument;
import software.amazon.awscdk.services.iam.PolicyStatement;
import software.amazon.awscdk.services.iam.Role;
import software.amazon.awscdk.services.iam.ServicePrincipal;
import software.amazon.awscdk.services.lambda.CfnParametersCodeProps;
import software.amazon.awscdk.services.lambda.Code;
import software.amazon.awscdk.services.lambda.Function;
import software.amazon.awscdk.services.lambda.Runtime;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;

/**
 * Sets up the CloudFormation stack necessary for a Lambda Connector.
 */
public class ConnectorStack extends Stack
{
    private static final Logger logger = LoggerFactory.getLogger(ConnectorStack.class);

    private static final String LAMBDA_SPILL_BUCKET_TAG = "spill_bucket";

    private final String s3Bucket;
    private final String s3Key;
    private final String functionHandler;
    private final String functionName;
    private final Optional connectorAccessPolicy;
    private final Map environmentVariables;
    private final String spillBucket;

    public ConnectorStack(Builder builder)
    {
        super(builder.scope, builder.id);

        s3Bucket = builder.connectorPackagingAttributes.getS3Bucket();
        s3Key = builder.connectorPackagingAttributes.getS3Key();
        functionHandler = builder.connectorPackagingAttributes.getLambdaFunctionHandler();
        functionName = builder.functionName;
        connectorAccessPolicy = builder.connectorAccessPolicy;
        environmentVariables = builder.environmentVariables;
        spillBucket = environmentVariables.get(LAMBDA_SPILL_BUCKET_TAG);
    }

    /**
     * Initialize the stack by building the Lambda function and Athena data catalog.
     */
    protected void initialize()
    {
        logger.info("Initializing stack: {}", this.getClass().getSimpleName());
        Function function = createLambdaFunction();
        createAthenaDataCatalog(function);
    }

    /**
     * Creates the Connector's CloudFormation stack for the lambda function.
     */
    private Function createLambdaFunction()
    {
        return lambdaFunctionBuilder().build();
    }

    /**
     * Builds the Lambda function stack resource.
     * @return Lambda function Builder.
     */
    protected Function.Builder lambdaFunctionBuilder()
    {
        return Function.Builder.create(this, "LambdaConnector")
                .functionName(functionName)
                .role(createIamRole())
                .code(Code.fromCfnParameters(CfnParametersCodeProps.builder()
                        .bucketNameParam(CfnParameter.Builder.create(this, "BucketName")
                                .defaultValue(s3Bucket)
                                .build())
                        .objectKeyParam(CfnParameter.Builder.create(this, "BucketKey")
                                .defaultValue(s3Key)
                                .build())
                        .build()))
                .handler(functionHandler)
                .runtime(new Runtime("java11"))
                .memorySize(Integer.valueOf(3008))
                .timeout(Duration.seconds(Integer.valueOf(900)))
                .environment(environmentVariables);
    }

    /**
     * Creates the Connector's Athena data catalog stack resource, and registers the lambda function with Athena.
     */
    private void createAthenaDataCatalog(Function function)
    {
        athenaDataCatalogBuilder(function.getFunctionArn()).build();
    }

    /**
     * Builds the Athena data catalog stack resource.
     * @return Athena data catalog Builder.
     */
    protected CfnDataCatalog.Builder athenaDataCatalogBuilder(String functionArn)
    {
        return CfnDataCatalog.Builder.create(this, "AthenaDataCatalog")
                .name(functionName)
                .type("LAMBDA")
                .parameters(ImmutableMap.of("function", functionArn));
    }

    /**
     * Creates the IAM role for the Lambda function.
     * @return IAM Role object.
     */
    private Role createIamRole()
    {
        return iamRoleBuilder().build();
    }

    /**
     * Builds the IAM role stack resource.
     * @return IAM role Builder.
     */
    protected Role.Builder iamRoleBuilder()
    {
        Map policies = new HashMap<>();

        setAccessPolicies(policies);

        return Role.Builder.create(this, "ConnectorConfigRole")
                .assumedBy(ServicePrincipal.Builder.create("lambda.amazonaws.com").build())
                .inlinePolicies(policies);
    }

    /**
     * Sets the access policies used by the Lambda function.
     * @param policies A map of access policies.
     */
    protected void setAccessPolicies(Map policies)
    {
        policies.put("GlueAthenaS3AccessPolicy", getGlueAthenaS3AccessPolicy());
        policies.put("S3SpillBucketAccessPolicy", getS3SpillBucketAccessPolicy());
        connectorAccessPolicy.ifPresent(policyDocument -> policies.put("ConnectorAccessPolicy", policyDocument));
    }

    /**
     * Sets up Glue, Athena, and S3 access policy for the Lambda connector.
     * @return A policy document object.
     */
    private PolicyDocument getGlueAthenaS3AccessPolicy()
    {
        List statementActionsPolicy = new ArrayList<>();
        statementActionsPolicy.add("glue:GetTableVersions");
        statementActionsPolicy.add("glue:GetPartitions");
        statementActionsPolicy.add("glue:GetTables");
        statementActionsPolicy.add("glue:GetTableVersion");
        statementActionsPolicy.add("glue:GetDatabases");
        statementActionsPolicy.add("glue:GetTable");
        statementActionsPolicy.add("glue:GetPartition");
        statementActionsPolicy.add("glue:GetDatabase");
        statementActionsPolicy.add("athena:GetQueryExecution");

        return PolicyDocument.Builder.create()
                .statements(ImmutableList.of(PolicyStatement.Builder.create()
                        .actions(statementActionsPolicy)
                        .resources(ImmutableList.of("*"))
                        .effect(Effect.ALLOW)
                        .build()))
                .build();
    }

    /**
     * Sets up the S3 spill-bucket access policy for the Lambda connector.
     * @return A policy document object.
     */
    private PolicyDocument getS3SpillBucketAccessPolicy()
    {
        List statementActionsPolicy = new ArrayList<>();
        statementActionsPolicy.add("s3:GetObject");
        statementActionsPolicy.add("s3:ListBucket");
        statementActionsPolicy.add("s3:GetBucketLocation");
        statementActionsPolicy.add("s3:GetObjectVersion");
        statementActionsPolicy.add("s3:PutObject");
        statementActionsPolicy.add("s3:PutObjectAcl");
        statementActionsPolicy.add("s3:GetLifecycleConfiguration");
        statementActionsPolicy.add("s3:PutLifecycleConfiguration");
        statementActionsPolicy.add("s3:DeleteObject");

        return PolicyDocument.Builder.create()
                .statements(ImmutableList.of(PolicyStatement.Builder.create()
                        .actions(statementActionsPolicy)
                        .resources(ImmutableList.of(
                                String.format("arn:aws:s3:::%s", spillBucket),
                                String.format("arn:aws:s3:::%s/*", spillBucket)))
                        .effect(Effect.ALLOW)
                        .build()))
                .build();
    }

    public static Stack buildWithAttributes(ConnectorStackAttributes attributes)
    {
        return builder().withAttributes(attributes).build();
    }

    public static Builder builder()
    {
        return new Builder();
    }

    public static class Builder
    {
        private Construct scope;
        private String id;
        private String functionName;
        private Optional connectorAccessPolicy;
        private Map environmentVariables;
        private ConnectorPackagingAttributes connectorPackagingAttributes;

        public Builder withAttributes(ConnectorStackAttributes attributes)
        {
            scope = attributes.getScope();
            id = attributes.getId();
            functionName = attributes.getLambdaFunctionName();
            connectorAccessPolicy = attributes.getConnectorAccessPolicy();
            environmentVariables = attributes.getEnvironmentVariables();
            connectorPackagingAttributes = attributes.getConnectorPackagingAttributes();

            return this;
        }

        public Stack build()
        {
            ConnectorStack stack = new ConnectorStack(this);
            stack.initialize();
            return stack;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy