-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
331 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
version: '2' | ||
services: | ||
kafka-ui: | ||
container_name: kafka-ui | ||
image: provectuslabs/kafka-ui:latest | ||
ports: | ||
- 8080:8080 | ||
depends_on: | ||
- kafka0 | ||
- schema-registry0 | ||
- kafka-connect0 | ||
environment: | ||
KAFKA_CLUSTERS_0_NAME: local | ||
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka0:29092 | ||
KAFKA_CLUSTERS_0_METRICS_PORT: 9997 | ||
KAFKA_CLUSTERS_0_SCHEMAREGISTRY: http://schema-registry0:8085 | ||
KAFKA_CLUSTERS_0_KAFKACONNECT_0_NAME: first | ||
KAFKA_CLUSTERS_0_KAFKACONNECT_0_ADDRESS: http://kafka-connect0:8083 | ||
DYNAMIC_CONFIG_ENABLED: 'true' # not necessary, added for tests | ||
|
||
kafka0: | ||
image: confluentinc/cp-kafka:7.2.1.arm64 | ||
hostname: kafka0 | ||
container_name: kafka0 | ||
ports: | ||
- 9092:9092 | ||
- 9997:9997 | ||
environment: | ||
KAFKA_BROKER_ID: 1 | ||
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,CONTROLLER:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT | ||
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka0:29092,PLAINTEXT_HOST://localhost:9092 | ||
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT | ||
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 | ||
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0 | ||
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1 | ||
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1 | ||
KAFKA_PROCESS_ROLES: 'broker,controller' | ||
KAFKA_NODE_ID: 1 | ||
KAFKA_CONTROLLER_QUORUM_VOTERS: '1@kafka0:29093' | ||
KAFKA_LISTENERS: 'PLAINTEXT://kafka0:29092,CONTROLLER://kafka0:29093,PLAINTEXT_HOST://0.0.0.0:9092' | ||
KAFKA_CONTROLLER_LISTENER_NAMES: 'CONTROLLER' | ||
KAFKA_LOG_DIRS: '/tmp/kraft-combined-logs' | ||
KAFKA_JMX_PORT: 9997 | ||
KAFKA_JMX_OPTS: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=kafka0 -Dcom.sun.management.jmxremote.rmi.port=9997 | ||
volumes: | ||
- ./scripts/update_run.sh:/tmp/update_run.sh | ||
command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'" | ||
|
||
schema-registry0: | ||
image: confluentinc/cp-schema-registry:7.2.1.arm64 | ||
ports: | ||
- 8085:8085 | ||
depends_on: | ||
- kafka0 | ||
environment: | ||
SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: PLAINTEXT://kafka0:29092 | ||
SCHEMA_REGISTRY_KAFKASTORE_SECURITY_PROTOCOL: PLAINTEXT | ||
SCHEMA_REGISTRY_HOST_NAME: schema-registry0 | ||
SCHEMA_REGISTRY_LISTENERS: http://schema-registry0:8085 | ||
|
||
SCHEMA_REGISTRY_SCHEMA_REGISTRY_INTER_INSTANCE_PROTOCOL: "http" | ||
SCHEMA_REGISTRY_LOG4J_ROOT_LOGLEVEL: INFO | ||
SCHEMA_REGISTRY_KAFKASTORE_TOPIC: _schemas | ||
|
||
kafka-connect0: | ||
image: confluentinc/cp-kafka-connect:7.2.1.arm64 | ||
ports: | ||
- 8083:8083 | ||
depends_on: | ||
- kafka0 | ||
- schema-registry0 | ||
environment: | ||
CONNECT_BOOTSTRAP_SERVERS: kafka0:29092 | ||
CONNECT_GROUP_ID: compose-connect-group | ||
CONNECT_CONFIG_STORAGE_TOPIC: _connect_configs | ||
CONNECT_CONFIG_STORAGE_REPLICATION_FACTOR: 1 | ||
CONNECT_OFFSET_STORAGE_TOPIC: _connect_offset | ||
CONNECT_OFFSET_STORAGE_REPLICATION_FACTOR: 1 | ||
CONNECT_STATUS_STORAGE_TOPIC: _connect_status | ||
CONNECT_STATUS_STORAGE_REPLICATION_FACTOR: 1 | ||
CONNECT_KEY_CONVERTER: org.apache.kafka.connect.storage.StringConverter | ||
CONNECT_KEY_CONVERTER_SCHEMA_REGISTRY_URL: http://schema-registry0:8085 | ||
CONNECT_VALUE_CONVERTER: org.apache.kafka.connect.storage.StringConverter | ||
CONNECT_VALUE_CONVERTER_SCHEMA_REGISTRY_URL: http://schema-registry0:8085 | ||
CONNECT_INTERNAL_KEY_CONVERTER: org.apache.kafka.connect.json.JsonConverter | ||
CONNECT_INTERNAL_VALUE_CONVERTER: org.apache.kafka.connect.json.JsonConverter | ||
CONNECT_REST_ADVERTISED_HOST_NAME: kafka-connect0 | ||
CONNECT_PLUGIN_PATH: "/usr/share/java,/usr/share/confluent-hub-components" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This script is required to run kafka cluster (without zookeeper) | ||
#!/bin/sh | ||
|
||
# Docker workaround: Remove check for KAFKA_ZOOKEEPER_CONNECT parameter | ||
sed -i '/KAFKA_ZOOKEEPER_CONNECT/d' /etc/confluent/docker/configure | ||
|
||
# Docker workaround: Ignore cub zk-ready | ||
sed -i 's/cub zk-ready/echo ignore zk-ready/' /etc/confluent/docker/ensure | ||
|
||
# KRaft required step: Format the storage directory with a new cluster ID | ||
echo "kafka-storage format --ignore-formatted -t $(kafka-storage random-uuid) -c /etc/kafka/kafka.properties" >> /etc/confluent/docker/ensure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
defmodule Kafkaesque.KafkaClients.BrodClientTest do | ||
use Kafkaesque.Case, async: false | ||
|
||
alias Kafkaesque.KafkaClients.BrodClient | ||
|
||
setup_all do | ||
topic_configs = [ | ||
%{ | ||
configs: [ | ||
%{ | ||
name: "cleanup.policy", | ||
value: "compact" | ||
}, | ||
%{ | ||
name: "confluent.value.schema.validation", | ||
value: false | ||
} | ||
], | ||
num_partitions: 1, | ||
replication_factor: 1, | ||
assignments: [], | ||
name: "integration_test_topic" | ||
}, | ||
%{ | ||
configs: [ | ||
%{ | ||
name: "cleanup.policy", | ||
value: "compact" | ||
}, | ||
%{ | ||
name: "confluent.value.schema.validation", | ||
value: true | ||
} | ||
], | ||
num_partitions: 1, | ||
replication_factor: 1, | ||
assignments: [], | ||
name: "integration_test_topic_2" | ||
} | ||
] | ||
|
||
_ = :brod.create_topics([{"localhost", 9092}], topic_configs, %{timeout: 15_000}) | ||
|
||
:ok | ||
end | ||
|
||
# required a running kafka instance | ||
@tag :integration | ||
test "starts and publishes messages" do | ||
assert {:ok, client} = | ||
BrodClient.start_link( | ||
client_id: :my_client, | ||
brokers: [{"localhost", 9092}] | ||
) | ||
|
||
# Success case | ||
message = %Kafkaesque.Message{ | ||
id: 1, | ||
partition: 0, | ||
topic: "integration_test_topic", | ||
body: "test_message" | ||
} | ||
|
||
assert {:ok, %{success: [%Message{body: "test_message"}]}} = | ||
BrodClient.publish(client, [message]) | ||
|
||
# Failure case | ||
message = %Kafkaesque.Message{ | ||
id: 1, | ||
partition: 9, | ||
topic: "integration_test_topic_2", | ||
body: "test_message" | ||
} | ||
|
||
assert {:ok, %{error: [%Message{body: "test_message"}]}} = | ||
BrodClient.publish(client, [message]) | ||
end | ||
end |
Oops, something went wrong.