Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional JMH tests (legacy) #5

Open
wants to merge 27 commits into
base: java21
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c528cdd
Additional JMH tests
bgprudhomme Aug 25, 2024
151c708
Update MemStatementListTestIT.java
bgprudhomme Aug 25, 2024
23a7261
Update pr-verify.yml
bgprudhomme Aug 25, 2024
6070d38
Update pr-verify.yml
bgprudhomme Aug 25, 2024
34a102f
Update MultithreadedTest.java
bgprudhomme Aug 26, 2024
21f9f25
Add Param annotations to relevant existing benchmarks
bgprudhomme Aug 27, 2024
4e41525
Format
bgprudhomme Aug 27, 2024
3486b22
JMH shell script
bgprudhomme Aug 29, 2024
41fff93
Change workload (legacy)
Nov 22, 2024
303b6c1
Increase heap space
Nov 22, 2024
ba41df9
Merge branch 'java21_additional_jmh' into java21_additional_jmh_workload
Nov 22, 2024
66d8bdb
Merge pull request #8 from ponder-lab/java21_additional_jmh_workload
bgprudhomme Nov 26, 2024
b2ab520
Update MemStatementListTestIT.java
bgprudhomme Nov 26, 2024
032a9a5
Update ParallelMixedReadWriteBenchmark.java
bgprudhomme Nov 27, 2024
123ec28
Update ParallelMixedReadWriteBenchmark.java
bgprudhomme Nov 27, 2024
ba77308
Restore workload in ConcurrentQueryBenchmark.java
bgprudhomme Dec 3, 2024
95402fd
Restore workload in MemValueFactoryConcurrentBenchmark.java
bgprudhomme Dec 3, 2024
d258de6
Restore workload in ParallelMixedReadWriteBenchmark.java
bgprudhomme Dec 3, 2024
2f2e5e2
Restore workload in MemStatementListTestIT.java
bgprudhomme Dec 3, 2024
c073cb8
Add back space.
khatchad Dec 11, 2024
8941b01
Add back space.
khatchad Dec 11, 2024
5582715
Use a higher max heap size.
khatchad Dec 11, 2024
5a472d6
Increase max heap size
bgprudhomme Dec 12, 2024
457994e
Increase max heap size
bgprudhomme Dec 12, 2024
c3f26f1
Increase max heap size
bgprudhomme Dec 12, 2024
3443145
Increase max heap size
bgprudhomme Dec 12, 2024
5db29ea
Remove unnecessary flags
bgprudhomme Dec 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Restore workload in MemStatementListTestIT.java
bgprudhomme authored Dec 3, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 2f2e5e235a07a9dd15ed63b6351ab0a94c433ed6
Original file line number Diff line number Diff line change
@@ -109,7 +109,7 @@ public static void beforeAll() throws IOException {
statements = stream
.map(s -> ((MemStatement) s))
.sorted(Comparator.comparing(Object::toString))
.limit(5000)
.limit(10000)
.collect(Collectors.toList());
}
connection.commit();