-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates test execution to avoid failures (#258)
* Use `SingleOrDefault` instead of `Single` to manage conditions where it is raised `System.InvalidOperationException: Sequence contains no elements` * Split windows jobs since Kafka seems to crash on that OS if heavily loaded * In case of timeout, especially in Windows, exit without report error because the error comes from external source * Configuration in workflow folder and remove prefetch * Upload dumps * Added KafkaStreams test * Update management of exceptions * Added Raw and Buffered tests for KafkaStreams * Use latest JDK for tests * Code harmonization * Adds tests with prefetch * Fix #22 aligning key of headers to the JVM type * Update tests moving out execution from Main to verify if some tests fails for the same reason reported in masesgroup/KNet#509
- Loading branch information
1 parent
f976afb
commit 3aba45f
Showing
26 changed files
with
361 additions
and
131 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
.github/workflows/configuration/Benchmark.KNetReplicator.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"DatabaseName": "TestDBBenchmark", | ||
"BootstrapServers": "localhost:9092", | ||
"NumberOfExecutions": 10, | ||
"UseEnumeratorWithPrefetch": false | ||
} |
6 changes: 6 additions & 0 deletions
6
.github/workflows/configuration/Benchmark.KNetStreams.Buffered.Prefetch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"DatabaseName": "TestDBBenchmark", | ||
"UseCompactedReplicator": false, | ||
"BootstrapServers": "localhost:9092", | ||
"NumberOfExecutions": 10 | ||
} |
7 changes: 7 additions & 0 deletions
7
.github/workflows/configuration/Benchmark.KNetStreams.Buffered.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"DatabaseName": "TestDBBenchmark", | ||
"UseCompactedReplicator": false, | ||
"BootstrapServers": "localhost:9092", | ||
"NumberOfExecutions": 10, | ||
"UseEnumeratorWithPrefetch": false | ||
} |
7 changes: 7 additions & 0 deletions
7
.github/workflows/configuration/Benchmark.KNetStreams.Raw.Prefetch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"DatabaseName": "TestDBBenchmark", | ||
"UseCompactedReplicator": false, | ||
"UseByteBufferDataTransfer": false, | ||
"BootstrapServers": "localhost:9092", | ||
"NumberOfExecutions": 10 | ||
} |
8 changes: 8 additions & 0 deletions
8
.github/workflows/configuration/Benchmark.KNetStreams.Raw.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"DatabaseName": "TestDBBenchmark", | ||
"UseCompactedReplicator": false, | ||
"UseByteBufferDataTransfer": false, | ||
"BootstrapServers": "localhost:9092", | ||
"NumberOfExecutions": 10, | ||
"UseEnumeratorWithPrefetch": false | ||
} |
7 changes: 7 additions & 0 deletions
7
.github/workflows/configuration/Benchmark.KafkaStreams.Buffered.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"DatabaseName": "TestDBBenchmark", | ||
"UseCompactedReplicator": false, | ||
"UseKNetStreams": false, | ||
"BootstrapServers": "localhost:9092", | ||
"NumberOfExecutions": 10 | ||
} |
8 changes: 8 additions & 0 deletions
8
.github/workflows/configuration/Benchmark.KafkaStreams.Raw.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"DatabaseName": "TestDBBenchmark", | ||
"UseCompactedReplicator": false, | ||
"UseKNetStreams": false, | ||
"UseByteBufferDataTransfer": false, | ||
"BootstrapServers": "localhost:9092", | ||
"NumberOfExecutions": 10 | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.