Skip to content

Commit

Permalink
feat(sink): support bigquery sink upsert (#15780)
Browse files Browse the repository at this point in the history
Co-authored-by: xxhZs <xxhZs@users.noreply.github.com>
  • Loading branch information
xxhZs and xxhZs committed Apr 26, 2024
1 parent a692ed0 commit 2dcd0f6
Show file tree
Hide file tree
Showing 7 changed files with 614 additions and 135 deletions.
137 changes: 125 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ futures = { version = "0.3", default-features = false, features = ["alloc"] }
futures-async-stream = { workspace = true }
gcp-bigquery-client = "0.18.0"
glob = "0.3"
google-cloud-bigquery = { version = "0.7.0", features = ["auth"] }
google-cloud-gax = "0.17.0"
google-cloud-googleapis = "0.12.0"
google-cloud-pubsub = "0.24"
http = "0.2"
icelake = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions src/connector/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#![feature(error_generic_member_access)]
#![feature(negative_impls)]
#![feature(register_tool)]
#![feature(assert_matches)]
#![register_tool(rw)]
#![recursion_limit = "256"]

Expand Down
Loading

0 comments on commit 2dcd0f6

Please sign in to comment.