YCSB低读取吞吐量cassandra

YCSB low read throughput cassandra

YCSB Endpoint benchmark 会让你相信 Cassandra 是 Nosql 数据库的金童玉女。然而,在我们自己的机器上重新创建结果(8 个超线程内核、60 GB 内存、2 500 GB SSD),我们对工作负载 b 的读取吞吐量很低(主要读取,也就是 95% 读取,5% 更新)。

cassandra.yaml 设置与端点设置完全相同,除了不同的 ip 地址和我们的磁盘配置(1 个 SSD 用于数据,1 个用于提交日志)。尽管他们的吞吐量约为每秒 38,000 次操作,但我们的吞吐量约为 16,000 次,而不管(相对)客户端节点的 threads/number。 IE。一个具有 256 个线程的工作节点将报告 ~16,000 ops/sec,而 4 个节点每个将报告 ~4,000 ops/sec

我已将 SSD 数据驱动器的预读值设置为 8KB。我将把自定义工作负载文件放在下面。

在使用iostat分析磁盘io和cpu使用情况时,读取吞吐量似乎一直在~200,000 KB/s,这似乎表明ycsb集群吞吐量应该更高(记录是100 字节)。 cpu 的 ~25-30% 似乎处于 %iowait 之下,用户正在使用 10-25%。

top 和 nload 统计数据没有表面上的瓶颈(<50% 的内存使用率,10-50 Mbits/sec 对于 10 Gb/s link)。

# The name of the workload class to use
workload=com.yahoo.ycsb.workloads.CoreWorkload

# There is no default setting for recordcount but it is
# required to be set.
# The number of records in the table to be inserted in
# the load phase or the number of records already in the
# table before the run phase.
recordcount=2000000000

# There is no default setting for operationcount but it is
# required to be set.
# The number of operations to use during the run phase.
operationcount=9000000

# The offset of the first insertion
insertstart=0
insertcount=500000000

core_workload_insertion_retry_limit = 10
core_workload_insertion_retry_interval = 1

# The number of fields in a record
fieldcount=10

# The size of each field (in bytes)
fieldlength=10

# Should read all fields
readallfields=true

# Should write all fields on update
writeallfields=false

fieldlengthdistribution=constant

readproportion=0.95

updateproportion=0.05

insertproportion=0

readmodifywriteproportion=0

scanproportion=0

maxscanlength=1000

scanlengthdistribution=uniform

insertorder=hashed

requestdistribution=zipfian
hotspotdatafraction=0.2

hotspotopnfraction=0.8
table=usertable

measurementtype=histogram

histogram.buckets=1000
timeseries.granularity=1000

密钥在 casssandra.yaml 文件中递增 native_transport_max_threads。

随着评论中设置的增加(增加 ycsb 客户端中的连接以及 cassandra 中的并发 read/writes),Cassandra 跃升至约 80,000 ops/sec。