Skip to content

Commit 5fb3b01

Browse files
author
athena_federation_cut_release_workflow
committed
Cut release 2024.18.2
- Extended QPT to JDBC Multiplexing (#1959)
1 parent b81300d commit 5fb3b01

File tree

74 files changed

+229
-238
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+229
-238
lines changed

athena-aws-cmdb/athena-aws-cmdb.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Metadata:
1010
Labels:
1111
- athena-federation
1212
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
13-
SemanticVersion: 2022.47.1
13+
SemanticVersion: 2024.18.2
1414
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
1515
Parameters:
1616
AthenaCatalogName:
@@ -53,7 +53,7 @@ Resources:
5353
spill_prefix: !Ref SpillPrefix
5454
FunctionName: !Ref AthenaCatalogName
5555
Handler: "com.amazonaws.athena.connectors.aws.cmdb.AwsCmdbCompositeHandler"
56-
CodeUri: "./target/athena-aws-cmdb-2022.47.1.jar"
56+
CodeUri: "./target/athena-aws-cmdb-2024.18.2.jar"
5757
Description: "Enables Amazon Athena to communicate with various AWS Services, making your resource inventories accessible via SQL."
5858
Runtime: java11
5959
Timeout: !Ref LambdaTimeout

athena-aws-cmdb/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
<parent>
44
<artifactId>aws-athena-query-federation</artifactId>
55
<groupId>com.amazonaws</groupId>
6-
<version>2022.47.1</version>
6+
<version>2024.18.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>athena-aws-cmdb</artifactId>
10-
<version>2022.47.1</version>
10+
<version>2024.18.2</version>
1111
<dependencies>
1212
<dependency>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-athena-federation-sdk</artifactId>
15-
<version>2022.47.1</version>
15+
<version>2024.18.2</version>
1616
<classifier>withdep</classifier>
1717
</dependency>
1818
<dependency>

athena-cloudera-hive/athena-cloudera-hive.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Metadata:
1010
Labels:
1111
- athena-federation
1212
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
13-
SemanticVersion: 2022.47.1
13+
SemanticVersion: 2024.18.2
1414
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
1515
Parameters:
1616
LambdaFunctionName:
@@ -66,7 +66,7 @@ Resources:
6666
default: !Ref DefaultConnectionString
6767
FunctionName: !Ref LambdaFunctionName
6868
Handler: "com.amazonaws.athena.connectors.cloudera.HiveMuxCompositeHandler"
69-
CodeUri: "./target/athena-cloudera-hive-2022.47.1.jar"
69+
CodeUri: "./target/athena-cloudera-hive-2024.18.2.jar"
7070
Description: "Enables Amazon Athena to communicate with Coludera Hive using JDBC"
7171
Runtime: java11
7272
Timeout: !Ref LambdaTimeout

athena-cloudera-hive/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
<parent>
44
<artifactId>aws-athena-query-federation</artifactId>
55
<groupId>com.amazonaws</groupId>
6-
<version>2022.47.1</version>
6+
<version>2024.18.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>athena-cloudera-hive</artifactId>
10-
<version>2022.47.1</version>
10+
<version>2024.18.2</version>
1111
<properties>
1212
<clouderaVersion>2.6.23.1027</clouderaVersion>
1313
</properties>
1414
<dependencies>
1515
<dependency>
1616
<groupId>com.amazonaws</groupId>
1717
<artifactId>athena-federation-integ-test</artifactId>
18-
<version>2022.47.1</version>
18+
<version>2024.18.2</version>
1919
<scope>test</scope>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>athena-jdbc</artifactId>
24-
<version>2022.47.1</version>
24+
<version>2024.18.2</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>Hive</groupId>
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>com.amazonaws</groupId>
3333
<artifactId>athena-jdbc</artifactId>
34-
<version>2022.47.1</version>
34+
<version>2024.18.2</version>
3535
<type>test-jar</type>
3636
<scope>test</scope>
3737
</dependency>

athena-cloudera-impala/athena-cloudera-impala.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Metadata:
1010
Labels:
1111
- athena-federation
1212
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
13-
SemanticVersion: 2022.47.1
13+
SemanticVersion: 2024.18.2
1414
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
1515
Parameters:
1616
LambdaFunctionName:
@@ -71,7 +71,7 @@ Resources:
7171
default: !Ref DefaultConnectionString
7272
FunctionName: !Ref LambdaFunctionName
7373
Handler: "com.amazonaws.athena.connectors.cloudera.ImpalaMuxCompositeHandler"
74-
CodeUri: "./target/athena-cloudera-impala-2022.47.1.jar"
74+
CodeUri: "./target/athena-cloudera-impala-2024.18.2.jar"
7575
Description: "Enables Amazon Athena to communicate with Cloudera Impala using JDBC"
7676
Runtime: java11
7777
Timeout: !Ref LambdaTimeout

athena-cloudera-impala/pom.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
<parent>
44
<artifactId>aws-athena-query-federation</artifactId>
55
<groupId>com.amazonaws</groupId>
6-
<version>2022.47.1</version>
6+
<version>2024.18.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>athena-cloudera-impala</artifactId>
10-
<version>2022.47.1</version>
10+
<version>2024.18.2</version>
1111
<properties>
1212
<clouderaVersion>2.6.32.1041</clouderaVersion>
1313
</properties>
1414
<dependencies>
1515
<dependency>
1616
<groupId>com.amazonaws</groupId>
1717
<artifactId>athena-federation-integ-test</artifactId>
18-
<version>2022.47.1</version>
18+
<version>2024.18.2</version>
1919
<scope>test</scope>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>athena-jdbc</artifactId>
24-
<version>2022.47.1</version>
24+
<version>2024.18.2</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>Impala</groupId>
@@ -31,11 +31,10 @@
3131
<dependency>
3232
<groupId>com.amazonaws</groupId>
3333
<artifactId>athena-jdbc</artifactId>
34-
<version>2022.47.1</version>
34+
<version>2024.18.2</version>
3535
<type>test-jar</type>
3636
<scope>test</scope>
3737
</dependency>
38-
3938
<dependency>
4039
<groupId>org.mockito</groupId>
4140
<artifactId>mockito-core</artifactId>

athena-cloudwatch-metrics/athena-cloudwatch-metrics.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Metadata:
1010
Labels:
1111
- athena-federation
1212
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
13-
SemanticVersion: 2022.47.1
13+
SemanticVersion: 2024.18.2
1414
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
1515
Parameters:
1616
AthenaCatalogName:
@@ -53,7 +53,7 @@ Resources:
5353
spill_prefix: !Ref SpillPrefix
5454
FunctionName: !Ref AthenaCatalogName
5555
Handler: "com.amazonaws.athena.connectors.cloudwatch.metrics.MetricsCompositeHandler"
56-
CodeUri: "./target/athena-cloudwatch-metrics-2022.47.1.jar"
56+
CodeUri: "./target/athena-cloudwatch-metrics-2024.18.2.jar"
5757
Description: "Enables Amazon Athena to communicate with Cloudwatch Metrics, making your metrics data accessible via SQL"
5858
Runtime: java11
5959
Timeout: !Ref LambdaTimeout

athena-cloudwatch-metrics/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
<parent>
44
<artifactId>aws-athena-query-federation</artifactId>
55
<groupId>com.amazonaws</groupId>
6-
<version>2022.47.1</version>
6+
<version>2024.18.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>athena-cloudwatch-metrics</artifactId>
10-
<version>2022.47.1</version>
10+
<version>2024.18.2</version>
1111
<dependencies>
1212
<dependency>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-athena-federation-sdk</artifactId>
15-
<version>2022.47.1</version>
15+
<version>2024.18.2</version>
1616
<classifier>withdep</classifier>
1717
</dependency>
1818
<dependency>

athena-cloudwatch/athena-cloudwatch.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Metadata:
1010
Labels:
1111
- athena-federation
1212
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
13-
SemanticVersion: 2022.47.1
13+
SemanticVersion: 2024.18.2
1414
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
1515
Parameters:
1616
AthenaCatalogName:
@@ -67,7 +67,7 @@ Resources:
6767
kms_key_id: !If [HasKMSKeyId, !Ref KMSKeyId, !Ref "AWS::NoValue"]
6868
FunctionName: !Ref AthenaCatalogName
6969
Handler: "com.amazonaws.athena.connectors.cloudwatch.CloudwatchCompositeHandler"
70-
CodeUri: "./target/athena-cloudwatch-2022.47.1.jar"
70+
CodeUri: "./target/athena-cloudwatch-2024.18.2.jar"
7171
Description: "Enables Amazon Athena to communicate with Cloudwatch, making your log accessible via SQL"
7272
Runtime: java11
7373
Timeout: !Ref LambdaTimeout

athena-cloudwatch/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
<parent>
44
<artifactId>aws-athena-query-federation</artifactId>
55
<groupId>com.amazonaws</groupId>
6-
<version>2022.47.1</version>
6+
<version>2024.18.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>athena-cloudwatch</artifactId>
10-
<version>2022.47.1</version>
10+
<version>2024.18.2</version>
1111
<dependencies>
1212
<dependency>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-athena-federation-sdk</artifactId>
15-
<version>2022.47.1</version>
15+
<version>2024.18.2</version>
1616
<classifier>withdep</classifier>
1717
</dependency>
1818
<dependency>
1919
<groupId>com.amazonaws</groupId>
2020
<artifactId>athena-federation-integ-test</artifactId>
21-
<version>2022.47.1</version>
21+
<version>2024.18.2</version>
2222
<scope>test</scope>
2323
</dependency>
2424
<!-- https://mvnrepository.com/artifact/software.amazon.awscdk/logs -->

0 commit comments

Comments
 (0)