-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkload.xml.template
More file actions
87 lines (84 loc) · 2.35 KB
/
Copy pathworkload.xml.template
File metadata and controls
87 lines (84 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="UTF-8"?>
<workload>
<config>
<!-- type=sqlite3|mysql -->
<meta type="none">
<!-- SQLite3 (too slow !!!) -->
<pathname>./workload.db</pathname>
<!-- MySQL -->
<hostname>127.0.0.1</hostname>
<port>0</port>
<username>workload</username>
<password>workload</password>
<database>workload</database>
</meta>
<operation pause="no">
<left>7</left>
<right>1</right>
<interval>0</interval>
<!-- maximum 1000000, assign=random|ordered|even -->
<files remove="yes" assign="even">10</files>
<prefix>workload</prefix>
<suffix>.bin</suffix>
<filesize>4096</filesize>
<duration>0</duration>
<!-- (r)ead, (w)rite, rw -->
<access sync="yes" sendfile="yes" threads="0">rw</access>
</operation>
<storage>
<disk>
<!-- <name>volume1</name> -->
<path create="yes">./test/disk1</path>
</disk>
<disk>
<path create="yes">./test/disk2</path>
</disk>
<disk>
<path create="yes">./test/disk3</path>
</disk>
<!--
<disk fakeoff="17000">
<path create="yes">./test/disk4</path>
</disk>
<disk fakeoff="16000">
<path create="yes">./test/disk5</path>
</disk>
<disk fakeoff="15000">
<path create="yes">./test/disk6</path>
</disk>
<disk fakeoff="14000">
<path create="yes">./test/disk7</path>
</disk>
<disk fakeoff="13000">
<path create="yes">./test/disk8</path>
</disk>
<disk fakeoff="12000">
<path create="yes">./test/disk9</path>
</disk>
<disk fakeoff="11000">
<path create="yes">./test/disk10</path>
</disk>
<disk fakeoff="10000">
<path create="yes">./test/disk11</path>
</disk>
<disk fakeoff="9000">
<path create="yes">./test/disk12</path>
</disk>
<disk fakeoff="8000">
<path create="yes">./test/disk13</path>
</disk>
<disk fakeoff="7000">
<path create="yes">./test/disk14</path>
</disk>
<disk fakeoff="6000">
<path create="yes">./test/disk15</path>
</disk>
<disk fakeoff="5000">
<path create="yes">./test/disk16</path>
</disk>
-->
</storage>
</config>
</workload>
<!-- vim: set expandtab: -->
<!-- End of config -->