Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Snowflake Loader

ATTENTION: PoC only!! It is not supposed to be used unless the limitations are clearly understood!

_Take data from a topic (different schemas are supported) and load the (nested) data into relational tables of Snowflake. The VARIANT column is not used._

Source code available here: [github](https://github.com/rtdi/SnowflakeLoader)
Expand Down
2 changes: 1 addition & 1 deletion WebContent/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<servlet-name>jersey-servlet</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-name>jakarta.ws.rs.Application</param-name>
<param-value>io.rtdi.bigdata.snowflakeloader.JerseyApplicationSettings</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.rtdi.bigdata.connector</groupId>
<artifactId>snowflakeloader</artifactId>
<version>0.7.4</version>
<version>0.7.6</version>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<io.rtdi.bigdata.connector.version>0.9.37</io.rtdi.bigdata.connector.version>
<io.rtdi.bigdata.connector.version>0.10.1</io.rtdi.bigdata.connector.version>
</properties>
<build>
<finalName>${project.artifactId}</finalName>
Expand Down Expand Up @@ -45,7 +45,7 @@
<dependency>
<groupId>net.snowflake</groupId>
<artifactId>snowflake-jdbc</artifactId>
<version>3.12.10</version>
<version>3.12.16</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -54,10 +54,10 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>