brianfrankcooper / YCSB

Yahoo! Cloud Serving Benchmark

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Core Property: request distribution

VinaySheth opened this issue · comments

Could you please explain the various types of distributions (uniform, zipfian, hotspot, sequential, exponential, latest) in detail?

Could you please explain the various types of distributions (uniform, zipfian, hotspot, sequential, exponential, latest) in detail?

@brianfrankcooper Is there any documentation available for this?

please do not ping individual maintainers.

If you want details on request distributions you'll have to look at source:

https://github.com/brianfrankcooper/YCSB/blob/0.17.0/core/src/main/java/site/ycsb/workloads/CoreWorkload.java#L459

the various generators that create the distributions are all in here, most have a class level doc with an explanation:

https://github.com/brianfrankcooper/YCSB/tree/0.17.0/core/src/main/java/site/ycsb/generator

please do not ping individual maintainers.

If you want details on request distributions you'll have to look at source:

https://github.com/brianfrankcooper/YCSB/blob/0.17.0/core/src/main/java/site/ycsb/workloads/CoreWorkload.java#L459

the various generators that create the distributions are all in here, most have a class level doc with an explanation:

https://github.com/brianfrankcooper/YCSB/tree/0.17.0/core/src/main/java/site/ycsb/generator

Thank You very much for your response!