Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
Merge pull request #60 from tiki/release/fix-layer
Browse files Browse the repository at this point in the history
fix: layers and handler
  • Loading branch information
mike-audi authored Oct 26, 2023
2 parents 313bc03 + a561bb6 commit a93f7fd
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 5 deletions.
6 changes: 3 additions & 3 deletions infra/sar/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Metadata:
ReadmeUrl: ../../README.md
Labels: [ 'iceberg' ]
HomePageUrl: https://github.com/tiki/core-iceberg-metadata
SemanticVersion: 0.1.7
SemanticVersion: 0.1.8
SourceCodeUrl: https://github.com/tiki/core-iceberg-metadata

Resources:
Expand All @@ -46,7 +46,7 @@ Resources:
Type: AWS::Serverless::Function
Properties:
CodeUri: ../..
Handler: com.mytiki.ocean.metadata.App::handleRequest
Handler: com.mytiki.core.iceberg.metadata.App::handleRequest
Runtime: java17
Architectures:
- x86_64
Expand All @@ -59,7 +59,7 @@ Resources:
Variables:
AWS_LAMBDA_EXEC_WRAPPER: "/opt/otel-sqs-handler"
ICEBERG_WAREHOUSE: !Sub "s3://${BucketName}"
ICEBERG_DATABASE: !Ref DatabaseName
ICEBERG_DATABASE_NAME: !Ref DatabaseName
Events:
SQSEvent:
Type: SQS
Expand Down
29 changes: 27 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.mytiki</groupId>
<artifactId>core-iceberg-metadata</artifactId>
<version>0.1.7</version>
<version>0.1.8</version>
<packaging>jar</packaging>
<name>Iceberg Metadata</name>
<properties>
Expand All @@ -19,9 +19,34 @@
<dependency>
<groupId>com.mytiki</groupId>
<artifactId>core-iceberg-utils</artifactId>
<version>0.2.5</version>
<version>0.2.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.21.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.21.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-log4j2</artifactId>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
Expand Down

0 comments on commit a93f7fd

Please sign in to comment.