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*8404SAndrew.W.Wilson@sun.com# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 235184Sek110237# Use is subject to license terms. 245184Sek110237 255184Sek110237set $dir=/tmp 26*8404SAndrew.W.Wilson@sun.comset $nfiles=10000 275184Sek110237set $meandirwidth=1000000 285184Sek110237set $filesize=16k 295184Sek110237set $nthreads=100 305184Sek110237set $meaniosize=16k 315673Saw148015set $readiosize=1m 325184Sek110237 335184Sek110237define fileset name=bigfileset,path=$dir,size=$filesize,entries=$nfiles,dirwidth=$meandirwidth,prealloc=80 345184Sek110237 355184Sek110237define process name=proxycache,instances=1 365184Sek110237{ 375184Sek110237 thread name=proxycache,memsize=10m,instances=$nthreads 385184Sek110237 { 395184Sek110237 flowop deletefile name=deletefile1,filesetname=bigfileset 405184Sek110237 flowop createfile name=createfile1,filesetname=bigfileset,fd=1 415184Sek110237 flowop appendfilerand name=appendfilerand1,iosize=$meaniosize,fd=1 425184Sek110237 flowop closefile name=closefile1,fd=1 435184Sek110237 flowop openfile name=openfile2,filesetname=bigfileset,fd=1 445673Saw148015 flowop readwholefile name=readfile2,fd=1,iosize=$readiosize 455184Sek110237 flowop closefile name=closefile2,fd=1 465184Sek110237 flowop openfile name=openfile3,filesetname=bigfileset,fd=1 475673Saw148015 flowop readwholefile name=readfile3,fd=1,iosize=$readiosize 485184Sek110237 flowop closefile name=closefile3,fd=1 495184Sek110237 flowop openfile name=openfile4,filesetname=bigfileset,fd=1 505673Saw148015 flowop readwholefile name=readfile4,fd=1,iosize=$readiosize 515184Sek110237 flowop closefile name=closefile4,fd=1 525184Sek110237 flowop openfile name=openfile5,filesetname=bigfileset,fd=1 535673Saw148015 flowop readwholefile name=readfile5,fd=1,iosize=$readiosize 545184Sek110237 flowop closefile name=closefile5,fd=1 555184Sek110237 flowop openfile name=openfile6,filesetname=bigfileset,fd=1 565673Saw148015 flowop readwholefile name=readfile6,fd=1,iosize=$readiosize 575184Sek110237 flowop closefile name=closefile6,fd=1 585184Sek110237 flowop opslimit name=limit 595184Sek110237 } 605184Sek110237} 615184Sek110237 625673Saw148015echo "Proxy Cache Version 2.1 personality successfully loaded" 635184Sek110237usage "Usage: set \$dir=<dir>" 645184Sek110237usage " set \$filesize=<size> defaults to $filesize" 655184Sek110237usage " set \$nfiles=<value> defaults to $nfiles" 665184Sek110237usage " set \$nthreads=<value> defaults to $nthreads" 675184Sek110237usage " set \$meaniosize=<value> defaults to $meaniosize" 685673Saw148015usage " set \$readiosize=<size> defaults to $readiosize" 695184Sek110237usage " set \$meandirwidth=<size> defaults to $meandirwidth" 705184Sek110237usage "(sets mean dir width and dir depth is calculated as log (width, nfiles)" 715184Sek110237usage " dirdepth therefore defaults to dir depth of 1 as in postmark" 725184Sek110237usage " set $meandir lower to increase depth beyond 1 if desired)" 735184Sek110237usage " " 745184Sek110237usage " run runtime (e.g. run 60)" 75