Skip to content

Commit f1a8170

Browse files
p3rf Teamcopybara-github
authored andcommitted
Adding a mostly write(0.95) workload for performance benchmarking
PiperOrigin-RevId: 318336207
1 parent ca0f6a8 commit f1a8170

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

CHANGES.next.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
- Integrate edw_benchmark with new Client Interface and results aggregation
1616
framework.
1717
- Update default stress-ng version from 5.23 to 9.25 (default on Ubuntu 1804).
18+
- Added two new workloads(workloadw and workloadw_uniform) for testing mostly
19+
write use cases(read/write 5/95)
1820

1921
### Bug fixes and maintenance updates:
2022

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# PKB custom mostly write workload
2+
#
3+
# Read/update ratio: 5/95
4+
# Default data size: 1 KB records (10 fields, 100 bytes each, plus key),
5+
# total payloads are 1GB (1kb * 1000000) in size.
6+
# Request distribution: zipfian
7+
8+
workload=site.ycsb.workloads.CoreWorkload
9+
10+
readallfields=true
11+
operationcount=1000000
12+
recordcount = 1000000
13+
14+
readproportion=0.05
15+
updateproportion=0.95
16+
scanproportion=0
17+
insertproportion=0
18+
19+
requestdistribution=zipfian
20+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# PKB custom mostly write workload
2+
#
3+
# Read/update ratio: 5/95
4+
# Default data size: 1 KB records (10 fields, 100 bytes each, plus key),
5+
# total payloads are 1GB (1kb * 1000000) in size.
6+
# Request distribution: uniform
7+
8+
workload=site.ycsb.workloads.CoreWorkload
9+
10+
readallfields=true
11+
operationcount=1000000
12+
recordcount = 1000000
13+
14+
readproportion=0.05
15+
updateproportion=0.95
16+
scanproportion=0
17+
insertproportion=0
18+
19+
requestdistribution=uniform
20+

0 commit comments

Comments
 (0)