pingcap / go-ycsb

A Go port of Yahoo! Cloud Serving Benchmark (YCSB)
Apache License 2.0
602 stars 244 forks source link

Fix opcount calculation #275

Closed ls4154 closed 1 year ago

ls4154 commented 1 year ago

If the OpCount is not a multiple of threadCount, the sum will not match the totalOpCount. For example, if I load 100 records with 3 threads, only 99 records will be loaded as each thread inserts 33 records.