-
Notifications
You must be signed in to change notification settings - Fork 299
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
athena_federation_cut_release_workflow
committed
Dec 23, 2024
1 parent
1c686a9
commit 16dc34e
Showing
136 changed files
with
359 additions
and
359 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 |
---|---|---|
@@ -1,9 +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} | ||
COPY target/athena-aws-cmdb-2024.51.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-aws-cmdb-2022.47.1.jar | ||
RUN jar xf athena-aws-cmdb-2024.51.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
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 |
---|---|---|
@@ -1,9 +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} | ||
COPY target/athena-clickhouse-2024.51.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-clickhouse-2022.47.1.jar | ||
RUN jar xf athena-clickhouse-2024.51.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
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 |
---|---|---|
@@ -1,9 +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} | ||
COPY target/athena-cloudera-hive-2024.51.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-cloudera-hive-2022.47.1.jar | ||
RUN jar xf athena-cloudera-hive-2024.51.1.jar | ||
|
||
# Command can be overwritten by providing a different command in the template directly. | ||
# No need to specify here (already defined in .yaml file because legacy and connections use different) |
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
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 |
---|---|---|
@@ -1,9 +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} | ||
COPY target/athena-cloudera-impala-2024.51.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-cloudera-impala-2022.47.1.jar | ||
RUN jar xf athena-cloudera-impala-2024.51.1.jar | ||
|
||
# Command can be overwritten by providing a different command in the template directly. | ||
# No need to specify here (already defined in .yaml file because legacy and connections use different) |
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
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 |
---|---|---|
@@ -1,9 +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} | ||
COPY target/athena-cloudwatch-metrics-2024.51.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-cloudwatch-metrics-2022.47.1.jar | ||
RUN jar xf athena-cloudwatch-metrics-2024.51.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
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 |
---|---|---|
@@ -1,9 +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} | ||
COPY target/athena-cloudwatch-2024.51.1.jar ${LAMBDA_TASK_ROOT} | ||
# Unpack the jar | ||
RUN jar xf athena-cloudwatch-2022.47.1.jar | ||
RUN jar xf athena-cloudwatch-2024.51.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" ] |
Oops, something went wrong.