Download Latest Version redpanda-connect-lambda_4.110.0_linux_amd64.zip (93.7 MB) Google Add to Preferred Sources
Home / v4.108.0
Name Modified Size InfoDownloads / Week
Parent folder
redpanda-connect-4.108.0-1.aarch64.rpm 2026-09-03 84.7 MB
redpanda-connect-4.108.0-1.aarch64.rpm.sha256 2026-09-03 64 Bytes
redpanda-connect-4.108.0-1.x86_64.rpm 2026-09-03 95.4 MB
redpanda-connect-4.108.0-1.x86_64.rpm.sha256 2026-09-03 64 Bytes
redpanda-connect_4.108.0_amd64.deb 2026-09-03 95.4 MB
redpanda-connect_4.108.0_amd64.deb.sha256 2026-09-03 64 Bytes
redpanda-connect_4.108.0_arm64.deb 2026-09-03 84.7 MB
redpanda-connect_4.108.0_arm64.deb.sha256 2026-09-03 64 Bytes
redpanda-connect_4.108.0_darwin_amd64.tar.gz 2026-09-03 97.7 MB
redpanda-connect_4.108.0_darwin_amd64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect_4.108.0_darwin_arm64.tar.gz 2026-09-03 89.4 MB
redpanda-connect_4.108.0_darwin_arm64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect_4.108.0_linux_amd64.tar.gz 2026-09-03 95.5 MB
redpanda-connect_4.108.0_linux_amd64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect_4.108.0_linux_arm64.tar.gz 2026-09-03 84.8 MB
redpanda-connect_4.108.0_linux_arm64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect_4.108.0_windows_amd64.tar.gz 2026-09-03 97.6 MB
redpanda-connect_4.108.0_windows_amd64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect_4.108.0_windows_arm64.tar.gz 2026-09-03 85.0 MB
redpanda-connect_4.108.0_windows_arm64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect-cloud_4.108.0_darwin_amd64.tar.gz 2026-09-03 98.0 MB
redpanda-connect-cloud_4.108.0_darwin_amd64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect-cloud_4.108.0_darwin_arm64.tar.gz 2026-09-03 89.6 MB
redpanda-connect-cloud_4.108.0_darwin_arm64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect-cloud_4.108.0_linux_amd64.tar.gz 2026-09-03 95.7 MB
redpanda-connect-cloud_4.108.0_linux_amd64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect-cloud_4.108.0_linux_arm64.tar.gz 2026-09-03 85.0 MB
redpanda-connect-cloud_4.108.0_linux_arm64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect-lambda-al2_4.108.0_linux_amd64.zip 2026-09-03 93.5 MB
redpanda-connect-lambda-al2_4.108.0_linux_amd64.zip.sha256 2026-09-03 64 Bytes
redpanda-connect-lambda-al2_4.108.0_linux_arm64.zip 2026-09-03 83.0 MB
redpanda-connect-lambda-al2_4.108.0_linux_arm64.zip.sha256 2026-09-03 64 Bytes
redpanda-connect-lambda_4.108.0_linux_amd64.zip 2026-09-03 93.5 MB
redpanda-connect-lambda_4.108.0_linux_amd64.zip.sha256 2026-09-03 64 Bytes
redpanda-connect-cgo_4.108.0_linux_amd64.tar.gz 2026-09-03 177.1 MB
redpanda-connect-cgo_4.108.0_linux_amd64.tar.gz.sha256 2026-09-03 64 Bytes
redpanda-connect-fips-4.108.0-1.x86_64.rpm 2026-09-03 96.1 MB
redpanda-connect-fips-4.108.0-1.x86_64.rpm.sha256 2026-09-03 64 Bytes
redpanda-connect-fips_4.108.0_amd64.deb 2026-09-03 96.1 MB
redpanda-connect-fips_4.108.0_amd64.deb.sha256 2026-09-03 64 Bytes
redpanda-connect-fips_4.108.0_linux_amd64.tar.gz 2026-09-03 96.2 MB
redpanda-connect-fips_4.108.0_linux_amd64.tar.gz.sha256 2026-09-03 64 Bytes
README.md 2026-09-03 2.5 kB
v4.108.0 source code.tar.gz 2026-09-03 3.6 MB
v4.108.0 source code.zip 2026-09-03 5.5 MB
Totals: 45 Items   2.0 GB 1

For installation instructions check out the getting started guide.

Fixed

  • aws_dynamodb_cdc: Settle acks by handle and isolate per-shard backpressure (@squiidz, #4739)
  • prometheus: Fixed prometheus exporter accumulating frozen metric series for deleted streams by purging their labels when streams are deleted. (@squiidz, #4742)
  • aws_dynamodb_cdc: Fixed shard discovery aborting on transient failures by allowing partial success and retrying failed shards on the next cycle, enabling convergence with large shard backlogs. (@squiidz, #4737)
  • oracledb_cdc: Fix handling of flashback / redo log resets (@josephwoodward, #4760)
  • websocket input/output: Connection attempts (dial and upgrade handshake) and input reads now honor context cancellation, preventing graceful shutdown from hanging on unresponsive servers or idle connections. (@Leward, #490)
  • websocket output: A failed write now closes the connection instead of leaking it before the reconnect. (@Leward, #492)

Changed

  • websocket input: The default value of max_message_size has changed from 0 (unlimited) to 33554432 (32 MiB). An unlimited read allows the websocket server to make the process allocate an unbounded amount of memory with a single streamed message. Pipelines that receive larger messages must now set max_message_size explicitly; a value of 0 restores the previous unlimited behaviour. (@Leward, #491)
  • avro: Added avro.input_encoding config to explicitly declare whether messages should be read as Avro JSON or native Go values, replacing automatic inference that could misinterpret bytes fields. (@twmb, #4704)

The full change log can be found here.

Source: README.md, updated 2026-09-03