package kafka-eio
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Eio-native Kafka client for OCaml 5, built on librdkafka
Install
dune-project
Dependency
Authors
Maintainers
Sources
v0.1.1.tar.gz
md5=88c2b9c6d263a1eb114cc5d1b570288a
sha512=44f5395fcc58b8d4303bc0b36113a17193da3a1925125cb0742fabeb96f32eb6b243c98d2fde283b6c95872ff36ddbf96de6e98b7612799e2aefeb2f85a1db95
doc/src/kafka-eio.producer/kafka_producer.ml.html
Source file kafka_producer.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440type delivery_mode = | At_least_once | At_most_once | Exactly_once of { transaction_id : string } type config = { brokers : string list; delivery_mode : delivery_mode; linger_ms : int option; security : Kafka_security.t; properties : (string * string) list; } (* Unix.file_descr is an int under the hood on all Unix platforms. *) external int_of_fd : Unix.file_descr -> int = "%identity" external fd_of_int : int -> Unix.file_descr = "%identity" type t = { handle : Kafka_raw.kafka_handle; topic_cache : (string, Kafka_raw.kafka_topic) Hashtbl.t; delivery_mode: delivery_mode; (* Both ends of both pipes are kept so close can explicitly close them — Eio_unix.pipe ties their fd lifetime to the *switch*, not to this value's own lifetime, so close must release them itself or they leak until the switch (which may long outlive any one producer) ends. *) pipe_source : Eio_unix.source_ty Eio.Std.r; delivery_sink: Eio_unix.sink_ty Eio.Std.r; wake_source : Eio_unix.source_ty Eio.Std.r; wake_sink : Eio_unix.sink_ty Eio.Std.r; pending : (int64, (unit, Kafka_error.t) result Eio.Promise.u) Hashtbl.t; next_id : int64 ref; mutex : Mutex.t; closed : bool Atomic.t; (* write end of the poll wake pipe; -1 if poll_fiber was not started. close t writes one byte here to unblock the daemon's single_read. *) wake_fd : int Atomic.t; poll_exited : unit Eio.Promise.t; poll_exit_r : unit Eio.Promise.u; (* delivery_fiber blocks in Eio.Flow.read_exact, which a fixed-size-struct read can't safely unblock with a wake byte (it would corrupt framing). close instead races the read against this promise via Eio.Fiber.first and awaits delivery_exited, so the pipes are provably unused by the time close gets to closing them. *) delivery_stop : unit Eio.Promise.t; delivery_stop_r : unit Eio.Promise.u; delivery_exited : unit Eio.Promise.t; delivery_exit_r : unit Eio.Promise.u; } let err i = Error (Kafka_error.of_int i) let conf_of_config (cfg : config) : (Kafka_raw.kafka_conf, string) result = let ( let* ) = Result.bind in let conf = Kafka_raw.conf_new () in let set k v = Kafka_raw.conf_set conf k v |> Result.map_error (fun s -> "kafka conf " ^ k ^ ": " ^ s) in let* () = set "bootstrap.servers" (String.concat "," cfg.brokers) in let* () = match cfg.linger_ms with | Some ms -> set "linger.ms" (string_of_int ms) | None -> Ok () in let* () = Kafka_security.apply conf cfg.security in let* () = match cfg.delivery_mode with | At_most_once -> set "acks" "0" | At_least_once -> let* () = set "acks" "all" in set "enable.idempotence" "true" | Exactly_once { transaction_id } -> let* () = set "acks" "all" in let* () = set "enable.idempotence" "true" in set "transactional.id" transaction_id in (* Applied after every typed/security default above, so advanced users can override or extend with any librdkafka key this module has no typed field for (client.id, statistics.interval.ms, custom SASL mechanisms, ...) without waiting on a new config field. *) let* () = List.fold_left (fun acc (k, v) -> let* () = acc in set k v) (Ok ()) cfg.properties in Ok conf let is_closed t = Atomic.get t.closed let get_or_create_topic t name = match Hashtbl.find_opt t.topic_cache name with | Some rkt -> Ok rkt | None -> match Kafka_raw.topic_new t.handle name with | Ok rkt -> Hashtbl.add t.topic_cache name rkt; Ok rkt | Error msg -> Printf.eprintf "kafka-eio: topic_new %S failed: %s\n%!" name msg; Error Kafka_error.Invalid_arg (* Reads delivery receipts from the pipe one struct at a time. Eio.Flow.read_exact suspends via io_uring (IORING_OP_READV with a cancel hook) until the C delivery callback writes exactly one delivery_result_t to the pipe, then resumes the fiber instantly. No Unix.select, no arbitrary timeout, no drain loop — each iteration reads exactly sizeof(delivery_result_t) bytes and resolves the corresponding pending promise before looping back to wait again. buf is allocated once and reused; it is safe to mutate because parsing is strictly synchronous with no yields between read and use. The blocked read is interrupted by racing it against delivery_stop via Eio.Fiber.first, rather than writing a wake byte the way poll_fiber does — a fixed-size struct read has no way to distinguish a wake byte from real framing, so writing one would corrupt the next read. *) let delivery_fiber t sw = let sz = Kafka_raw.delivery_sizeof () in let buf = Cstruct.create sz in Eio.Fiber.fork_daemon ~sw (fun () -> let rec loop () = if Atomic.get t.closed then () else match Eio.Fiber.first (fun () -> `Read (Eio.Flow.read_exact t.pipe_source buf)) (fun () -> Eio.Promise.await t.delivery_stop; `Stop) with | `Stop -> () | exception End_of_file -> () | `Read () -> let corr_id = Cstruct.LE.get_uint64 buf 0 in let err_code = Int32.to_int (Cstruct.LE.get_uint32 buf 8) in let result = if err_code = 0 then Ok () else err err_code in Mutex.lock t.mutex; Fun.protect ~finally:(fun () -> Mutex.unlock t.mutex) (fun () -> match Hashtbl.find_opt t.pending corr_id with | None -> () | Some resolver -> Hashtbl.remove t.pending corr_id; Eio.Promise.resolve resolver result); loop () in (try loop () with Eio.Cancel.Cancelled _ -> ()); Eio.Promise.resolve t.delivery_exit_r (); `Stop_daemon) (* Sleeps at 0% CPU on the wake_source read end. librdkafka writes one byte to the matching write end whenever its main queue transitions from empty to non-empty (via enable_queue_events — edge-triggered). On wake-up we drain all pending events with poll(rk,0) — which fires delivery callbacks that write receipts to the delivery pipe — then yield so the Eio scheduler can process io_uring completions from delivery_fiber and the HTTP calls. Two safety measures: - write end is set O_NONBLOCK so librdkafka's background thread never blocks if the pipe buffer fills up (writes fail silently; the drain loop handles all accumulated events regardless of how many wake bytes arrived). - a seed drain runs once before the loop to process events that landed in the queue between kafka_new and enable_queue_events, which would never trigger the edge notification. *) let poll_fiber t sw = let wake_source = t.wake_source and wake_sink = t.wake_sink in (* ocaml_kafka_enable_queue_events sets O_NONBLOCK on write_fd itself. *) let write_fd_int = Eio_unix.Fd.use_exn "kafka_queue_wake_fd" (Eio_unix.Resource.fd wake_sink) int_of_fd in Atomic.set t.wake_fd write_fd_int; Kafka_raw.enable_queue_events t.handle write_fd_int; Eio.Fiber.fork_daemon ~sw (fun () -> let wake_buf = Cstruct.create 4096 in let rec drain_kafka () = let n = Kafka_raw.poll t.handle 0 in if n > 0 then drain_kafka () in drain_kafka (); (* seed: clear pre-registration events *) let rec loop () = if Atomic.get t.closed then () else match Eio.Flow.single_read wake_source wake_buf with | exception (Eio.Cancel.Cancelled _) -> () | exception End_of_file -> () | _n -> drain_kafka (); Eio.Fiber.yield (); loop () in (try loop () with Eio.Cancel.Cancelled _ -> ()); Eio.Promise.resolve t.poll_exit_r (); `Stop_daemon) let close t = if Atomic.compare_and_set t.closed false true then (* Eio.Cancel.protect ensures flush + destroy always run even when the enclosing fiber is cancelled mid-shutdown. Without this, librdkafka's background threads keep running (and sending to the wake/delivery pipe fds), which can corrupt unrelated Eio resources after fd recycling. *) Eio.Cancel.protect (fun () -> let wfd = Atomic.get t.wake_fd in if wfd >= 0 then begin Kafka_raw.disable_queue_events t.handle; let buf = Bytes.make 1 '\x01' in (try ignore (Unix.write (fd_of_int wfd) buf 0 1) with Unix.Unix_error (Unix.EPIPE, _, _) -> () | Unix.Unix_error _ -> ()); Eio.Promise.await t.poll_exited end; (* flush does its own internal polling, which still fires delivery callbacks for messages acked during this call — so delivery_fiber must stay alive through flush to resolve those produce_await promises accurately, and is only stopped once flush has returned. *) ignore (Kafka_raw.flush t.handle 5000); Eio.Promise.resolve t.delivery_stop_r (); Eio.Promise.await t.delivery_exited; (* Resolve any produce_await promises that never saw a delivery receipt — the pipe can drop one under backpressure (see ocaml_kafka_pipe_create), or flush itself can time out — so a fiber awaiting one would otherwise hang forever after close. *) let leftover = Mutex.lock t.mutex; Fun.protect ~finally:(fun () -> Mutex.unlock t.mutex) (fun () -> let leftover = Hashtbl.fold (fun _ r acc -> r :: acc) t.pending [] in Hashtbl.reset t.pending; leftover) in List.iter (fun r -> Eio.Promise.resolve r (Error Kafka_error.Destroy)) leftover; (* librdkafka's documented lifecycle contract requires every cached topic object to be destroyed before the handle that created it — relying solely on each kafka_topic's GC finalizer for this (unspecified timing relative to the handle's own destroy below) would risk violating that ordering (regression note). *) Hashtbl.iter (fun _ rkt -> Kafka_raw.topic_destroy rkt) t.topic_cache; Hashtbl.reset t.topic_cache; Kafka_raw.destroy t.handle; (* Both daemon fibers have confirmed exit above (poll_exited / delivery_exited), so neither pipe is "in use" — safe to close now. Eio_unix.pipe ties fd lifetime to the *switch*, not to this value, so without this all four fds leak until sw itself ends, however long that is. *) Eio.Flow.close t.pipe_source; Eio.Flow.close t.delivery_sink; Eio.Flow.close t.wake_source; Eio.Flow.close t.wake_sink) let create (cfg : config) ~sw = let (pipe_source, delivery_sink) = Eio_unix.pipe sw in let (wake_source, wake_sink) = Eio_unix.pipe sw in (* Both ends of both pipes are managed by sw, so their fds stay open until sw ends unless explicitly closed. Below this point, no fiber has started using them yet, so any failure path can close them directly rather than leaking until sw (which may long outlive this one failed create call) ends. *) let close_pipes () = Eio.Flow.close pipe_source; Eio.Flow.close delivery_sink; Eio.Flow.close wake_source; Eio.Flow.close wake_sink in (* Extract the raw write-fd integer for the C delivery callback. *) let write_fd_int = Eio_unix.Fd.use_exn "kafka_write_fd" (Eio_unix.Resource.fd delivery_sink) int_of_fd in match conf_of_config cfg with | Error msg -> close_pipes (); Error (Kafka_error.Config_error msg) | Ok conf -> match Kafka_raw.kafka_new Kafka_raw.Producer conf write_fd_int with | Error msg -> close_pipes (); Error (Kafka_error.Config_error msg) | Ok handle -> let (poll_exited, poll_exit_r) = Eio.Promise.create () in let (delivery_stop, delivery_stop_r) = Eio.Promise.create () in let (delivery_exited, delivery_exit_r) = Eio.Promise.create () in let t = { handle; topic_cache = Hashtbl.create 8; delivery_mode = cfg.delivery_mode; pipe_source; delivery_sink; wake_source; wake_sink; pending = Hashtbl.create 64; next_id = ref 1L; mutex = Mutex.create (); closed = Atomic.make false; wake_fd = Atomic.make (-1); poll_exited; poll_exit_r; delivery_stop; delivery_stop_r; delivery_exited; delivery_exit_r; } in let start_fibers () = delivery_fiber t sw; (* poll_fiber drains librdkafka's main queue so delivery callbacks fire between explicit flush/commit_transaction calls too — without it, a transactional producer's delivery reports (and thus produce_await promises) only get serviced when a transaction happens to call flush/commit/abort, not continuously like other delivery modes. *) poll_fiber t sw; Eio.Switch.on_release sw (fun () -> close t); Ok t in (match cfg.delivery_mode with | Exactly_once _ -> (match Kafka_raw.init_transactions handle 5000 with | Error e -> Kafka_raw.destroy handle; close_pipes (); Error (Kafka_error.of_int e.code) | Ok () -> start_fibers ()) | _ -> start_fibers ()) let produce t ~topic ~value ?key ?(headers = []) () = if is_closed t then Error Kafka_error.Destroy else match headers with | [] -> (match get_or_create_topic t topic with | Error e -> Error e | Ok rkt -> match Kafka_raw.produce rkt Int32.minus_one value key 0L with | Ok () -> Ok () | Error i -> err i) | _ -> (match Kafka_raw.produce_v t.handle topic Int32.minus_one value key 0L headers with | Ok () -> Ok () | Error i -> err i) let produce_await t ~topic ~value ?key ?(headers = []) () = let promise, resolver = Eio.Promise.create () in if is_closed t then begin Eio.Promise.resolve resolver (Error Kafka_error.Destroy); promise end else begin let corr_id = Mutex.lock t.mutex; Fun.protect ~finally:(fun () -> Mutex.unlock t.mutex) (fun () -> let corr_id = !(t.next_id) in t.next_id := Int64.add corr_id 1L; Hashtbl.add t.pending corr_id resolver; corr_id) in let rc : (unit, Kafka_error.t) result = match headers with | [] -> (match get_or_create_topic t topic with | Error e -> Error e | Ok rkt -> match Kafka_raw.produce rkt Int32.minus_one value key corr_id with | Ok () -> Ok () | Error i -> err i) | _ -> (match Kafka_raw.produce_v t.handle topic Int32.minus_one value key corr_id headers with | Ok () -> Ok () | Error i -> err i) in (match rc with | Error e -> Mutex.lock t.mutex; Fun.protect ~finally:(fun () -> Mutex.unlock t.mutex) (fun () -> Hashtbl.remove t.pending corr_id); Eio.Promise.resolve resolver (Error e) | Ok () -> ()); promise end let create_topic t ~topic_name ~partitions ~replication_factor = if is_closed t then Error Kafka_error.Destroy else match Kafka_raw.create_topic t.handle ~topic_name ~partitions ~replication_factor with | 0 -> Ok () | i -> err i let flush t ~timeout_ms = if is_closed t then Error Kafka_error.Destroy else match Kafka_raw.flush t.handle timeout_ms with | Ok () -> Ok () | Error i -> err i type txn_failure = { error : Kafka_error.t; is_fatal : bool; is_retriable : bool; requires_abort : bool; } type transaction_error = | App_error of Kafka_error.t | Txn_failure of txn_failure let string_of_transaction_error = function | App_error e -> Kafka_error.to_string e | Txn_failure f -> Kafka_error.to_string f.error let txn_failure_of_raw (e : Kafka_raw.txn_error) : txn_failure = { error = Kafka_error.of_int e.code; is_fatal = e.is_fatal; is_retriable = e.is_retriable; requires_abort = e.requires_abort; } (* librdkafka reports whether a transactional-call failure requires aborting the transaction as a flag on the error itself (not derivable from the error code) — abort only when it says so. *) let abort_if_required t (e : Kafka_raw.txn_error) = if e.requires_abort then ignore (Kafka_raw.abort_transaction t.handle 5000) let with_transaction t ?consumer_offsets f = if is_closed t then Error (App_error Kafka_error.Destroy) else match t.delivery_mode with | Exactly_once _ -> (match Kafka_raw.begin_transaction t.handle with | Error e -> Error (Txn_failure (txn_failure_of_raw e)) | Ok () -> (* The interface promises abort on Error or exception. Without catching the exception case, f raising leaves the transaction open: later transactional calls fail with state/concurrent-transaction errors, and produced records sit unresolved until timeout/fencing. *) match f () with | exception exn -> ignore (Kafka_raw.abort_transaction t.handle 5000); raise exn | Error _ as e -> ignore (Kafka_raw.abort_transaction t.handle 5000); Result.map_error (fun k -> App_error k) e | Ok () -> let offsets_sent = match consumer_offsets with | None -> Ok () | Some (ch, offsets) -> Kafka_raw.send_offsets_to_transaction t.handle (Kafka_consumer_handle.to_raw ch) offsets 5000 in (match offsets_sent with | Error e -> abort_if_required t e; Error (Txn_failure (txn_failure_of_raw e)) | Ok () -> match Kafka_raw.commit_transaction t.handle 5000 with | Ok () -> Ok () | Error e -> abort_if_required t e; Error (Txn_failure (txn_failure_of_raw e)))) | _ -> Error (App_error Kafka_error.Not_implemented)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>