-
Notifications
You must be signed in to change notification settings - Fork 4.6k
🎉 New Destination: Apache Iceberg #18836
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
379be3b
wip: developing Iceberg(s3 & hive catalog) Destination
Leibnizhu ed48721
wip: developing Iceberg(s3 & hive catalog) Destination 2
Leibnizhu e1f2b34
wip: developing Iceberg(s3 & hive catalog) Destination 3
Leibnizhu 439ca06
wip: developing Iceberg(s3 & hive catalog) Destination 3
Leibnizhu 2576799
wip: developing Iceberg(s3 & hive catalog) Destination 2
Leibnizhu 70e5aa5
refactor: config
Leibnizhu 976fdda
feat: add hadoop and jdbc catalog implements
Leibnizhu fa2f84d
docs: add docs and config examples
Leibnizhu b946fb1
style
Leibnizhu 7f3256b
feat: S3Config
Leibnizhu 3fbc7b8
fix: acceptance test, and unit test
Leibnizhu eee7194
chore: remove sensitive logs
Leibnizhu 7b34ec3
docs: builds.md
Leibnizhu 6c2618d
refactor: 1.add flush batch size and auto compact configs 2.refactor …
Leibnizhu 9c92e75
test: add integration test
Leibnizhu 1965e26
test: Add HadoopCatalog integration tests
Leibnizhu 35afab0
docs: add bootstrap.md
Leibnizhu a26afbd
test: Add HiveCatalog integration tests
Leibnizhu d77d3f9
perf: purge drop temp Iceberg table
Leibnizhu d8de9ac
chore: delete unnecessary log
Leibnizhu 6ab6bfc
remove iceberg accpt test file
marcosmarxm fa17207
run format
marcosmarxm 8020724
readd iceberg
marcosmarxm dde1a8a
regenrate spec
marcosmarxm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.