Skip to content

Commit

Permalink
chore(kafka): Update Kafka support (#15722)
Browse files Browse the repository at this point in the history
Updating integration tests to target oldest non-EOL Kafka version (using Confluent as the benchmark)
and docs to match.

Closes: #1984

Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>

Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
  • Loading branch information
jszwedko authored Dec 23, 2022
1 parent 3c9e41f commit a29c5fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/integration/docker-compose.kafka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
ports:
- 2181:2181
kafka:
image: docker.io/wurstmeister/kafka:2.13-2.6.0
image: docker.io/wurstmeister/kafka:2.12-2.4.1
depends_on:
- zookeeper
environment:
Expand Down
2 changes: 1 addition & 1 deletion website/cue/reference/services/kafka.cue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services: kafka: {
name: "Kafka"
thing: "\(name) topics"
url: urls.kafka
versions: ">= 0.8"
versions: ">= 2.4"

description: "[Apache Kafka](\(urls.kafka)) is an open-source project for a distributed publish-subscribe messaging system rethought as a distributed commit log. Kafka stores messages in topics that are partitioned and replicated across multiple brokers in a cluster. Producers send messages to topics from which consumers read. These features make it an excellent candidate for durably storing logs and metrics data."
}

0 comments on commit a29c5fb

Please sign in to comment.