Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ services:
- ./containers/db/initialize:/docker-entrypoint-initdb.d/
ports:
- 3433:1433
mem_limit: 2.5G

liquibase:
build:
Expand All @@ -22,6 +23,7 @@ services:
depends_on:
nbs-mssql:
condition: service_healthy
mem_limit: 200M

wildfly:
image: ghcr.io/cdcent/nedssdev:6.0.18.1
Expand All @@ -32,6 +34,7 @@ services:
- "9991:9990"
- "7003:7001"
- "8788:8787"
mem_limit: 1G

kafka:
image: confluentinc/cp-kafka:7.8.7
Expand Down Expand Up @@ -62,6 +65,7 @@ services:
interval: 15s
timeout: 10s
retries: 5
mem_limit: 700M

kafka-connect:
build:
Expand Down Expand Up @@ -95,6 +99,7 @@ services:
interval: 20s
timeout: 15s
retries: 5
mem_limit: 1.25G

debezium:
image: debezium/connect:2.4
Expand Down Expand Up @@ -130,6 +135,7 @@ services:
interval: 10s
timeout: 5s
retries: 5
mem_limit: 800M

investigation-service:
build:
Expand All @@ -146,6 +152,7 @@ services:
condition: service_healthy
liquibase:
condition: service_completed_successfully
mem_limit: 300M

ldfdata-service:
build:
Expand All @@ -162,6 +169,7 @@ services:
condition: service_healthy
liquibase:
condition: service_completed_successfully
mem_limit: 300M

observation-service:
build:
Expand All @@ -178,6 +186,7 @@ services:
condition: service_healthy
liquibase:
condition: service_completed_successfully
mem_limit: 300M

organization-service:
build:
Expand All @@ -194,6 +203,7 @@ services:
condition: service_healthy
liquibase:
condition: service_completed_successfully
mem_limit: 300M

person-service:
build:
Expand All @@ -211,6 +221,7 @@ services:
condition: service_healthy
liquibase:
condition: service_completed_successfully
mem_limit: 300M

post-processing-service:
build:
Expand All @@ -227,6 +238,7 @@ services:
condition: service_healthy
liquibase:
condition: service_completed_successfully
mem_limit: 300M

reporting-hydration-service:
build:
Expand All @@ -243,3 +255,4 @@ services:
condition: service_healthy
liquibase:
condition: service_completed_successfully
mem_limit: 300M
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ spring:
consumer:
maxPollIntervalMs: 6000
max-retry: 10
properties:
metadata.max.age.ms: 6000
service:
fixed-delay:
cached-ids: 6000
Expand Down