Skip to content

Commit

Permalink
Cut release for v2022.44.2
Browse files Browse the repository at this point in the history
Add CompositeHandler parameter to CF template (#821)
Add support for optional LambdaRole parameter for AthenaSynapseConnector (#808)
Added Schema name condition in COUNT_RECORDS_QUERY
DDBPredicateUtils: Fix bug with predicate generation
AWS Signer set empty content (#814)
BlockUtils ClassCastException (#813)
improve error message with invalid spill bucket (#812)
Don't catch just to rethrow
ValuesGenerator: fix String:getBytes() issue
  • Loading branch information
akuzin1 authored and henrymai committed Nov 4, 2022
1 parent dcf9dc3 commit 8a549f0
Show file tree
Hide file tree
Showing 64 changed files with 192 additions and 192 deletions.
4 changes: 2 additions & 2 deletions athena-aws-cmdb/athena-aws-cmdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Metadata:
Labels:
- athena-federation
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
SemanticVersion: 2022.42.2
SemanticVersion: 2022.44.2
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
Parameters:
AthenaCatalogName:
Expand Down Expand Up @@ -47,7 +47,7 @@ Resources:
spill_prefix: !Ref SpillPrefix
FunctionName: !Ref AthenaCatalogName
Handler: "com.amazonaws.athena.connectors.aws.cmdb.AwsCmdbCompositeHandler"
CodeUri: "./target/athena-aws-cmdb-2022.42.2.jar"
CodeUri: "./target/athena-aws-cmdb-2022.44.2.jar"
Description: "Enables Amazon Athena to communicate with various AWS Services, making your resource inventories accessible via SQL."
Runtime: java11
Timeout: !Ref LambdaTimeout
Expand Down
6 changes: 3 additions & 3 deletions athena-aws-cmdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
<parent>
<artifactId>aws-athena-query-federation</artifactId>
<groupId>com.amazonaws</groupId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>athena-aws-cmdb</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<properties>
<slf4jVersion>1.7.30</slf4jVersion>
</properties>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-athena-federation-sdk</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
Expand Down
4 changes: 2 additions & 2 deletions athena-cloudera-hive/athena-cloudera-hive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Metadata:
Labels:
- athena-federation
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
SemanticVersion: 2022.42.2
SemanticVersion: 2022.44.2
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
Parameters:
LambdaFunctionName:
Expand Down Expand Up @@ -60,7 +60,7 @@ Resources:
default: !Ref DefaultConnectionString
FunctionName: !Ref LambdaFunctionName
Handler: "com.amazonaws.athena.connectors.cloudera.HiveMuxCompositeHandler"
CodeUri: "./target/athena-cloudera-hive-2022.42.2.jar"
CodeUri: "./target/athena-cloudera-hive-2022.44.2.jar"
Description: "Enables Amazon Athena to communicate with Coludera Hive using JDBC"
Runtime: java11
Timeout: !Ref LambdaTimeout
Expand Down
10 changes: 5 additions & 5 deletions athena-cloudera-hive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<parent>
<artifactId>aws-athena-query-federation</artifactId>
<groupId>com.amazonaws</groupId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>athena-cloudera-hive</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<properties>
<slf4jVersion>1.7.30</slf4jVersion>
<clouderaVersion>2.6.15.1018</clouderaVersion>
Expand All @@ -16,13 +16,13 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-federation-integ-test</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-jdbc</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</dependency>
<dependency>
<groupId>Hive</groupId>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-jdbc</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions athena-cloudera-impala/athena-cloudera-impala.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Metadata:
Labels:
- athena-federation
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
SemanticVersion: 2022.42.2
SemanticVersion: 2022.44.2
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
Parameters:
LambdaFunctionName:
Expand Down Expand Up @@ -60,7 +60,7 @@ Resources:
default: !Ref DefaultConnectionString
FunctionName: !Ref LambdaFunctionName
Handler: "com.amazonaws.athena.connectors.cloudera.ImpalaMuxCompositeHandler"
CodeUri: "./target/athena-cloudera-impala-2022.42.2.jar"
CodeUri: "./target/athena-cloudera-impala-2022.44.2.jar"
Description: "Enables Amazon Athena to communicate with Cloudera Impala using JDBC"
Runtime: java11
Timeout: !Ref LambdaTimeout
Expand Down
10 changes: 5 additions & 5 deletions athena-cloudera-impala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<parent>
<artifactId>aws-athena-query-federation</artifactId>
<groupId>com.amazonaws</groupId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>athena-cloudera-impala</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<properties>
<slf4jVersion>1.7.30</slf4jVersion>
<clouderaVersion>2.6.26.1031</clouderaVersion>
Expand All @@ -16,13 +16,13 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-federation-integ-test</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-jdbc</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</dependency>
<dependency>
<groupId>Impala</groupId>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-jdbc</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions athena-cloudwatch-metrics/athena-cloudwatch-metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Metadata:
Labels:
- athena-federation
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
SemanticVersion: 2022.42.2
SemanticVersion: 2022.44.2
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
Parameters:
AthenaCatalogName:
Expand Down Expand Up @@ -47,7 +47,7 @@ Resources:
spill_prefix: !Ref SpillPrefix
FunctionName: !Ref AthenaCatalogName
Handler: "com.amazonaws.athena.connectors.cloudwatch.metrics.MetricsCompositeHandler"
CodeUri: "./target/athena-cloudwatch-metrics-2022.42.2.jar"
CodeUri: "./target/athena-cloudwatch-metrics-2022.44.2.jar"
Description: "Enables Amazon Athena to communicate with Cloudwatch Metrics, making your metrics data accessible via SQL"
Runtime: java11
Timeout: !Ref LambdaTimeout
Expand Down
6 changes: 3 additions & 3 deletions athena-cloudwatch-metrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
<parent>
<artifactId>aws-athena-query-federation</artifactId>
<groupId>com.amazonaws</groupId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>athena-cloudwatch-metrics</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<properties>
<slf4jVersion>1.7.30</slf4jVersion>
</properties>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-athena-federation-sdk</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
Expand Down
4 changes: 2 additions & 2 deletions athena-cloudwatch/athena-cloudwatch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Metadata:
Labels:
- athena-federation
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
SemanticVersion: 2022.42.2
SemanticVersion: 2022.44.2
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
Parameters:
AthenaCatalogName:
Expand Down Expand Up @@ -61,7 +61,7 @@ Resources:
kms_key_id: !If [HasKMSKeyId, !Ref KMSKeyId, !Ref "AWS::NoValue"]
FunctionName: !Ref AthenaCatalogName
Handler: "com.amazonaws.athena.connectors.cloudwatch.CloudwatchCompositeHandler"
CodeUri: "./target/athena-cloudwatch-2022.42.2.jar"
CodeUri: "./target/athena-cloudwatch-2022.44.2.jar"
Description: "Enables Amazon Athena to communicate with Cloudwatch, making your log accessible via SQL"
Runtime: java11
Timeout: !Ref LambdaTimeout
Expand Down
8 changes: 4 additions & 4 deletions athena-cloudwatch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
<parent>
<artifactId>aws-athena-query-federation</artifactId>
<groupId>com.amazonaws</groupId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>athena-cloudwatch</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<properties>
<slf4jVersion>1.7.30</slf4jVersion>
</properties>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-athena-federation-sdk</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-federation-integ-test</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/software.amazon.awscdk/logs -->
Expand Down
4 changes: 2 additions & 2 deletions athena-datalakegen2/athena-datalakegen2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Metadata:
- athena-federation
- jdbc
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
SemanticVersion: 2022.42.2
SemanticVersion: 2022.44.2
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
Parameters:
LambdaFunctionName:
Expand Down Expand Up @@ -62,7 +62,7 @@ Resources:
default: !Ref DefaultConnectionString
FunctionName: !Ref LambdaFunctionName
Handler: "com.amazonaws.athena.connectors.datalakegen2.DataLakeGen2MuxCompositeHandler"
CodeUri: "./target/athena-datalakegen2-2022.42.2.jar"
CodeUri: "./target/athena-datalakegen2-2022.44.2.jar"
Description: "Enables Amazon Athena to communicate with DataLake Gen2 using JDBC"
Runtime: java11
Timeout: !Ref LambdaTimeout
Expand Down
10 changes: 5 additions & 5 deletions athena-datalakegen2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@
<parent>
<artifactId>aws-athena-query-federation</artifactId>
<groupId>com.amazonaws</groupId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>athena-datalakegen2</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<properties>
<slf4jVersion>1.7.30</slf4jVersion>
</properties>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-federation-integ-test</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-jdbc</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-jdbc</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions athena-docdb/athena-docdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Metadata:
Labels:
- athena-federation
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
SemanticVersion: 2022.42.2
SemanticVersion: 2022.44.2
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
Parameters:
AthenaCatalogName:
Expand Down Expand Up @@ -61,7 +61,7 @@ Resources:
default_docdb: !Ref DocDBConnectionString
FunctionName: !Ref AthenaCatalogName
Handler: "com.amazonaws.athena.connectors.docdb.DocDBCompositeHandler"
CodeUri: "./target/athena-docdb-2022.42.2.jar"
CodeUri: "./target/athena-docdb-2022.44.2.jar"
Description: "Enables Amazon Athena to communicate with DocumentDB, making your DocumentDB data accessible via SQL."
Runtime: java11
Timeout: !Ref LambdaTimeout
Expand Down
8 changes: 4 additions & 4 deletions athena-docdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
<parent>
<artifactId>aws-athena-query-federation</artifactId>
<groupId>com.amazonaws</groupId>
<version>2022.42.2</version>
<version>2022.44.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>athena-docdb</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<properties>
<slf4jVersion>1.7.30</slf4jVersion>
</properties>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-athena-federation-sdk</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<exclusions>
<!-- replaced with jcl-over-slf4j -->
<exclusion>
Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>athena-federation-integ-test</artifactId>
<version>2022.42.2</version>
<version>2022.44.2</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-docdb -->
Expand Down
4 changes: 2 additions & 2 deletions athena-dynamodb/athena-dynamodb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Metadata:
Labels:
- athena-federation
HomePageUrl: 'https://github.com/awslabs/aws-athena-query-federation'
SemanticVersion: 2022.42.2
SemanticVersion: 2022.44.2
SourceCodeUrl: 'https://github.com/awslabs/aws-athena-query-federation'
Parameters:
AthenaCatalogName:
Expand Down Expand Up @@ -61,7 +61,7 @@ Resources:
kms_key_id: !If [HasKMSKeyId, !Ref KMSKeyId, !Ref "AWS::NoValue"]
FunctionName: !Ref AthenaCatalogName
Handler: "com.amazonaws.athena.connectors.dynamodb.DynamoDBCompositeHandler"
CodeUri: "./target/athena-dynamodb-2022.42.2.jar"
CodeUri: "./target/athena-dynamodb-2022.44.2.jar"
Description: "Enables Amazon Athena to communicate with DynamoDB, making your tables accessible via SQL"
Runtime: java11
Timeout: !Ref LambdaTimeout
Expand Down
Loading

0 comments on commit 8a549f0

Please sign in to comment.