1 #
2 # CDDL HEADER START
3 #
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
7 #
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21
22 #
23 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 #
25
26 DEFAULTS {
27 runtime = 120;
28 dir = /var/tmp/smbclnt/mnt;
29 stats = /tmp;
30 filesystem = tmpfs;
31 description = "filemacro tmpfs";
32 }
33
34 CONFIG fileserver {
35 function = generic;
36 personality = fileserver;
37 nfiles = 20000;
38 meandirwidth = 20;
39 filesize = 2k;
40 nthreads = 100;
41 meaniosize = 16k;
42 }
43
44 CONFIG varmail {
45 personality = varmail;
46 function = generic;
47 nfiles = 20000;
48 meandirwidth = 1000000;
49 filesize = 1k;
50 nthreads = 16;
51 meaniosize = 16k;
52 }
53
54 CONFIG webproxy {
55 personality = webproxy;
56 function = generic;
57 nfiles = 20000;
58 meandirwidth = 1000000;
59 filesize = 1k;
60 nthreads = 100;
61 meaniosize = 16k;
62 }
63
64 CONFIG webserver {
65 personality = webserver;
66 function = generic;
67 nfiles = 20000;
68 meandirwidth = 20;
69 filesize = 1k;
70 nthreads = 100;
71 }
72
73 CONFIG large_db_oltp_2k_cached {
74 personality = oltp;
75 function = generic;
76 cached = 1;
77 directio = 0;
78 iosize = 2k;
79 nshadows = 200;
80 ndbwriters = 10;
81 usermode = 20000;
82 filesize = 1g;
83 memperthread = 1m;
84 workingset = 0;
85 }
86
87 CONFIG large_db_oltp_2k_uncached {
88 personality = oltp;
89 function = generic;
90 cached = 0;
91 directio = 1;
92 iosize = 2k;
93 nshadows = 200;
94 ndbwriters = 10;
95 usermode = 20000;
96 filesize = 1g;
97 memperthread = 1m;
98 workingset = 0;
99 }
100
101 CONFIG large_db_oltp_8k_cached {
102 personality = oltp;
103 function = generic;
104 cached = 1;
105 directio = 0;
106 iosize = 8k;
107 nshadows = 200;
108 ndbwriters = 10;
109 usermode = 20000;
110 filesize = 1g;
111 memperthread = 1m;
112 workingset = 0;
113 }
114
115 CONFIG large_db_oltp_8k_uncached {
116 personality = oltp;
117 function = generic;
118 cached = 0;
119 directio = 1;
120 iosize = 8k;
121 nshadows = 200;
122 ndbwriters = 10;
123 usermode = 20000;
124 filesize = 1g;
125 memperthread = 1m;
126 workingset = 0;
127 }
128