Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Merge requests
!95
Introduce Gradle convention plugins
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Introduce Gradle convention plugins
stu202077/theodolite:gradle-convention
into
master
Overview
4
Commits
7
Pipelines
0
Changes
47
All threads resolved!
Hide all comments
Merged
Björn Vonheiden
requested to merge
stu202077/theodolite:gradle-convention
into
master
4 years ago
Overview
4
Commits
7
Pipelines
0
Changes
47
All threads resolved!
Hide all comments
Expand
Implements
#107 (closed)
Depends on
!90 (merged)
.
Edited
4 years ago
by
Sören Henning
0
0
Merge request reports
Viewing commit
4e2d6790
Prev
Next
Show latest version
47 files
+
1025
−
531
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
47
Search (e.g. *.vue) (Ctrl+P)
4e2d6790
Merge branch 'master' into stu202077/spesb-gradle-convention
· 4e2d6790
Sören Henning
authored
4 years ago
theodolite-benchmarks/docker-test/uc1-flink-docker-compose/docker-compose.yml
0 → 100755
+
69
−
0
Options
version
:
'
2'
services
:
zookeeper
:
image
:
confluentinc/cp-zookeeper
expose
:
-
"
9092"
environment
:
ZOOKEEPER_CLIENT_PORT
:
2181
kafka
:
image
:
wurstmeister/kafka
expose
:
-
"
9092"
#ports:
# - 19092:19092
environment
:
KAFKA_LISTENERS
:
PLAINTEXT://:9092,CONNECTIONS_FROM_HOST://:19092
KAFKA_ADVERTISED_LISTENERS
:
PLAINTEXT://kafka:9092,CONNECTIONS_FROM_HOST://localhost:19092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP
:
PLAINTEXT:PLAINTEXT,CONNECTIONS_FROM_HOST:PLAINTEXT
KAFKA_ZOOKEEPER_CONNECT
:
zookeeper:2181
KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS
:
30000
KAFKA_CREATE_TOPICS
:
"
input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1"
schema-registry
:
image
:
confluentinc/cp-schema-registry:5.3.1
depends_on
:
-
zookeeper
-
kafka
expose
:
-
"
8081"
#ports:
# - 8081:8081
environment
:
SCHEMA_REGISTRY_HOST_NAME
:
schema-registry
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL
:
'
zookeeper:2181'
load-generator
:
image
:
ghcr.io/cau-se/theodolite-uc1-workload-generator:latest
depends_on
:
-
schema-registry
-
kafka
environment
:
BOOTSTRAP_SERVER
:
uc-wg:5701
PORT
:
5701
KAFKA_BOOTSTRAP_SERVERS
:
kafka:9092
SCHEMA_REGISTRY_URL
:
http://schema-registry:8081
NUM_SENSORS
:
10
benchmark-jobmanager
:
image
:
ghcr.io/cau-se/theodolite-uc1-flink:latest
ports
:
-
"
8080:8081"
command
:
standalone-job --job-classname theodolite.uc1.application.HistoryServiceFlinkJob
environment
:
-
KAFKA_BOOTSTRAP_SERVERS=kafka:9092
-
SCHEMA_REGISTRY_URL=http://schema-registry:8081
-
|
FLINK_PROPERTIES=
jobmanager.rpc.address: benchmark-jobmanager
parallelism.default: 1
depends_on
:
-
schema-registry
-
kafka
benchmark-taskmanager
:
image
:
ghcr.io/cau-se/theodolite-uc1-flink:latest
command
:
taskmanager
environment
:
-
|
FLINK_PROPERTIES=
jobmanager.rpc.address: benchmark-jobmanager
depends_on
:
-
schema-registry
-
kafka
Loading