Skip to content

Commit c1e62d4

Browse files
author
Azeem Jiva
committed
fix bullets
1 parent a353db0 commit c1e62d4

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,44 +53,44 @@ The JAR file can be found in the *target* folder.
5353

5454
The two primary arguments are allocation rate and heap occupancy:
5555

56-
* *-a < target allocation rate in Mb per second >, default: 1024 *
57-
* *-s < target heap occupancy in Mb >, default: 64 *
56+
* -a < target allocation rate in Mb per second >, default: 1024
57+
* -s < target heap occupancy in Mb >, default: 64
5858

5959
Currently, the benchmark program needs to be told the heap size in use.
60-
* *-h < heap size in Mb >
60+
* -h < heap size in Mb >
6161

6262
The benchmark cannot always achieve the specified values. In particular, the run duration must be long enough for Heapothesys to meet the heap occupancy target, especially for those low allocation rate cases. You can set the benchmark run duration using:
6363

64-
* *-d < run duration in seconds >, default: 60 *
64+
* -d < run duration in seconds >, default: 60
6565

6666
At end of the run, Heapothesys writes the actual achieved allocation rate and the configuration into a file.
6767

68-
* *-l < result file name >, default: output.csv *
68+
* -l < result file name >, default: output.csv
6969

7070
If you run with a 32G or larger heap or with a collector that does not support 32-bit object pointers, aka "compressedOops", you must set this paramteter to "false". Otherwise all object size calculations are off by nearly 50%. Currently, Heapothesys does not automatically detect this.
7171

72-
* *-c < compressedOops support >, default: true *
72+
* -c < compressedOops support >, default: true
7373

7474
In order to achieve high allocation rates, Heapothesys uses multiple worker threads. If the hardware has enough CPU cores, you can increase the number of worker threads to ensure achieving the target allocation rate.
7575

76-
* *-t < number of worker threads >, default: 4*
76+
* -t < number of worker threads >, default: 4
7777

7878
At run time, Heapothesys worker threads randomly create objects within a size range defined by the mimimum and maximum object size arguments:
7979

8080
The bigger the average object size, the easier to generate a high allocation rate. However, larger object sizes also mean a lower object count when the allocation rate is fixed. This makes the reference graph less complex, which in turn reduces the tracing and marking load on the Garbage Collector. Some experimentation may be neccessary to determine a better representative default setting here.
8181

82-
* *-n < minimum object size in byte >, inclusive, default: 128 bytes *
83-
* *-x < maximum object size in byte >, exclusive, default: 1Kb *
82+
* -n < minimum object size in byte >, inclusive, default: 128 bytes
83+
* -x < maximum object size in byte >, exclusive, default: 1Kb
8484

8585
The following options are all experimental features that we don't touch or set to minimal values when we want to observe collector behavior that is not influenced by any specific application behavior.
8686

8787
The next pair of arguments are used to control refreshing the long-lived object store, which is explained in the [Implementation](#object-store) section. The first defines the ratio at which objects get replaced in the object store.
8888

89-
* *-r < ratio of objects get replaced per minute >, default: 50 *
89+
* -r < ratio of objects get replaced per minute >, default: 50
9090

9191
The default value 50 means that 1/50 of the objects in the store are replaced with new objects every minute. For Generational Garbage Collectors, this ensures that major collections happen at some point. The second one is to exercise objects within the Object Store. It selects a portion of objects and reshuffles their values and references.
9292

93-
* *-f < ratio of objects get reshuffled >, default: 100 *
93+
* -f < ratio of objects get reshuffled >, default: 100
9494

9595
The default value 100 means that when the Object Store replaces the objects, it will also pick 1/100 of the objects in the store and reshuffle their references.
9696

0 commit comments

Comments
 (0)