|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
_______________________________________________ Amdatu-developers mailing list [email protected] http://lists.amdatu.org/mailman/listinfo/amdatu-developers


The defaults of Hector and Cassandra are the same, except for these two configuration entries:
DEFAULT_MEMTABLE_THROUGHPUT_IN_MB
DEFAULT_MEMTABLE_OPERATIONS_IN_MILLIONS
In Cassandra, the defaults are:
DEFAULT_MEMTABLE_THROUGHPUT_IN_MB = (int) (Runtime.getRuntime().maxMemory() / (1048576 * 16));
DEFAULT_MEMTABLE_OPERATIONS_IN_MILLIONS = 0.3*DEFAULT_MEMTABLE_THROUGHPUT_IN_MB/64;
And in Hector:
DEFAULT_MEMTABLE_THROUGHPUT_IN_MB = 500;
DEFAULT_MEMTABLE_OPERATIONS_IN_MILLIONS = 0.3*DEFAULT_MEMTABLE_THROUGHPUT_IN_MB/64;
The 500 Mb of Hector would be the same as the Cassandra default if you run a VM with 8 Gb heap.