-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
365 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-aws-cmdb-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-aws-cmdb-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.aws.cmdb.AwsCmdbCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-clickhouse-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-clickhouse-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.clickhouse.ClickHouseMuxCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-cloudera-hive-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-cloudera-hive-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.cloudera.HiveMuxCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-cloudera-impala-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-cloudera-impala-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.cloudera.ImpalaMuxCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-cloudwatch-metrics-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-cloudwatch-metrics-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.cloudwatch.metrics.MetricsCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-cloudwatch-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-cloudwatch-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.cloudwatch.CloudwatchCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-datalakegen2-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-datalakegen2-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.datalakegen2.DataLakeGen2MuxCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-db2-as400-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-db2-as400-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.db2as400.Db2As400MuxCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-db2-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-db2-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.db2.Db2MuxCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-docdb-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-docdb-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.docdb.DocDBCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-dynamodb-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-dynamodb-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.dynamodb.DynamoDBCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-elasticsearch-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-elasticsearch-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.elasticsearch.ElasticsearchCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-gcs.zip ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-gcs.zip | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.gcs.GcsCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-google-bigquery-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-google-bigquery-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.google.bigquery.BigQueryCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-hbase-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-hbase-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.hbase.HbaseCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-hortonworks-hive-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-hortonworks-hive-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.hortonworks.HiveMuxCompositeHandler" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/lambda/java:11 | ||
|
||
# Copy function code and runtime dependencies from Maven layout | ||
COPY target/athena-kafka-2022.47.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-kafka-2022.47.1.jar | ||
|
||
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | ||
CMD [ "com.amazonaws.athena.connectors.kafka.KafkaCompositeHandler" ] |
Oops, something went wrong.