Add access pattern simulator for testing entity passivation strategies (#30884)

* with licence comment for ycsb
This commit is contained in:
Peter Vlugter 2021-11-17 01:00:05 +13:00 committed by GitHub
parent 058bf1029a
commit a601f36b20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 864 additions and 2 deletions

View file

@ -181,6 +181,9 @@ object Dependencies {
val reactiveStreamsTck = "org.reactivestreams" % "reactive-streams-tck" % reactiveStreamsVersion % "test" // CC0
val protobufRuntime = "com.google.protobuf" % "protobuf-java" % protobufJavaVersion % "test"
// YCSB (Yahoo Cloud Serving Benchmark https://ycsb.site)
val ycsb = "site.ycsb" % "core" % "0.17.0" % "test" // ApacheV2
}
object Provided {
@ -262,7 +265,8 @@ object Dependencies {
Provided.levelDBNative,
Test.junit,
Test.scalatest.value,
Test.commonsIo)
Test.commonsIo,
Test.ycsb)
val clusterMetrics = l ++= Seq(
Provided.sigarLoader,