Skip to content

Commit

Permalink
Ubuntu benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
alanpaxton committed Sep 11, 2024
1 parent 70e9127 commit e932e61
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion java/jmh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,23 @@ GetBenchmarks.preallocatedGetCritical no_column_family 100
GetBenchmarks.preallocatedGetRandom no_column_family 1000 128 65536 thrpt 25 612645.818 ± 6203.882 ops/s
GetBenchmarks.preallocatedGetRandomCritical no_column_family 1000 128 65536 thrpt 25 606301.335 ± 5731.483 ops/s

Looks like minimal differences..
Looks like minimal differences..

Try on ubuntu box; had to build without jemalloc as it was crapping out.
```
DISABLE_JEMALLOC=1 make -j4
DISABLE_JEMALLOC=1 make -j4 rocksdbjava
```
...
```
java -jar target/rocksdbjni-jmh-1.0-SNAPSHOT-benchmarks.jar GetBenchmarks.preallocatedGet GetBenchmarks.preallocatedGetCritical -p columnFamilyTestType="no_column_family" -p keyCount=1000 -p keySize=128 -p valueSize=65536 bufferListSize=256
```

Benchmark (columnFamilyTestType) (keyCount) (keySize) (valueSize) Mode Cnt Score Error Units
GetBenchmarks.preallocatedGet no_column_family 1000 128 65536 thrpt 25 26371.815 ± 283.231 ops/s
GetBenchmarks.preallocatedGetCritical no_column_family 1000 128 65536 thrpt 25 26446.532 ± 266.897 ops/s
GetBenchmarks.preallocatedGetRandom no_column_family 1000 128 65536 thrpt 25 60889.568 ± 371.162 ops/s
GetBenchmarks.preallocatedGetRandomCritical no_column_family 1000 128 65536 thrpt 25 60006.909 ± 542.036 ops/s

Multithreaded:

0 comments on commit e932e61

Please sign in to comment.