Skip to content

Commit cea51a6

Browse files
committed
update to have both reporting arches
Signed-off-by: see-quick <[email protected]> # Conflicts: # .github/actions/systemtests/perf-report/action.yml
1 parent 9d8b0bd commit cea51a6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/actions/systemtests/generate-matrix/pipelines.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ pipelines:
396396
### Performance ###
397397
###################
398398
# x86-64
399-
- agent: "ubuntu-latest"
399+
- agent: "oracle-vm-8cpu-32gb-x86-64"
400400
arch: "amd64"
401401
pipeline: "performance"
402402
profile: "performance"
@@ -406,7 +406,7 @@ pipelines:
406406
cluster_operator_install_type: "yaml"
407407
parallel: 1
408408
# arm64
409-
- agent: "ubuntu-24.04-arm"
409+
- agent: "oracle-vm-8cpu-32gb-arm64"
410410
arch: "arm64"
411411
pipeline: "performance"
412412
profile: "performance"

.github/actions/systemtests/perf-report/action.yml

Whitespace-only changes.

systemtest/src/test/java/io/strimzi/systemtest/performance/TopicOperatorScalabilityPerformance.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class TopicOperatorScalabilityPerformance extends AbstractST {
4646
private TestStorage suiteTestStorage;
4747

4848
// topic event batches to test
49-
private final List<Integer> eventBatches = List.of(10, 130, 500, 1000);
49+
private final List<Integer> eventBatches = List.of(10, 100, 500, 1000);
5050
private final int maxBatchSize = 100;
5151
private final int maxBatchLingerMs = 100;
5252
private final int maxQueueSize = Integer.MAX_VALUE;

systemtest/src/test/java/io/strimzi/systemtest/performance/UserOperatorScalabilityPerformance.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ void testScalability() {
171171
@Tag(SCALABILITY)
172172
void testLatencyUnderLoad() {
173173
final TestStorage testStorage = new TestStorage(KubeResourceManager.get().getTestContext());
174-
final List<Integer> loadLevels = List.of(110, 200, 300);
174+
final List<Integer> loadLevels = List.of(1000, 1500, 2000);
175175
final int numberOfModifications = 100;
176176
// default configuration of UO
177177
final int maxBatchSize = 100;

0 commit comments

Comments
 (0)