Skip to content
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

feat(sink): support deltalake sink with rust sdk #13600

Merged
merged 35 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e6bc0ee
add delta lake sink
xxhZs Nov 21, 2023
013eede
fix
xxhZs Nov 21, 2023
f0047ba
Merge branch 'main' into 13152-reimplement-delta-lake-sink-with-rust-sdk
xxhZs Nov 23, 2023
2ff021f
fmt
xxhZs Nov 23, 2023
7b85ea2
save
xxhZs Nov 23, 2023
6fbbac3
fix cargo lock
xxhZs Nov 24, 2023
c6a709c
fmt
xxhZs Nov 28, 2023
1ddf1f9
fix
xxhZs Nov 28, 2023
cdecda5
Merge branch 'main' into 13152-reimplement-delta-lake-sink-with-rust-sdk
xxhZs Nov 28, 2023
f521372
Merge branch 'main' into 13152-reimplement-delta-lake-sink-with-rust-sdk
xxhZs Nov 28, 2023
c890167
use separate arrow version for deltalake
wenym1 Dec 1, 2023
2a35a5e
Merge branch 'main' into 13152-reimplement-delta-lake-sink-with-rust-sdk
wenym1 Dec 1, 2023
0aa6785
fix timestamptz
xxhZs Dec 1, 2023
9b7b543
use mod path to avoid macro
wenym1 Dec 1, 2023
e460901
add license and comment
wenym1 Dec 1, 2023
13ff6ed
Merge branch 'main' into 13152-reimplement-delta-lake-sink-with-rust-sdk
wenym1 Dec 4, 2023
c187f72
update test
wenym1 Dec 5, 2023
2217f61
add comment
wenym1 Dec 5, 2023
4c503fa
Merge branch 'main' into 13152-reimplement-delta-lake-sink-with-rust-sdk
wenym1 Dec 5, 2023
1aaf516
use expect
wenym1 Dec 5, 2023
e1a3814
save
xxhZs Dec 5, 2023
76547e4
fix fmt
xxhZs Dec 7, 2023
b0b1b87
add ci
xxhZs Dec 7, 2023
50899c0
Merge branch 'main' into 13152-reimplement-delta-lake-sink-with-rust-sdk
xxhZs Dec 7, 2023
10b1ba6
Empty commit
xxhZs Dec 7, 2023
5a492a6
fix ci
xxhZs Dec 7, 2023
435eb73
fix
xxhZs Dec 8, 2023
cf96d64
ut timeout 20 -> 22
xxhZs Dec 12, 2023
4a83b8f
fix region
xxhZs Dec 12, 2023
814dcc9
reduce compile time and binary size
wenym1 Dec 12, 2023
f9605ad
Merge branch 'main' into 13152-reimplement-delta-lake-sink-with-rust-sdk
wenym1 Dec 12, 2023
899070a
temp add hakari third party
wenym1 Dec 13, 2023
86625ab
use new delta-rs commit
wenym1 Dec 13, 2023
5c365a9
Merge branch 'main' into 13152-reimplement-delta-lake-sink-with-rust-sdk
xxhZs Dec 14, 2023
a4023e5
fix ci
xxhZs Dec 14, 2023
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
1 change: 1 addition & 0 deletions .config/hakari.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ third-party = [
{ name = "criterion" },
{ name = "console" },
{ name = "similar" },
{ name = "deltalake", git = "https://github.com/risingwavelabs/delta-rs", rev = "5c2dccd4640490202ffe98adbd13b09cef8e007b" },
]
2 changes: 1 addition & 1 deletion .github/workflows/cherry-pick-to-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
pr_body: ${{ format('Cherry picking \#{0} onto branch v1.5.1-rc', github.event.number) }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

release_pull_request_1_5_0:
if: "contains(github.event.pull_request.labels.*.name, 'need-cherry-pick-v1.5.0') && github.event.pull_request.merged == true"
runs-on: ubuntu-latest
Expand Down
Loading
Loading