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

Dekaf materialization endpoint support #1791

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
39 changes: 21 additions & 18 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion crates/agent/src/api/authorize_task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ fn evaluate_authorization(
tasks,
..
} = snapshot;

// Map `claims.sub`, a Shard ID, into its task.
let task = tasks
.binary_search_by(|task| {
Expand Down
3 changes: 3 additions & 0 deletions crates/dekaf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ models = { path = "../models" }
ops = { path = "../ops" }
proto-flow = { path = "../proto-flow" }
proto-gazette = { path = "../proto-gazette" }
runtime = { path = "../runtime" }
simd-doc = { path = "../simd-doc" }

aes-siv = { workspace = true }
Expand All @@ -39,6 +40,7 @@ hex = { workspace = true }
hexdump = { workspace = true }
humantime = { workspace = true }
itertools = { workspace = true }
jsonwebtoken = { workspace = true }
kafka-protocol = { workspace = true }
lazy_static = { workspace = true }
lz4_flex = { workspace = true }
Expand All @@ -58,6 +60,7 @@ schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
socket2 = { workspace = true }
sqlx = { workspace = true }
time = { workspace = true }
tokio = { workspace = true }
tokio-rustls = { workspace = true }
Expand Down
5 changes: 1 addition & 4 deletions crates/dekaf/src/api_client.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use anyhow::{anyhow, bail, Context};
use bytes::{Bytes, BytesMut};
use futures::{SinkExt, TryStreamExt};
use gazette::broker;
use kafka_protocol::{
error::ParseResponseErrorCode,
messages::{self, ApiKey},
Expand All @@ -11,17 +10,15 @@ use rsasl::{config::SASLConfig, mechname::Mechname, prelude::SASLClient};
use rustls::RootCertStore;
use std::{
boxed::Box,
cell::Cell,
collections::HashMap,
fmt::Debug,
io,
time::{Duration, SystemTime},
};
use std::{io::BufWriter, pin::Pin, sync::Arc};
use tokio::sync::OnceCell;
use tokio::sync::RwLock;
use tokio_rustls::rustls;
use tokio_util::{codec, task::AbortOnDropHandle};
use tokio_util::codec;
use tracing::instrument;
use url::Url;

Expand Down
21 changes: 18 additions & 3 deletions crates/dekaf/src/connector.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use anyhow::{bail, Context};
use proto_flow::materialize;
use proto_flow::{flow::materialization_spec, materialize};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use std::collections::BTreeMap;
Expand Down Expand Up @@ -38,6 +38,7 @@ pub struct DekafConfig {
/// tombstones with null values, and "Header" emits then as a kafka document
/// with empty string and `_is_deleted` header set to `1`. Setting this value
/// will also cause all other non-deletions to have an `_is_deleted` header of `0`.
#[serde(default)]
pub deletions: DeletionMode,
}

Expand Down Expand Up @@ -70,8 +71,22 @@ pub async fn unary_materialize(
) -> anyhow::Result<materialize::Response> {
use proto_flow::materialize::response::validated;
if let Some(mut validate) = request.validate {
serde_json::de::from_str::<DekafConfig>(&validate.config_json)
.context("validating endpoint config")?;
match materialization_spec::ConnectorType::try_from(validate.connector_type)? {
materialization_spec::ConnectorType::Dekaf => {}
other => bail!("invalid connector type: {}", other.as_str_name()),
};

let parsed_outer_config =
serde_json::from_str::<models::DekafConfig>(&validate.config_json)
.context("validating dekaf config")?;

let _parsed_inner_config = serde_json::from_value::<DekafConfig>(
parsed_outer_config.config.to_value(),
)
.context(format!(
"validating dekaf endpoint config for variant {}",
parsed_outer_config.variant
))?;

// Largely copied from crates/validation/src/noop.rs
let validated_bindings = std::mem::take(&mut validate.bindings)
Expand Down
Loading
Loading