increase read:write cache ratio
git-svn-id: svn+ssh://svn.corp.yahoo.com/yahoo/yrl/labs/pnuts/code/logstore@3802 8dad8b1f-cf64-0410-95b6-bcf113ffbcfe
This commit is contained in:
parent
49f4c813be
commit
4757b0afd6
1 changed files with 3 additions and 3 deletions
|
@ -61,9 +61,9 @@ LSMServerHandler(int argc, char **argv)
|
|||
c0_size = 1024LL * 1024LL * 1024LL * 3LL;
|
||||
printf("note: running w/ 5GB of memory for benchmarking on small box\n");
|
||||
} else if(!strcmp(argv[i], "--benchmark-big")) {
|
||||
stasis_buffer_manager_size = (1024LL * 1024LL * 1024LL * 16LL) / PAGE_SIZE; // 26GB total
|
||||
c0_size = 1024LL * 1024LL * 1024LL * 10LL;
|
||||
printf("note: running w/ 28GB of memory for benchmarking on big box\n");
|
||||
stasis_buffer_manager_size = (1024LL * 1024LL * 1024LL * 10LL) / PAGE_SIZE; // 26GB total
|
||||
c0_size = 1024LL * 1024LL * 1024LL * 16LL;
|
||||
printf("note: running w/ 26GB of memory for benchmarking on big box\n");
|
||||
} else if(!strcmp(argv[i], "--log-mode")) {
|
||||
i++;
|
||||
log_mode = atoi(argv[i]);
|
||||
|
|
Loading…
Reference in a new issue