-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 New Destination: Apache Iceberg (#18836)
* wip: developing Iceberg(s3 & hive catalog) Destination * wip: developing Iceberg(s3 & hive catalog) Destination 2 * wip: developing Iceberg(s3 & hive catalog) Destination 3 * wip: developing Iceberg(s3 & hive catalog) Destination 3 * wip: developing Iceberg(s3 & hive catalog) Destination 2 * refactor: config * feat: add hadoop and jdbc catalog implements * docs: add docs and config examples * style * feat: S3Config * fix: acceptance test, and unit test * chore: remove sensitive logs * docs: builds.md * refactor: 1.add flush batch size and auto compact configs 2.refactor package 3. add unit tests * test: add integration test * test: Add HadoopCatalog integration tests * docs: add bootstrap.md * test: Add HiveCatalog integration tests * perf: purge drop temp Iceberg table * chore: delete unnecessary log * remove iceberg accpt test file * run format * readd iceberg * regenrate spec Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
- Loading branch information
1 parent
2c451b3
commit 456c920
Showing
49 changed files
with
3,479 additions
and
1 deletion.
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
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
3 changes: 3 additions & 0 deletions
3
airbyte-integrations/connectors/destination-iceberg/.dockerignore
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* | ||
!Dockerfile | ||
!build |
25 changes: 25 additions & 0 deletions
25
airbyte-integrations/connectors/destination-iceberg/Dockerfile
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM airbyte/integration-base-java:dev AS build | ||
|
||
WORKDIR /airbyte | ||
ENV APPLICATION destination-iceberg | ||
|
||
COPY build/distributions/${APPLICATION}*.tar ${APPLICATION}.tar | ||
|
||
RUN tar xf ${APPLICATION}.tar --strip-components=1 && rm -rf ${APPLICATION}.tar | ||
|
||
FROM airbyte/integration-base-java:dev | ||
|
||
WORKDIR /airbyte | ||
ENV APPLICATION destination-iceberg | ||
|
||
ENV JAVA_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED \ | ||
--add-opens java.base/java.util=ALL-UNNAMED \ | ||
--add-opens java.base/java.lang.reflect=ALL-UNNAMED \ | ||
--add-opens java.base/java.text=ALL-UNNAMED \ | ||
--add-opens java.base/sun.nio.ch=ALL-UNNAMED \ | ||
--add-opens java.base/java.nio=ALL-UNNAMED " | ||
|
||
COPY --from=build /airbyte /airbyte | ||
|
||
LABEL io.airbyte.version=0.1.0 | ||
LABEL io.airbyte.name=airbyte/destination-iceberg |
Oops, something went wrong.