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
256333Sek110237# Single threaded appends/writes (I/Os of random size in the range
266333Sek110237# of [1B - 8KB]) to a 1GB file.
276333Sek110237# Stops after 128K ($count) writes have been done.
285184Sek110237
295184Sek110237set $dir=/tmp
306333Sek110237set $cached=false
316333Sek110237set $count=128k
325184Sek110237set $iosize=8k
336333Sek110237set $nthreads=1
346333Sek110237set $sync=false
355184Sek110237
366333Sek110237define file name=bigfile,path=$dir,size=0,prealloc,cached=$cached
375184Sek110237
385184Sek110237define process name=filewriter,instances=1
395184Sek110237{
405184Sek110237  thread name=filewriterthread,memsize=10m,instances=$nthreads
415184Sek110237  {
42*9326SAndrew.W.Wilson@sun.com    flowop openfile name=open-file,filename=bigfile,fd=1
43*9326SAndrew.W.Wilson@sun.com    flowop appendfilerand name=appendrand-file,dsync=$sync,iosize=$iosize,fd=1,iters=$count
445184Sek110237    flowop closefile name=close,fd=1
455184Sek110237    flowop finishoncount name=finish,value=1
465184Sek110237  }
475184Sek110237}
485184Sek110237
49*9326SAndrew.W.Wilson@sun.comecho  "FileMicro-SeqWriteRand Version 2.2 personality successfully loaded"
505184Sek110237usage "Usage: set \$dir=<dir>"
516333Sek110237usage "       set \$cached=<bool>    defaults to $cached"
526333Sek110237usage "       set \$count=<bool>     defaults to $count"
535184Sek110237usage "       set \$iosize=<size>    defaults to $iosize"
545184Sek110237usage "       set \$nthreads=<value> defaults to $nthreads"
556333Sek110237usage "       set \$sync=<bool>      defaults to $sync"
565184Sek110237usage " "
575184Sek110237usage "       run runtime (e.g. run 60)"
58