Skip to content

Commit

Permalink
benchmarks: test scalability with 16MB memory
Browse files Browse the repository at this point in the history
Signed-off-by: Reto Achermann <achreto@gmail.com>
  • Loading branch information
achreto committed Oct 2, 2023
1 parent e340654 commit 6b0918f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kernel/tests/s10_benchmarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ fn s10_memcached_benchmark_internal() {
} else {
(
256 * 1024, /* MB */
64 * 1024, /* MB */
16, // 64 * 1024, /* MB */
100_000_000,
600_000,
)
Expand Down
6 changes: 3 additions & 3 deletions kernel/tests/s11_rackscale_benchmarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ fn rackscale_memcached_benchmark(transport: RackscaleTransport) {
// and the s11_rackscale_memcached_benchmark_sharded configuration
MemcachedInternalConfig {
num_queries: 10_000_000,
mem_size: 64 * 1024,
mem_size: 16, // 64 * 1024,
}
};

Expand Down Expand Up @@ -846,7 +846,7 @@ fn s11_rackscale_memcached_benchmark_sharded_linux() {
MemcachedShardedConfig {
num_servers: 1,
num_queries: 10_000_000,
mem_size: 64 * 1024,
mem_size: 16, // 64 * 1024,
protocol: "tcp",
is_local_host: true,
num_threads: 4,
Expand Down Expand Up @@ -1077,7 +1077,7 @@ fn s11_rackscale_memcached_benchmark_sharded_nros() {
MemcachedShardedConfig {
num_servers: 1,
num_queries: 10_000_000,
mem_size: 64 * 1024,
mem_size: 16, // 64 * 1024,
protocol: "tcp",
is_local_host: true,
num_threads: 4,
Expand Down

0 comments on commit 6b0918f

Please sign in to comment.