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

Introduce Dekaf control-plane components #1665

Merged
merged 26 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
fd041a3
dekaf: Introduce `MaterializationEndpoint::Dekaf`
jshearer Sep 18, 2024
f141de9
crates/activate: Dekaf materializations should not get shards or reco…
jshearer Sep 19, 2024
13e45c7
schema: Update `flow.schema.json` to include `MaterializationEndpoint…
jshearer Sep 20, 2024
1576b90
dekaf: Allow for indirecting `DekafConfig` if/when desired
jshearer Sep 24, 2024
c101864
dekaf: Introduce and validate `DekafResourceConfig` to configure a pa…
jshearer Sep 26, 2024
c9ff4df
temporarily remove `dekaf` dependency on `flowctl`
jshearer Sep 30, 2024
b8b33d6
runtime: Delegate to Dekaf's `unary_materialize` when appropriate
jshearer Sep 30, 2024
280195d
Factor out `flow-client` from `flowctl`
jshearer Sep 30, 2024
0e37c22
dekaf: Clean up and stub out location where bearer token will be checked
jshearer Sep 30, 2024
ad46121
test: Update Dekaf tests
jshearer Sep 30, 2024
c99ce10
dekaf: Refresh token is not a JWT
jshearer Sep 30, 2024
705281d
Some PR feedback
jshearer Oct 1, 2024
0a95114
dekaf: Implement a couple memory optimizations
jshearer Oct 2, 2024
6b52dbd
dekaf: Add some important annotations to endpoint/resource schemas
jshearer Oct 2, 2024
1ac9c90
flow-client: Refactor to extract out refresh logic into bare function…
jshearer Oct 2, 2024
fdd7c1a
dekaf: Always decrement `total_connections`, even if error
jshearer Oct 3, 2024
14c50a8
flow_client: Refactor to expose refreshed credentials
jshearer Oct 3, 2024
063f286
dekaf: Expose more useful api histogram buckets
jshearer Oct 3, 2024
d55ecee
flowctl: Fix running unauthenticated
jshearer Oct 4, 2024
02db746
dekaf: Enable tuning connection pool size
jshearer Oct 4, 2024
1ce6a58
dekaf: add more metrics and break out `dekaf_request_time` by request…
jshearer Oct 4, 2024
a98284a
dekaf: Frequently kill idle connections
jshearer Oct 4, 2024
52defc3
dekaf: Remove connection healthcheck as `FindCoordinator` takes ~3-5 …
jshearer Oct 4, 2024
86745ef
dekaf: Add a bunch of descriptive timeouts
jshearer Oct 4, 2024
4064be8
dekaf: Temporarily implement and use `flow_client::Client::with_fresh…
jshearer Oct 7, 2024
e1362fd
dekaf: Request clients to throttle if we hit a timeout
jshearer Oct 7, 2024
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
139 changes: 112 additions & 27 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ lz4_flex = "0.11.0"
mime = "0.3"
memchr = "2.5"
metrics = "0.23.0"
metrics-prometheus = "0.7.0"
metrics-exporter-prometheus = "0.15.3"
prometheus = "0.13.4"
md5 = "0.7.0"
num-bigint = "0.4"
Expand Down
Loading
Loading