Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to data serving #447

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added doc
  • Loading branch information
BugraEryilmaz committed May 20, 2024
commit 2cd6acf3b884f258971a4a5423503617d16ae278
2 changes: 2 additions & 0 deletions docs/benchmarks/data-serving.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ The following options can modify the settings of the server:
- `--writer-count=<int>`: The number of writer threads Cassandra uses. Cassandra recommends 8 threads per CPU core. The default value is 32.
- `--heap-size=<int>`: JVM heap size. Its unit is GB, and by default, JVM uses `max(min(1/2 ram, 1GB), min(1/4 ram, 8GB))`. It is good to increase the value when the server has enough DRAM for better performance or lower the value for explicit resource restriction.
- `--affinity=<cpu_id, ...>`: The CPUs Cassandra works on. This setting let Cassandra be aware of its CPU affinity explicitly. It should be used together with the container's resource management option (e.g., `--cpuset-cpus`).
- `--row-cache=<size>`: The size of the row cache, example 16GiB. By default, the row cache is disabled.

BugraEryilmaz marked this conversation as resolved.
Show resolved Hide resolved

### Multiple Server Containers

Expand Down
Loading