forked from intersystems-community/irisdemo-demo-htap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-enterprise-iris.yml
More file actions
89 lines (82 loc) · 2.76 KB
/
docker-compose-enterprise-iris.yml
File metadata and controls
89 lines (82 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Starts the SpeedTest using IRIS.
#
# This will use standard IRIS to run the speed test. If you are a customer, you can
# pull it form the Docker Store with your DockerHub username and password. If you are an
# InterSystems employee
version: '2.4'
services:
htapui:
depends_on:
htapmaster:
condition: service_healthy
container_name: htapui
hostname: htapui
image: ${DOCKER_REPO}:ui-version-${TAG}
ports:
- "10000:4200" # Where Node Will be listening
htapirisdb:
# We can't use clean IRIS because its HEALTHCHECK period is too long.
# So the downloadiris.sh script builds a new image that fixes the HEALTHCHECK
# and pushes it to our private repository so we can pull it here.
image: amirsamary/irisdemo/iris.2019.3.0-latest
hostname: htapirisdb
command: --key /irislicense/iris.key
init: true
container_name: htapirisdb
ports:
- "10001:52773" # 52773 is the webserver/management portal port: http://localhost:9092/csp/sys/UtilHome.csp
volumes:
- type: bind
source: ./IRISLicense/
target: /irislicense
htapmaster:
depends_on:
htapirisdb:
condition: service_healthy
container_name: htapmaster
hostname: htapmaster
init: true
image: intersystemsdc/irisdemo-demo-htap:ui-version-2.5.0
ports:
- "10002:8080" # Where Springboot Will be listening
environment:
- MASTER_SPEEDTEST_TITLE=SpeedTest | IRIS 2019.3.0.309.0
- START_CONSUMERS=true
- DISABLE_JOURNAL_FOR_DROP_TABLE=true
- DISABLE_JOURNAL_FOR_TRUNCATE_TABLE=true
- INGESTION_THREADS_PER_WORKER=2
- INGESTION_BATCH_SIZE=1000
- INGESTION_JDBC_URL=jdbc:IRIS://htapirisdb:51773/USER
- INGESTION_JDBC_USERNAME=SuperUser
- INGESTION_JDBC_PASSWORD=sys
- CONSUMER_JDBC_URL=jdbc:IRIS://htapirisdb:51773/USER
- CONSUMER_JDBC_USERNAME=SuperUser
- CONSUMER_JDBC_PASSWORD=sys
- CONSUMER_THREADS_PER_WORKER=1
- CONSUMER_TIME_BETWEEN_QUERIES_IN_MILLIS=10
ingest-worker1:
depends_on:
htapmaster:
condition: service_healthy
container_name: ingest-worker1
hostname: ingest-worker1
init: true
image: intersystemsdc/irisdemo-demo-htap:iris-jdbc-ingest-worker-version-2.5.0
ports:
- "10003:8080" # Where Springboot Will be listening
environment:
- MASTER_HOSTNAME=htapmaster
- MASTER_PORT=8080
query-worker1:
depends_on:
htapmaster:
condition: service_healthy
container_name: query-worker1
hostname: query-worker1
init: true
image: intersystemsdc/irisdemo-demo-htap:iris-jdbc-query-worker-version-2.5.0
ports:
- "10004:8080" # Where Springboot Will be listening
environment:
- MASTER_HOSTNAME=htapmaster
- MASTER_PORT=8080