yoonsue / study

1 stars 0 forks source link

YCSB workloadj #12

Open yoonsue opened 6 years ago

yoonsue commented 6 years ago
/* /wokloads/workloadj */
workload=com.yahoo.ycsb.workloads.CoreWorkload
recordcount=1000
operationcount=1000000

fieldcount=10
fieldlength=100

# The distribution used to choose the length of a field
#fieldlengthdistribution=constant
#fieldlengthdistribution=uniform
fieldlengthdistribution=zipfian

readproportion=0.5446
updateproportion=0.00
insertproportion=0.4554
readmodifywriteproportion=0
scanproportion=0

# Should records be inserted in order or pseudo-randomly
insertorder=hashed
#insertorder=ordered

# The distribution of requests across the keyspace
#requestdistribution=zipfian
#requestdistribution=uniform
requestdistribution=latest

image image

yoonsue commented 6 years ago
# Percentage of data items that constitute the hot set
hotspotdatafraction=0.2

# Percentage of operations that access the hot set
hotspotopnfraction=0.8

hotspotdatafraction은 hot set data의 비율 hotspotopnfraction은 hot spot으로 선정되는 operation의 비율

기존 YCSB내용 그대로 사용함.