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

Make `disableMetrics` and `fasterCopy` configurable

parent 2071b542
No related branches found
No related tags found
No related merge requests found
Pipeline #10213 failed
......@@ -20,8 +20,8 @@ spec:
image: ghcr.io/cau-se/theodolite-uc1-beam-flink:latest
args: ["standalone-job", "--job-classname", "rocks.theodolite.benchmarks.uc1.beam.flink.Uc1BeamFlink",
"--parallelism=$(PARALLELISM)",
"--disableMetrics=true",
"--fasterCopy"]
"--disableMetrics=$(DISABLE_METRICS)",
"--fasterCopy=$(FASTER_COPY)"]
# optional arguments: ["--job-id", "<job id>", "--fromSavepoint", "/path/to/savepoint", "--allowNonRestoredState"]
env:
- name: KAFKA_BOOTSTRAP_SERVERS
......@@ -32,6 +32,10 @@ spec:
value: "false"
- name: PARALLELISM
value: "1"
- name: DISABLE_METRICS
value: "true"
- name: FASTER_COPY
value: "true"
- name: "FLINK_STATE_BACKEND"
value: "rocksdb"
- name: JOB_MANAGER_RPC_ADDRESS
......
......@@ -20,8 +20,8 @@ spec:
image: ghcr.io/cau-se/theodolite-uc2-beam-flink:latest
args: ["standalone-job", "--job-classname", "rocks.theodolite.benchmarks.uc2.beam.flink.Uc2BeamFlink",
"--parallelism=$(PARALLELISM)",
"--disableMetrics=true",
"--fasterCopy"]
"--disableMetrics=$(DISABLE_METRICS)",
"--fasterCopy=$(FASTER_COPY)"]
# optional arguments: ["--job-id", "<job id>", "--fromSavepoint", "/path/to/savepoint", "--allowNonRestoredState"]
env:
- name: KAFKA_BOOTSTRAP_SERVERS
......@@ -32,6 +32,10 @@ spec:
value: "false"
- name: PARALLELISM
value: "1"
- name: DISABLE_METRICS
value: "true"
- name: FASTER_COPY
value: "true"
- name: "FLINK_STATE_BACKEND"
value: "rocksdb"
- name: JOB_MANAGER_RPC_ADDRESS
......
......@@ -20,8 +20,8 @@ spec:
image: ghcr.io/cau-se/theodolite-uc3-beam-flink:latest
args: ["standalone-job", "--job-classname", "rocks.theodolite.benchmarks.uc3.beam.flink.Uc3BeamFlink",
"--parallelism=$(PARALLELISM)",
"--disableMetrics=true",
"--fasterCopy"]
"--disableMetrics=$(DISABLE_METRICS)",
"--fasterCopy=$(FASTER_COPY)"]
# optional arguments: ["--job-id", "<job id>", "--fromSavepoint", "/path/to/savepoint", "--allowNonRestoredState"]
env:
- name: KAFKA_BOOTSTRAP_SERVERS
......@@ -32,6 +32,10 @@ spec:
value: "false"
- name: PARALLELISM
value: "1"
- name: DISABLE_METRICS
value: "true"
- name: FASTER_COPY
value: "true"
- name: "FLINK_STATE_BACKEND"
value: "rocksdb"
- name: JOB_MANAGER_RPC_ADDRESS
......
......@@ -20,8 +20,8 @@ spec:
image: ghcr.io/cau-se/theodolite-uc4-beam-flink:latest
args: ["standalone-job", "--job-classname", "rocks.theodolite.benchmarks.uc4.beam.flink.Uc4BeamFlink",
"--parallelism=$(PARALLELISM)",
"--disableMetrics=true",
"--fasterCopy"]
"--disableMetrics=$(DISABLE_METRICS)",
"--fasterCopy=$(FASTER_COPY)"]
# optional arguments: ["--job-id", "<job id>", "--fromSavepoint", "/path/to/savepoint", "--allowNonRestoredState"]
env:
- name: KAFKA_BOOTSTRAP_SERVERS
......@@ -32,6 +32,10 @@ spec:
value: "false"
- name: PARALLELISM
value: "1"
- name: DISABLE_METRICS
value: "true"
- name: FASTER_COPY
value: "true"
- name: "FLINK_STATE_BACKEND"
value: "rocksdb"
- name: JOB_MANAGER_RPC_ADDRESS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment