Cassandra 用の新しいクックブックをセットアップしようとしていますcassandra.yaml
が、ファイルには最適な設定に関する次のコメントがあります。
# For workloads with more data than can fit in memory, Cassandra's
# bottleneck will be reads that need to fetch data from
# disk. "concurrent_reads" should be set to (16 * number_of_drives) in
# order to allow the operations to enqueue low enough in the stack
# that the OS and drives can reorder them.
#
# On the other hand, since writes are almost never IO bound, the ideal
# number of "concurrent_writes" is dependent on the number of cores in
# your system; (8 * number_of_cores) is a good rule of thumb.
ただし、デプロイされたサーバーのハードウェア設定が異なる可能性があるため、属性で事前定義されたnumbers of cores
またはを判別する方法はありません。numbers of disk drives
デプロイされたハードウェア設定で属性を動的に上書きすることは可能ですか? Opscode docを読みましたが、出力をキャプチャする方法がないと思います
cat /proc/cpuinfo | grep processor | wc -l
私は次のようなことを考えていました:
クックブック-cassandra/recipes/default.rb
cores = command "cat /proc/cpuinfo | grep processor | wc -l"
node.default["cassandra"]["concurrent_reads"] = cores*8
node.default["cassandra"]["concurrent_writes"] = cores*8
クックブック-cassandra/attributes/default.rb
default[:cassandra] = {
...
# determined by 8 * number of cores
:concurrent_reads => 16,
:concurrent_writes => 16,
..
}