Skip to content
Snippets Groups Projects
Commit a1af3d50 authored by Sören Henning's avatar Sören Henning
Browse files

Fix Docker setup and main class ref

parent 6756d19b
No related branches found
No related tags found
No related merge requests found
Pipeline #370 passed
...@@ -15,11 +15,22 @@ services: ...@@ -15,11 +15,22 @@ services:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000
KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1,dayofweek:3:1,hourofday:3:1,hourofweek:3:1" KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1,dayofweek:3:1,hourofday:3:1,hourofweek:3:1"
schema-registry:
image: confluentinc/cp-schema-registry:5.3.1
depends_on:
- zookeeper
- kafka
expose:
- "8081"
environment:
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181'
uc-app: uc-app:
image: benediktwetzel/uc2-app:latest #TODO image: soerenhenning/uc4-app:latest #TODO
environment: environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092 KAFKA_BOOTSTRAP_SERVERS: kafka:9092
SCHEMA_REGISTRY_URL: http://schema-registry:8081
uc-wg: uc-wg:
image: benediktwetzel/uc2-wg:latest #TODO image: soerenhenning/uc4-wg:latest #TODO
environment: environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092 KAFKA_BOOTSTRAP_SERVERS: kafka:9092
FROM openjdk:11-slim FROM openjdk:11-slim
ADD build/distributions/exp-bigdata19-bridge.tar / ADD build/distributions/uc4-workload-generator.tar /
CMD export JAVA_OPTS=-Dorg.slf4j.simpleLogger.defaultLogLevel=$LOG_LEVEL \ CMD JAVA_OPTS="$JAVA_OPTS -Dorg.slf4j.simpleLogger.defaultLogLevel=$LOG_LEVEL" \
&& /exp-bigdata19-bridge/bin/exp-bigdata19-bridge /uc4-workload-generator/bin/uc4-workload-generator
\ No newline at end of file
...@@ -21,7 +21,7 @@ dependencies { ...@@ -21,7 +21,7 @@ dependencies {
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
} }
mainClassName = "titan.ccp.kiekerbridge.expbigdata19.ExperimentorBigData" mainClassName = "uc4.workloadGenerator.LoadGenerator"
eclipse { eclipse {
classpath { classpath {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment