From 431081f1e29c9aff865bacd58cd6470d1651f741 Mon Sep 17 00:00:00 2001 From: Bugra Eryilmaz <70061581+BugraEryilmaz@users.noreply.github.com> Date: Thu, 23 May 2024 00:16:09 +0200 Subject: [PATCH] Update docker-entrypoint.py --- benchmarks/data-serving/server/docker-entrypoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/data-serving/server/docker-entrypoint.py b/benchmarks/data-serving/server/docker-entrypoint.py index 36377278..f48c03f4 100755 --- a/benchmarks/data-serving/server/docker-entrypoint.py +++ b/benchmarks/data-serving/server/docker-entrypoint.py @@ -24,7 +24,7 @@ def get_ip(): parser.add_argument("--heap-size", type=int, help="The size of JVM heap in GB. Default is max(min(1/2 ram, 1GB), min(1/4 ram, 8GB)).") parser.add_argument("--seed-server-ip", help="The IP address of the seed server. This option is only for multiple-node deployment.") parser.add_argument("--affinity", help="The CPU ids (separated by comma) given to Cassandra to set JVM affinity. By default, Cassandra would use all CPU cores.") -parser.add_argument("--row-cache", help="The size of the row cache. Also specify the unit, example 16GiB or 256MiB. By default, the row cache is disabled.", default="0") +parser.add_argument("--row-cache", help="The size of the row cache. Also specify the unit, example 16GiB or 256MiB. By default, the row cache is disabled.", default="0MiB") args = parser.parse_args()