JVpp JMH benchmark 82/12682/5
authorMarek Gradzki <[email protected]>
Mon, 21 May 2018 12:43:45 +0000 (14:43 +0200)
committerMarek Gradzki <[email protected]>
Thu, 24 May 2018 07:27:20 +0000 (07:27 +0000)
commit9fb8895b38fffbaa556c7aecdad57fd1230152c5
tree4b9a04fdb092279924313c99b1f57b37dd9f5143
parent032160337ff39c42bcb536cc50cd83ebac0b6106
JVpp JMH benchmark

Creates ACL of size aclSize using acl_add_replace,
then assigns it to local0 using acl_interface_set_acl_list.

Then ACL is updated synchronously using acl_add_replace.
By default 20x2s warmup and 100x2s measurment iterations
are performed.

VPP is restarted after each iteration.

Each invocation of acl_add_replace uses ACL from precomputed
set of ACLs of size aclSetSize.
ACLs from the set are used in round-robin fashion.

Compile:

cd $HC2VPP_ROOT/it/jvpp-benchmark
mvn clean install

Run with:

sudo java -jar ./target/jvpp-benchmark-exec.jar

To specify aclSize (default=100), use:

sudo java -jar ./target/jvpp-benchmark-exec.jar -p aclSize=1000

To specify aclSetSize (default=100), use:

sudo java -jar ./target/jvpp-benchmark-exec.jar -p aclSetSize=1000

To see more options, use

java -jar ./target/jvpp-benchmark-exec.jar -h

Change-Id: I43691ba891940a1c341f8e9893c8598c811bc077
Signed-off-by: Marek Gradzki <[email protected]>
it/jvpp-benchmark/asciidoc/Readme.adoc [new file with mode: 0644]
it/jvpp-benchmark/pom.xml [new file with mode: 0644]
it/jvpp-benchmark/src/main/java/io/fd/hc2vpp/it/jvpp/benchmark/AclProvider.java [new file with mode: 0644]
it/jvpp-benchmark/src/main/java/io/fd/hc2vpp/it/jvpp/benchmark/AclProviderImpl.java [new file with mode: 0644]
it/jvpp-benchmark/src/main/java/io/fd/hc2vpp/it/jvpp/benchmark/AclUpdateBenchmark.java [new file with mode: 0644]
it/pom.xml