-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #738 from Altinity/testflows_new_kafka_tests
Testflows new kafka tests
- Loading branch information
Showing
43 changed files
with
2,397 additions
and
519 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
testflows==2.1.5 | ||
testflows==2.4.10 | ||
python-dateutil==2.9.0 | ||
numpy==1.26.4 | ||
pyarrow==16.1.0 | ||
|
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
22 changes: 22 additions & 0 deletions
22
sink-connector/tests/integration/env/clickhouse-sink-connector-kafka-service.yml
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,22 @@ | ||
version: "2.3" | ||
|
||
services: | ||
clickhouse-sink-connector-kafka: | ||
hostname: clickhouse-sink-connector-kafka | ||
image: ${SINK_CONNECTOR_IMAGE} | ||
restart: "no" | ||
expose: | ||
- "8083" | ||
- "5005" | ||
- "39999" | ||
environment: | ||
- BOOTSTRAP_SERVERS=kafka:9092 | ||
- GROUP_ID=2 | ||
- CONFIG_STORAGE_TOPIC=config-storage-topic-sink | ||
- OFFSET_STORAGE_TOPIC=offset-storage-topic-sink | ||
- STATUS_STORAGE_TOPIC=status-storage-topic-sink | ||
- LOG_LEVEL=INFO | ||
- JAVA_DEBUG_PORT=*:5005 | ||
- DEFAULT_JAVA_DEBUG_PORT=*:5005 | ||
- KAFKA_DEBUG=true | ||
- JMX_PORT=39999 |
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,23 @@ | ||
version: "2.3" | ||
|
||
services: | ||
debezium: | ||
container_name: debezium | ||
hostname: debezium | ||
build: | ||
context: ../../../docker/debezium_jmx | ||
args: | ||
DEBEZIUM_VERSION: 2.1.0.Alpha1 | ||
restart: "no" | ||
expose: | ||
- "8083" | ||
- "1976" | ||
environment: | ||
- BOOTSTRAP_SERVERS=kafka:9092 | ||
- GROUP_ID=1 | ||
- CONFIG_STORAGE_TOPIC=config-storage-topic-debezium | ||
- OFFSET_STORAGE_TOPIC=offset-storage-topic-debezium | ||
- STATUS_STORAGE_TOPIC=status-storage-topic-debezium | ||
- LOG_LEVEL=INFO | ||
- KEY_CONVERTER=io.confluent.connect.avro.AvroConverter | ||
- VALUE_CONVERTER=io.confluent.connect.avro.AvroConverter |
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
Oops, something went wrong.