Skip to content

Commit 5ff3754

Browse files
committed
Merge branch 'master' into feature/ci-benchmarks
# Conflicts: # package-lock.json # package.json
2 parents a7993df + c39d4fc commit 5ff3754

135 files changed

Lines changed: 6889 additions & 1955 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ node_modules/
55
/.idea
66
/.awcache
77
/.vscode
8+
*.code-workspace
89

910
# bundle
1011
packages/**/*.d.ts

integration/docker-compose.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,42 @@ services:
3131
- "3306:3306"
3232
restart: always
3333
mongodb:
34+
container_name: test-mongodb
3435
image: mongo:latest
3536
environment:
3637
- MONGODB_DATABASE="test"
3738
ports:
3839
- 27017:27017
3940
rabbit:
41+
container_name: test-rabbit
4042
hostname: rabbit
4143
image: "rabbitmq:management"
4244
ports:
4345
- "15672:15672"
4446
- "5672:5672"
4547
tty: true
48+
zookeeper:
49+
container_name: test-zookeeper
50+
hostname: zookeeper
51+
image: confluentinc/cp-zookeeper:5.3.0
52+
ports:
53+
- "2181:2181"
54+
environment:
55+
ZOOKEEPER_CLIENT_PORT: 2181
56+
ZOOKEEPER_TICK_TIME: 2000
57+
kafka:
58+
container_name: test-kafka
59+
hostname: kafka
60+
image: confluentinc/cp-kafka:5.3.0
61+
depends_on:
62+
- zookeeper
63+
ports:
64+
- "29092:29092"
65+
- "9092:9092"
66+
environment:
67+
KAFKA_BROKER_ID: 1
68+
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
69+
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
70+
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092
71+
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
72+
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0

0 commit comments

Comments
 (0)