xref: /onnv-gate/usr/src/cmd/filebench/workloads/createfiles.f (revision 9326:475779da8c08)
15184Sek110237#
25184Sek110237# CDDL HEADER START
35184Sek110237#
45184Sek110237# The contents of this file are subject to the terms of the
55184Sek110237# Common Development and Distribution License (the "License").
65184Sek110237# You may not use this file except in compliance with the License.
75184Sek110237#
85184Sek110237# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
95184Sek110237# or http://www.opensolaris.org/os/licensing.
105184Sek110237# See the License for the specific language governing permissions
115184Sek110237# and limitations under the License.
125184Sek110237#
135184Sek110237# When distributing Covered Code, include this CDDL HEADER in each
145184Sek110237# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
155184Sek110237# If applicable, add the following below this CDDL HEADER, with the
165184Sek110237# fields enclosed by brackets "[]" replaced with your own identifying
175184Sek110237# information: Portions Copyright [yyyy] [name of copyright owner]
185184Sek110237#
195184Sek110237# CDDL HEADER END
205184Sek110237#
215184Sek110237#
22*9326SAndrew.W.Wilson@sun.com# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
235184Sek110237# Use is subject to license terms.
245184Sek110237
255184Sek110237set $dir=/tmp
265184Sek110237set $nfiles=50000
275184Sek110237set $meandirwidth=100
285184Sek110237set $filesize=16k
295673Saw148015set $iosize=1m
305184Sek110237set $nthreads=16
315184Sek110237
326701Saw148015set mode quit firstdone
336084Saw148015
345184Sek110237define fileset name=bigfileset,path=$dir,size=$filesize,entries=$nfiles,dirwidth=$meandirwidth
355184Sek110237
365184Sek110237define process name=filecreate,instances=1
375184Sek110237{
385184Sek110237  thread name=filecreatethread,memsize=10m,instances=$nthreads
395184Sek110237  {
405184Sek110237    flowop createfile name=createfile1,filesetname=bigfileset,fd=1
41*9326SAndrew.W.Wilson@sun.com    flowop writewholefile name=writefile1,fd=1,iosize=$iosize
425184Sek110237    flowop closefile name=closefile1,fd=1
435184Sek110237    flowop opslimit name=limit
445184Sek110237  }
455184Sek110237}
465184Sek110237
47*9326SAndrew.W.Wilson@sun.comecho  "Createfiles Version 2.5 personality successfully loaded"
486701Saw148015usage "Usage: set \$dir=<dir>          defaults to $dir"
495184Sek110237usage "       set \$filesize=<size>    defaults to $filesize"
505673Saw148015usage "       set \$iosize=<size>      defaults to $iosize"
515184Sek110237usage "       set \$nfiles=<value>     defaults to $nfiles"
525184Sek110237usage "       set \$nthreads=<value>   defaults to $nthreads"
535184Sek110237usage "       set \$meandirwidth=<size> defaults to $meandirwidth"
545184Sek110237usage "(sets mean dir width and dir depth is calculated as log (width, nfiles)"
555184Sek110237usage " "
566305Saw148015usage "       run"
57