From: Michael Vrable Date: Tue, 30 Mar 2010 23:09:24 +0000 (-0700) Subject: Copy in a few more benchmark results. X-Git-Url: http://git.vrable.net/?p=bluesky.git;a=commitdiff_plain;h=e1d71c7a3a75c90cc2edd8c3ee83e1a5c9dfaf0f Copy in a few more benchmark results. --- diff --git a/results/README b/results/README new file mode 100644 index 0000000..2ef73b0 --- /dev/null +++ b/results/README @@ -0,0 +1,14 @@ +All benchmark runs are using a fixed-size dataset over different op/s +values, to avoid filling the disk at high throughput. + + +knfsd-sync: +Linux in-kernel NFS server, exported with the 'sync' option. + +knfsd-async: +Same as above, but using the 'async' option so that writes need not be +on disk before replying to a client. + +bluesky: +Initial testing with the Bluesky proxy, storing data to kvstore on a +local network (not to S3). diff --git a/results/bluesky/sfs_bluesky b/results/bluesky/sfs_bluesky new file mode 100644 index 0000000..1217834 --- /dev/null +++ b/results/bluesky/sfs_bluesky @@ -0,0 +1,179 @@ +############################################################################## +# +# @(#)sfs_nfs_rc $Revision: 1.13 $ +# +# Specify SFS parameters for sfs runs in this file. +# +# The following parameters are configurable within the SFS run and +# reporting rules. +# +# See below for details. +# +# Example shows an NFS V3 run of 100 to 1000 ops/sec +# +LOAD="1120" +INCR_LOAD=40 +NUM_RUNS=5 +PROCS=4 +CLIENTS="c09-44.sysnet.ucsd.edu" +MNT_POINTS="c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/" +BIOD_MAX_WRITES=2 +BIOD_MAX_READS=2 +IPV6_ENABLE="off" +FS_PROTOCOL="nfs" +SFS_DIR="bin" +SUFFIX="" +WORK_DIR="result" +PRIME_MON_SCRIPT="" +PRIME_MON_ARGS="" +INIT_TIMEOUT=8000 +# Leaving BLOCK_SIZE un-set is the default. This will permit auto-negotiation. +# If you over-ride this and set it to a particular value, you must +# add the value that you used to the Other Notes section of the +# submission/disclosure. +BLOCK_SIZE= +# SFS_NFS_USER_ID only needed if running NFS load on Windows client +# It's value should match the UID, of the user's account, on the NFS server. +SFS_NFS_USER_ID=500 +# SFS_NFS_GROUP_ID only needed if running NFS load on Windows client +# It's value should match the GID, of the user's account, on the NFS server. +SFS_NFS_GROUP_ID=500 +# +# The following parameters are strictly defined within the SFS +# run and reporting rules and may not be changed. +# +RUNTIME=300 +WARMUP_TIME=300 +MIXFILE="" +ACCESS_PCNT=30 +APPEND_PCNT=70 +BLOCK_FILE="" +DIR_COUNT=30 +FILE_COUNT=20000 +SYMLINK_COUNT=20 +TCP="on" +# +# The following parameters are useful for debugging or general system +# tuning. They may not be used during during a reportable SFS run. +# +DEBUG="" +DUMP= +POPULATE= +LAT_GRAPH= +PRIME_SLEEP=0 +PRIME_TIMEOUT=0 +# +# The default SFS options are implied if no values are assigned to +# the variables. The variables and their meaning are as follows. +# +# The following parameters are configurable within the SFS run and +# reporting rules. +# +# LOAD - array of numbers specifying the NFS loads +# (NFS calls per second) to be generated by all clients +# combined. The number of consecutive runs equals the size +# of the array and the peak load equals the largest value +# in the array. (DEFAULT = 60) +# PROCS - number of SFS sub-processes to generate NFS +# calls (DEFAULT PROCS = 4). +# MNT_POINTS - string containing the mount points of NFS-mounted +# filesystems on the client which will be used in the test or +# it can be set to the name of a file containing a list of +# mount points. The file should be located in WORK_DIR. The +# file should have the following format: +# client1 svr:/mnt1 ... svr:/mntM +# ... +# clientN svr:/mntL ... svr:/mntL+M +# +# BIOD_MAX_WRITES - maximum number of outstanding async (biod) writes +# (DEFAULT BIOD_MAX_WRITES = 2). +# BIOD_MAX_READS - maximum number of outstanding async (biod) reads +# (DEFAULT BIOD_MAX_READS = 2). +# IPV6_ENABLE - If set ("on") then use IP V6 otherwise use IP V4. +# (DEFAULT IPV6_ENABLE = "off"). +# FS_PROTOCOL - File server protocol used "cifs" or "nfs" +# (DEFAULT FS_PROTOCOL = "nfs") +# NUM_RUNS - number indicating the number of multi-client runs. NUM_RUNS +# should only be used if the size of the LOAD array <= 1; +# INCR_LOAD - number indicating the load increment factor in NFS call/sec. +# The first run generates LOAD calls/sec, +# subsequent runs are made with LOAD + (N * INCR_LOAD) +# calls/sec; where initial N = 0. INCR_LOAD should +# only be used if the size of the LOAD array <= 1. +# CLIENTS - string containing client's host names; include the Prime- +# Client's host name if you will be using the Prime-Client to +# generate NFS loads. +# SFS_NFS_USER_ID - ID number to use as the User ID (UID) on the NFS server. +# SFS_NFS_GROUP_ID - ID number to use as the Group ID (GID) on the NFS server. +# for NFS requests to the server. +# SFS_DIR - string containing the directory path where the SFS +# executables are stored; should be the same for all systems +# This location is used first, if the binaries are not found +# there then it looks in the "binaries" directory. +# (DEFAULT SFS_DIR = "bin") +# SUFFIX - Suffix for the log files. +# WORK_DIR - string containing directory path where the SFS output +# files are stored, this should be the same for all systems. +# PRIME_MON_SCRIPT - string containing the name of a script used to +# control the start and stop of any external SFS processes +# like external performance monitors. The sample script +# 'sfs_ext_mon' shows the expected semantics of the program. +# This variable must refer to an executable on a Windows +# client. +# PRIME_MON_ARGS - string containing optional arguments that are passed +# to the PRIME_MON_SCRIPT. +# +# The following parameters are strictly defined within the SFS +# run and reporting rules and may not be changed. +# +# RUNTIME - number of seconds to generate load +# (DEFAULT RUNTIME = 300). +# TCP - If set ("on") then use NFS/TCP behaviour rather than UDP. +# WARMUP_TIME - number of seconds to warmup +# (DEFAULT WARMUP_TIME = 300). +# MIXFILE - string containing the NFS call distribution filename; +# a copy of $MIXFILE must be placed in the $WORK_DIR +# directory on the Prime_Client. The Prime-Client will +# propagate a copy to all the other clients in the test. +# ACCESS_PCNT - percent of total file set available for use by i/o +# operations that will be accessed. +# (DEFAULT ACCESS_PCNT = 20). +# APPEND_PCNT - percent of writes that append rather than overwrite +# (DEFAULT APPEND_PCNT = 70). +# BLOCK_SIZE - number of KB in a block, up to 4 Meg. +# (Value is automatically negoitated with the server) +# BLOCK_FILE - string containing the block transfer sizes filename. +# A copy of $BLOCK_FILE must be placed in the $WORK_DIR +# directory on the Prime_Client. The Prime-Client will +# propagate a copy to all the other clients in the test. +# DIR_COUNT - number of files per directory to use for directory +# operations (DEFAULT DIR_COUNT = 30). +# FILE_COUNT - number of files to use for read and write +# operations. By default, number of files is +# calculated from the specified LOAD and ACCESS_PCNT. +# SYMLINK_COUNT - number of symbolic links to use for symlink +# operations (DEFAULT SYMLINK_COUNT = 20). +# +# The following parameters are useful for debugging or general system +# tuning. They may not be used during during a reportable SFS run. +# +# DUMP - If set to a non-zero value, dump raw data points at end of +# run. (DEFAULT DUMP = 0 ). +# LAT_GRAPH - Debug option that enable per op latency graph data. +# May invalidate the results due to overhead of logging. +# If set ("on") will enable logging. Default is "" +# POPULATE - If set ("on") then only populate the file set but do not +# run the test. +# PRIME_SLEEP - number of seconds Prime-Client should sleep after starting +# and stopping the SFS external monitoring facility and +# before sending synchronization message to clients. This is a +# provision to allow sufficient time for starting and stopping +# other performance monitoring utilities that could be used +# during SFS execution. +# PRIME_TIMEOUT - number of seconds Prime-Client should wait for a +# response from all the clients. Zero indicates the +# default should be used. +# INIT_TIMEOUT - number of seconds Prime-Client should wait for a +# response from all the clients during the INIT phase. +# May be changed if needed and will not invalidate the +# run. diff --git a/results/bluesky/sfsc001.bluesky b/results/bluesky/sfsc001.bluesky new file mode 100644 index 0000000..e724a58 --- /dev/null +++ b/results/bluesky/sfsc001.bluesky @@ -0,0 +1,802 @@ +Started on client (c09-44): ../binaries/linux-x86/sfsnfs3 -N 1 -l 1120 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ +NFS V3 Protocol Version + +************************************************************************ +../binaries/linux-x86/sfsnfs3: NFS User ID only supported on Windows client +../binaries/linux-x86/sfsnfs3: NFS Group ID only supported on Windows client + +c09-44: Good clock resolution [ 1.000000 ] Micro seconds. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 + +SFS NFS V3 Benchmark Client Logfile, Tue Mar 30 08:31:16 2010 + Client hostname = c09-44 + Prime Client hostname = c09-44.sysnet.ucsd.edu + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +NFS V3 Protocol +Tue Mar 30 08:31:16 2010 Mounting 4 remote test directories. +Child[000]: NFS negotiated block size 32768 +Child[001]: NFS negotiated block size 32768 +Child[003]: NFS negotiated block size 32768 +Child[002]: NFS negotiated block size 32768 +Tue Mar 30 08:31:32 2010 Completed. +Tue Mar 30 08:31:32 2010 Sending DONE-MOUNT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:31:32 2010 Completed. +Tue Mar 30 08:31:32 2010 Waiting on DO-INIT message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:31:32 2010 Received. + +Tue Mar 30 08:31:32 2010 Initializing test directories. +Tue Mar 30 08:31:32 2010 Child 3 will create 167 directories. +Tue Mar 30 08:31:32 2010 Child 1 will create 167 directories. +Tue Mar 30 08:31:32 2010 Child 0 will create 167 directories. +Tue Mar 30 08:31:32 2010 Child 2 will create 167 directories. +Tue Mar 30 08:31:32 2010 Child 0 finished creating 167 directories. +Tue Mar 30 08:31:32 2010 Child 0 will create 5102 files. +Tue Mar 30 08:31:32 2010 Child 1 finished creating 167 directories. +Tue Mar 30 08:31:32 2010 Child 1 will create 5102 files. +Tue Mar 30 08:31:32 2010 Child 2 finished creating 167 directories. +Tue Mar 30 08:31:32 2010 Child 2 will create 5102 files. +Tue Mar 30 08:31:32 2010 Child 3 finished creating 167 directories. +Tue Mar 30 08:31:32 2010 Child 3 will create 5102 files. +Tue Mar 30 08:35:27 2010 Child 3 verified 5102 files, created 5052 +Tue Mar 30 08:35:27 2010 Child 3 will create 6 symlinks. +Tue Mar 30 08:35:27 2010 Child 3 finished creating 6 symlinks. +Tue Mar 30 08:35:35 2010 Child 1 verified 5102 files, created 5052 +Tue Mar 30 08:35:35 2010 Child 1 will create 6 symlinks. +Tue Mar 30 08:35:35 2010 Child 2 verified 5102 files, created 5052 +Tue Mar 30 08:35:35 2010 Child 2 will create 6 symlinks. +Tue Mar 30 08:35:35 2010 Child 1 finished creating 6 symlinks. +Tue Mar 30 08:35:35 2010 Child 2 finished creating 6 symlinks. +Tue Mar 30 08:35:35 2010 Child 0 verified 5102 files, created 5052 +Tue Mar 30 08:35:35 2010 Child 0 will create 6 symlinks. +Tue Mar 30 08:35:35 2010 Child 0 finished creating 6 symlinks. +Tue Mar 30 08:35:36 2010 Completed. +Tue Mar 30 08:35:36 2010 Sending DONE-INIT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:35:36 2010 Completed. +Tue Mar 30 08:35:36 2010 Waiting on DO-WARMUP message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:35:37 2010 Received. +Tue Mar 30 08:35:37 2010 Performing 300 seconds pretest warmup. +Child 2 - 50 aborted ops +Child 0 - 50 aborted ops +Child 0 - 100 aborted ops +Child 0 - 150 aborted ops +Child 0 - 200 aborted ops +Child 0 - 250 aborted ops +Child 2 - 100 aborted ops +Child 0 - 300 aborted ops +Child 0 - 350 aborted ops +Child 0 - 400 aborted ops +Tue Mar 30 08:40:37 2010 Completed. +Tue Mar 30 08:40:37 2010 Sending READY message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:40:37 2010 Completed. +Tue Mar 30 08:40:37 2010 Waiting on START message from Prime Client(c09-44.sysnet.ucsd.edu). +Child 3 - 50 aborted ops +Tue Mar 30 08:40:38 2010 Received. +Tue Mar 30 08:40:38 2010 Starting 300 seconds test run. +Child 2 - 150 aborted ops +Child 3 - 100 aborted ops +Child 1 - 50 aborted ops +Child 0 - 450 aborted ops +Child 3 - 150 aborted ops +Child 1 - 100 aborted ops +Child 2 - 200 aborted ops +Child 0 - 500 aborted ops +Child 2 - 250 aborted ops +Child 3 - 200 aborted ops +Child 0 - 550 aborted ops +Child 1 - 150 aborted ops +Child 2 - 300 aborted ops +Child 3 - 250 aborted ops +Child 0 - 600 aborted ops +Child 2 - 350 aborted ops +Child 1 - 200 aborted ops +Child 3 - 300 aborted ops +Child 0 - 650 aborted ops +Child 1 - 250 aborted ops +Child 2 - 400 aborted ops +Child 0 - 700 aborted ops +Child 3 - 350 aborted ops +Child 1 - 300 aborted ops +Child 2 - 450 aborted ops +Child 1 - 350 aborted ops +Child 3 - 400 aborted ops +Child 0 - 750 aborted ops +Child 1 - 400 aborted ops +Child 2 - 500 aborted ops +Child 0 - 800 aborted ops +Child 2 - 550 aborted ops +Child 1 - 450 aborted ops +SFS Single Client (c09-44) Results, Tue Mar 30 08:45:48 2010 +-------------------------------------------------------------------------------------- +NFS V3 Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op Logical Logical Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +-------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 89922 89922 0 0.21 1.43 0.01 5.2% +setattr 4.0% 4.1% 13927 13927 0 0.21 0.17 0.01 0.8% +lookup 24.0% 24.1% 82499 82499 0 0.22 1.50 0.01 5.0% +readlink 1.0% 1.0% 3328 3328 0 0.21 0.20 0.02 0.2% +read 18.0% 18.1% 62082 76576 0 1.92 10.71 0.03 32.6% +write 10.0% 10.0% 34266 41400 0 4.98 16.14 0.04 46.7% +create 1.0% 1.0% 3397 3397 0 5.32 28.43 0.18 5.0% +remove 1.0% 0.5% 1726 1726 0 0.35 0.22 0.02 0.2% +readdir 1.0% 1.0% 3411 3411 0 0.41 0.20 0.02 0.4% +fsstat 1.0% 1.0% 3477 3477 0 0.20 0.12 0.01 0.2% +access 11.0% 11.1% 37916 37916 0 0.23 2.49 0.02 2.4% +readdirplus 2.0% 2.0% 6943 6943 0 0.74 0.99 0.02 1.4% +-------------------------------------------------------------------------------------- + + -------------------------------------------------- + | SPEC SFS 2008 SINGLE CLIENT RESULTS SUMMARY | + --------------------------+----------------------- +SFS NFS V3 THROUGHPUT: 1142.98 Ops/Sec AVG. RESPONSE TIME: 1.06 Msec/Op +TCP PROTOCOL +FAST CALLS: 0 +NFS V3 MIXFILE: [ SFS Default ] +CLIENT REQUESTED LOAD: 1120 Ops/Sec +TOTAL LOGICAL NFS V3 OPERATIONS: 342894 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS V3 OPERATIONS: 364522 +PHYSICAL NFS V3 THROUGHPUT: 1215.07 Ops/Sec +FILE SET SIZE CREATED: 10622124.0 KB +FILE SET SIZE ACCESSED: 3188124.0 - 3512990.0 KB (100.00% to 110.19% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 08:45:48 2010 Completed. + +Client Test Parameters: + Number of processes = 4 + Requested Load (NFS V3 operations/second) = 1120 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + + +SPEC SFS 2008 Benchmark, Creation - 1 February 2008 +Tue Mar 30 08:45:48 2010 Sending DONE-TEST message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:45:48 2010 Completed. +Tue Mar 30 08:45:48 2010 Waiting on MOVE-DATA message from Prime Client(c09-44.sysnet.ucsd.edu). + +************************************************************************ +Tue Mar 30 08:45:49 2010 Received. +Tue Mar 30 08:45:49 2010 Sending results to Prime Client(c09-44.sysnet.ucsd.edu) +Tue Mar 30 08:45:49 2010 Completed. +Started on client (c09-44): ../binaries/linux-x86/sfsnfs3 -N 1 -l 1160 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ +NFS V3 Protocol Version + +************************************************************************ +../binaries/linux-x86/sfsnfs3: NFS User ID only supported on Windows client +../binaries/linux-x86/sfsnfs3: NFS Group ID only supported on Windows client + +c09-44: Good clock resolution [ 1.000000 ] Micro seconds. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 + +SFS NFS V3 Benchmark Client Logfile, Tue Mar 30 08:45:51 2010 + Client hostname = c09-44 + Prime Client hostname = c09-44.sysnet.ucsd.edu + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +NFS V3 Protocol +Tue Mar 30 08:45:51 2010 Mounting 4 remote test directories. +Child[000]: NFS negotiated block size 32768 +Child[001]: NFS negotiated block size 32768 +Child[002]: NFS negotiated block size 32768 +Child[003]: NFS negotiated block size 32768 +Tue Mar 30 08:46:02 2010 Completed. +Tue Mar 30 08:46:02 2010 Sending DONE-MOUNT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:46:02 2010 Completed. +Tue Mar 30 08:46:02 2010 Waiting on DO-INIT message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:46:07 2010 Received. + +Tue Mar 30 08:46:07 2010 Initializing test directories. +Tue Mar 30 08:46:07 2010 Child 3 will create 167 directories. +Tue Mar 30 08:46:07 2010 Child 2 will create 167 directories. +Tue Mar 30 08:46:07 2010 Child 1 will create 167 directories. +Tue Mar 30 08:46:07 2010 Child 0 will create 167 directories. +Tue Mar 30 08:46:10 2010 Child 2 finished creating 167 directories. +Tue Mar 30 08:46:10 2010 Child 2 will create 5102 files. +Tue Mar 30 08:46:10 2010 Child 0 finished creating 167 directories. +Tue Mar 30 08:46:10 2010 Child 0 will create 5102 files. +Tue Mar 30 08:46:12 2010 Child 2 verified 5102 files, created 51 +Tue Mar 30 08:46:12 2010 Child 2 will create 6 symlinks. +Tue Mar 30 08:46:12 2010 Child 2 finished creating 6 symlinks. +Tue Mar 30 08:46:12 2010 Child 3 finished creating 167 directories. +Tue Mar 30 08:46:12 2010 Child 3 will create 5102 files. +Tue Mar 30 08:46:13 2010 Child 0 verified 5102 files, created 51 +Tue Mar 30 08:46:13 2010 Child 0 will create 6 symlinks. +Tue Mar 30 08:46:13 2010 Child 0 finished creating 6 symlinks. +Tue Mar 30 08:46:15 2010 Child 3 verified 5102 files, created 48 +Tue Mar 30 08:46:15 2010 Child 3 will create 6 symlinks. +Tue Mar 30 08:46:15 2010 Child 3 finished creating 6 symlinks. +Tue Mar 30 08:46:23 2010 Child 1 finished creating 167 directories. +Tue Mar 30 08:46:23 2010 Child 1 will create 5102 files. +Tue Mar 30 08:46:26 2010 Child 1 verified 5102 files, created 50 +Tue Mar 30 08:46:26 2010 Child 1 will create 6 symlinks. +Tue Mar 30 08:46:26 2010 Child 1 finished creating 6 symlinks. +Tue Mar 30 08:46:27 2010 Completed. +Tue Mar 30 08:46:27 2010 Sending DONE-INIT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:46:27 2010 Completed. +Tue Mar 30 08:46:27 2010 Waiting on DO-WARMUP message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:46:28 2010 Received. +Tue Mar 30 08:46:28 2010 Performing 300 seconds pretest warmup. +Child 3 - 50 aborted ops +Child 1 - 50 aborted ops +Child 1 - 100 aborted ops +Child 0 - 50 aborted ops +Child 0 - 100 aborted ops +Tue Mar 30 08:51:28 2010 Completed. +Tue Mar 30 08:51:28 2010 Sending READY message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:51:28 2010 Completed. +Tue Mar 30 08:51:28 2010 Waiting on START message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:51:29 2010 Received. +Tue Mar 30 08:51:29 2010 Starting 300 seconds test run. +Child 2 - 50 aborted ops +Child 0 - 150 aborted ops +Child 2 - 100 aborted ops +Child 3 - 100 aborted ops +Child 1 - 150 aborted ops +Child 0 - 200 aborted ops +Child 3 - 150 aborted ops +Child 2 - 150 aborted ops +Child 0 - 250 aborted ops +Child 1 - 200 aborted ops +Child 2 - 200 aborted ops +Child 3 - 200 aborted ops +Child 1 - 250 aborted ops +Child 0 - 300 aborted ops +Child 3 - 250 aborted ops +Child 0 - 350 aborted ops +Child 1 - 300 aborted ops +Child 2 - 250 aborted ops +Child 3 - 300 aborted ops +Child 0 - 400 aborted ops +Child 2 - 300 aborted ops +Child 1 - 350 aborted ops +Child 2 - 350 aborted ops +Child 0 - 450 aborted ops +Child 3 - 350 aborted ops +Child 1 - 400 aborted ops +Child 1 - 450 aborted ops +Child 0 - 500 aborted ops +Child 3 - 400 aborted ops +Child 2 - 400 aborted ops +Child 0 - 550 aborted ops +Child 3 - 450 aborted ops +Child 1 - 500 aborted ops +Child 0 - 600 aborted ops +SFS Single Client (c09-44) Results, Tue Mar 30 08:56:39 2010 +-------------------------------------------------------------------------------------- +NFS V3 Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op Logical Logical Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +-------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 93713 93713 0 0.27 2.75 0.01 5.1% +setattr 4.0% 4.0% 14480 14480 0 0.24 0.39 0.01 0.7% +lookup 24.0% 24.1% 86404 86404 0 0.27 2.43 0.01 4.8% +readlink 1.0% 1.0% 3565 3565 0 0.23 0.27 0.02 0.2% +read 18.0% 18.1% 64879 79766 0 2.72 20.35 0.03 36.3% +write 10.0% 10.0% 35960 43551 0 5.90 24.92 0.05 43.7% +create 1.0% 1.0% 3533 3533 0 6.85 44.01 0.22 5.0% +remove 1.0% 0.5% 1756 1756 0 0.38 0.31 0.03 0.1% +readdir 1.0% 1.0% 3641 3641 0 0.45 0.39 0.02 0.3% +fsstat 1.0% 1.0% 3627 3627 0 0.24 0.33 0.02 0.2% +access 11.0% 11.1% 39667 39667 0 0.26 2.52 0.02 2.1% +readdirplus 2.0% 2.0% 7119 7119 0 0.98 2.05 0.03 1.4% +-------------------------------------------------------------------------------------- + + -------------------------------------------------- + | SPEC SFS 2008 SINGLE CLIENT RESULTS SUMMARY | + --------------------------+----------------------- +SFS NFS V3 THROUGHPUT: 1194.48 Ops/Sec AVG. RESPONSE TIME: 1.35 Msec/Op +TCP PROTOCOL +FAST CALLS: 0 +NFS V3 MIXFILE: [ SFS Default ] +CLIENT REQUESTED LOAD: 1160 Ops/Sec +TOTAL LOGICAL NFS V3 OPERATIONS: 358344 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS V3 OPERATIONS: 380822 +PHYSICAL NFS V3 THROUGHPUT: 1269.40 Ops/Sec +FILE SET SIZE CREATED: 10622124.0 KB +FILE SET SIZE ACCESSED: 3188124.0 - 3517570.0 KB (100.00% to 110.33% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 08:56:39 2010 Completed. + +Client Test Parameters: + Number of processes = 4 + Requested Load (NFS V3 operations/second) = 1160 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + + +SPEC SFS 2008 Benchmark, Creation - 1 February 2008 +Tue Mar 30 08:56:39 2010 Sending DONE-TEST message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:56:39 2010 Completed. +Tue Mar 30 08:56:39 2010 Waiting on MOVE-DATA message from Prime Client(c09-44.sysnet.ucsd.edu). + +************************************************************************ +Tue Mar 30 08:56:40 2010 Received. +Tue Mar 30 08:56:40 2010 Sending results to Prime Client(c09-44.sysnet.ucsd.edu) +Tue Mar 30 08:56:40 2010 Completed. +Started on client (c09-44): ../binaries/linux-x86/sfsnfs3 -N 1 -l 1200 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ +NFS V3 Protocol Version + +************************************************************************ +../binaries/linux-x86/sfsnfs3: NFS User ID only supported on Windows client +../binaries/linux-x86/sfsnfs3: NFS Group ID only supported on Windows client + +c09-44: Good clock resolution [ 1.000000 ] Micro seconds. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 + +SFS NFS V3 Benchmark Client Logfile, Tue Mar 30 08:56:42 2010 + Client hostname = c09-44 + Prime Client hostname = c09-44.sysnet.ucsd.edu + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +NFS V3 Protocol +Tue Mar 30 08:56:42 2010 Mounting 4 remote test directories. +Child[000]: NFS negotiated block size 32768 +Child[001]: NFS negotiated block size 32768 +Child[002]: NFS negotiated block size 32768 +Child[003]: NFS negotiated block size 32768 +Tue Mar 30 08:56:53 2010 Completed. +Tue Mar 30 08:56:53 2010 Sending DONE-MOUNT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:56:53 2010 Completed. +Tue Mar 30 08:56:53 2010 Waiting on DO-INIT message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:56:58 2010 Received. + +Tue Mar 30 08:56:58 2010 Initializing test directories. +Tue Mar 30 08:56:58 2010 Child 0 will create 167 directories. +Tue Mar 30 08:56:58 2010 Child 1 will create 167 directories. +Tue Mar 30 08:56:58 2010 Child 3 will create 167 directories. +Tue Mar 30 08:56:58 2010 Child 2 will create 167 directories. +Tue Mar 30 08:57:02 2010 Child 1 finished creating 167 directories. +Tue Mar 30 08:57:02 2010 Child 1 will create 5102 files. +Tue Mar 30 08:57:04 2010 Child 2 finished creating 167 directories. +Tue Mar 30 08:57:04 2010 Child 2 will create 5102 files. +Tue Mar 30 08:57:06 2010 Child 1 verified 5102 files, created 51 +Tue Mar 30 08:57:06 2010 Child 1 will create 6 symlinks. +Tue Mar 30 08:57:06 2010 Child 1 finished creating 6 symlinks. +Tue Mar 30 08:57:07 2010 Child 3 finished creating 167 directories. +Tue Mar 30 08:57:07 2010 Child 3 will create 5102 files. +Tue Mar 30 08:57:09 2010 Child 0 finished creating 167 directories. +Tue Mar 30 08:57:09 2010 Child 0 will create 5102 files. +Tue Mar 30 08:57:11 2010 Child 2 verified 5102 files, created 43 +Tue Mar 30 08:57:11 2010 Child 2 will create 6 symlinks. +Tue Mar 30 08:57:11 2010 Child 2 finished creating 6 symlinks. +Tue Mar 30 08:57:16 2010 Child 3 verified 5102 files, created 51 +Tue Mar 30 08:57:16 2010 Child 3 will create 6 symlinks. +Tue Mar 30 08:57:16 2010 Child 3 finished creating 6 symlinks. +Tue Mar 30 08:57:18 2010 Child 0 verified 5102 files, created 51 +Tue Mar 30 08:57:18 2010 Child 0 will create 6 symlinks. +Tue Mar 30 08:57:18 2010 Child 0 finished creating 6 symlinks. +Tue Mar 30 08:57:18 2010 Completed. +Tue Mar 30 08:57:18 2010 Sending DONE-INIT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:57:18 2010 Completed. +Tue Mar 30 08:57:18 2010 Waiting on DO-WARMUP message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 08:57:19 2010 Received. +Tue Mar 30 08:57:19 2010 Performing 300 seconds pretest warmup. +Tue Mar 30 09:02:19 2010 Completed. +Tue Mar 30 09:02:19 2010 Sending READY message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:02:19 2010 Completed. +Tue Mar 30 09:02:19 2010 Waiting on START message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:02:20 2010 Received. +Tue Mar 30 09:02:20 2010 Starting 300 seconds test run. +Child 2 - 50 aborted ops +Child 3 - 50 aborted ops +Child 2 - 100 aborted ops +Child 1 - 50 aborted ops +Child 0 - 50 aborted ops +Child 2 - 150 aborted ops +Child 3 - 100 aborted ops +Child 1 - 100 aborted ops +Child 0 - 100 aborted ops +Child 3 - 150 aborted ops +Child 2 - 200 aborted ops +Child 0 - 150 aborted ops +Child 2 - 250 aborted ops +Child 3 - 200 aborted ops +Child 1 - 150 aborted ops +Child 0 - 200 aborted ops +Child 0 - 250 aborted ops +Child 3 - 250 aborted ops +Child 2 - 300 aborted ops +Child 1 - 200 aborted ops +Child 0 - 300 aborted ops +Child 3 - 300 aborted ops +Child 2 - 350 aborted ops +SFS Single Client (c09-44) Results, Tue Mar 30 09:07:32 2010 +-------------------------------------------------------------------------------------- +NFS V3 Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op Logical Logical Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +-------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 89394 89394 0 0.35 3.77 0.01 2.3% +setattr 4.0% 4.0% 13755 13755 0 0.37 4.15 0.03 0.4% +lookup 24.0% 24.0% 82255 82255 0 0.36 3.66 0.01 2.2% +readlink 1.0% 1.0% 3503 3503 0 0.36 4.86 0.07 0.1% +read 18.0% 18.1% 61841 75603 0 9.64 130.30 0.09 44.8% +write 10.0% 9.9% 34024 41146 0 12.15 126.00 0.12 31.1% +create 1.0% 1.0% 3521 3521 0 64.38 464.63 0.71 17.0% +remove 1.0% 0.6% 2217 2217 0 0.58 5.09 0.09 0.1% +readdir 1.0% 1.0% 3449 3449 0 0.57 3.45 0.06 0.1% +fsstat 1.0% 1.0% 3433 3433 0 0.37 3.58 0.06 0.1% +access 11.0% 11.0% 37704 37704 0 0.34 3.66 0.02 1.0% +readdirplus 2.0% 2.0% 6937 6937 0 1.31 4.74 0.05 0.7% +-------------------------------------------------------------------------------------- + + -------------------------------------------------- + | SPEC SFS 2008 SINGLE CLIENT RESULTS SUMMARY | + --------------------------+----------------------- +SFS NFS V3 THROUGHPUT: 1143.92 Ops/Sec AVG. RESPONSE TIME: 3.88 Msec/Op +TCP PROTOCOL +FAST CALLS: 0 +NFS V3 MIXFILE: [ SFS Default ] +CLIENT REQUESTED LOAD: 1200 Ops/Sec +TOTAL LOGICAL NFS V3 OPERATIONS: 342033 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS V3 OPERATIONS: 362917 +PHYSICAL NFS V3 THROUGHPUT: 1213.76 Ops/Sec +FILE SET SIZE CREATED: 10622124.0 KB +FILE SET SIZE ACCESSED: 3188124.0 - 3506936.0 KB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 09:07:32 2010 Completed. + +Client Test Parameters: + Number of processes = 4 + Requested Load (NFS V3 operations/second) = 1200 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + + +SPEC SFS 2008 Benchmark, Creation - 1 February 2008 +Tue Mar 30 09:07:32 2010 Sending DONE-TEST message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:07:32 2010 Completed. +Tue Mar 30 09:07:32 2010 Waiting on MOVE-DATA message from Prime Client(c09-44.sysnet.ucsd.edu). + +************************************************************************ +Tue Mar 30 09:07:33 2010 Received. +Tue Mar 30 09:07:33 2010 Sending results to Prime Client(c09-44.sysnet.ucsd.edu) +Tue Mar 30 09:07:33 2010 Completed. +Started on client (c09-44): ../binaries/linux-x86/sfsnfs3 -N 1 -l 1240 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ +NFS V3 Protocol Version + +************************************************************************ +../binaries/linux-x86/sfsnfs3: NFS User ID only supported on Windows client +../binaries/linux-x86/sfsnfs3: NFS Group ID only supported on Windows client + +c09-44: Good clock resolution [ 1.000000 ] Micro seconds. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 + +SFS NFS V3 Benchmark Client Logfile, Tue Mar 30 09:07:35 2010 + Client hostname = c09-44 + Prime Client hostname = c09-44.sysnet.ucsd.edu + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +NFS V3 Protocol +Tue Mar 30 09:07:35 2010 Mounting 4 remote test directories. +Child[000]: NFS negotiated block size 32768 +Child[001]: NFS negotiated block size 32768 +Child[002]: NFS negotiated block size 32768 +Child[003]: NFS negotiated block size 32768 +Tue Mar 30 09:07:46 2010 Completed. +Tue Mar 30 09:07:46 2010 Sending DONE-MOUNT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:07:46 2010 Completed. +Tue Mar 30 09:07:46 2010 Waiting on DO-INIT message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:07:51 2010 Received. + +Tue Mar 30 09:07:51 2010 Initializing test directories. +Tue Mar 30 09:07:51 2010 Child 3 will create 167 directories. +Tue Mar 30 09:07:51 2010 Child 0 will create 167 directories. +Tue Mar 30 09:07:51 2010 Child 1 will create 167 directories. +Tue Mar 30 09:07:51 2010 Child 2 will create 167 directories. +Tue Mar 30 09:07:53 2010 Child 0 finished creating 167 directories. +Tue Mar 30 09:07:53 2010 Child 0 will create 5102 files. +Tue Mar 30 09:07:56 2010 Child 0 verified 5102 files, created 51 +Tue Mar 30 09:07:56 2010 Child 0 will create 6 symlinks. +Tue Mar 30 09:07:56 2010 Child 0 finished creating 6 symlinks. +Tue Mar 30 09:07:58 2010 Child 1 finished creating 167 directories. +Tue Mar 30 09:07:58 2010 Child 1 will create 5102 files. +Tue Mar 30 09:08:01 2010 Child 2 finished creating 167 directories. +Tue Mar 30 09:08:01 2010 Child 2 will create 5102 files. +Tue Mar 30 09:08:01 2010 Child 1 verified 5102 files, created 50 +Tue Mar 30 09:08:01 2010 Child 1 will create 6 symlinks. +Tue Mar 30 09:08:01 2010 Child 1 finished creating 6 symlinks. +Tue Mar 30 09:08:04 2010 Child 2 verified 5102 files, created 51 +Tue Mar 30 09:08:04 2010 Child 2 will create 6 symlinks. +Tue Mar 30 09:08:04 2010 Child 2 finished creating 6 symlinks. +Tue Mar 30 09:08:04 2010 Child 3 finished creating 167 directories. +Tue Mar 30 09:08:04 2010 Child 3 will create 5102 files. +Tue Mar 30 09:08:08 2010 Child 3 verified 5102 files, created 51 +Tue Mar 30 09:08:08 2010 Child 3 will create 6 symlinks. +Tue Mar 30 09:08:08 2010 Child 3 finished creating 6 symlinks. +Tue Mar 30 09:08:08 2010 Completed. +Tue Mar 30 09:08:08 2010 Sending DONE-INIT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:08:08 2010 Completed. +Tue Mar 30 09:08:08 2010 Waiting on DO-WARMUP message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:08:09 2010 Received. +Tue Mar 30 09:08:09 2010 Performing 300 seconds pretest warmup. +Child 3 - 50 aborted ops +Child 3 - 100 aborted ops +Child 3 - 150 aborted ops +Child 3 - 200 aborted ops +Child 3 - 250 aborted ops +Tue Mar 30 09:13:09 2010 Completed. +Tue Mar 30 09:13:09 2010 Sending READY message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:13:09 2010 Completed. +Tue Mar 30 09:13:09 2010 Waiting on START message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:13:10 2010 Received. +Tue Mar 30 09:13:10 2010 Starting 300 seconds test run. +Child 0 - 50 aborted ops +Child 2 - 50 aborted ops +Child 2 - 100 aborted ops +Child 0 - 100 aborted ops +Child 1 - 50 aborted ops +Child 3 - 300 aborted ops +Child 1 - 100 aborted ops +Child 0 - 150 aborted ops +Child 2 - 150 aborted ops +Child 3 - 350 aborted ops +Child 0 - 200 aborted ops +Child 1 - 150 aborted ops +Child 2 - 200 aborted ops +Child 3 - 400 aborted ops +Child 0 - 250 aborted ops +Child 1 - 200 aborted ops +Child 2 - 250 aborted ops +Child 3 - 450 aborted ops +Child 0 - 300 aborted ops +Child 2 - 300 aborted ops +SFS Single Client (c09-44) Results, Tue Mar 30 09:18:22 2010 +-------------------------------------------------------------------------------------- +NFS V3 Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op Logical Logical Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +-------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 72208 72208 0 0.38 4.01 0.01 2.0% +setattr 4.0% 4.0% 11038 11038 0 0.41 4.23 0.04 0.3% +lookup 24.0% 24.1% 66776 66776 0 0.45 5.05 0.02 2.2% +readlink 1.0% 1.0% 2804 2804 0 0.54 7.51 0.10 0.1% +read 18.0% 18.1% 50192 61819 0 13.93 178.22 0.12 50.2% +write 10.0% 10.1% 27927 33607 0 14.86 151.62 0.14 29.8% +create 1.0% 1.0% 2839 2839 0 66.52 460.37 0.79 13.6% +remove 1.0% 0.6% 1619 1619 0 0.66 6.02 0.12 0.1% +readdir 1.0% 1.0% 2811 2811 0 0.61 4.04 0.07 0.1% +fsstat 1.0% 1.0% 2813 2813 0 0.43 5.51 0.09 0.1% +access 11.0% 11.0% 30589 30589 0 0.43 5.10 0.03 0.9% +readdirplus 2.0% 2.0% 5595 5595 0 1.46 4.62 0.06 0.6% +-------------------------------------------------------------------------------------- + + -------------------------------------------------- + | SPEC SFS 2008 SINGLE CLIENT RESULTS SUMMARY | + --------------------------+----------------------- +SFS NFS V3 THROUGHPUT: 927.12 Ops/Sec AVG. RESPONSE TIME: 5.01 Msec/Op +TCP PROTOCOL +FAST CALLS: 0 +NFS V3 MIXFILE: [ SFS Default ] +CLIENT REQUESTED LOAD: 1240 Ops/Sec +TOTAL LOGICAL NFS V3 OPERATIONS: 277211 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS V3 OPERATIONS: 294518 +PHYSICAL NFS V3 THROUGHPUT: 985.01 Ops/Sec +FILE SET SIZE CREATED: 10622124.0 KB +FILE SET SIZE ACCESSED: 3188124.0 - 3506936.0 KB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 09:18:22 2010 Completed. + +Client Test Parameters: + Number of processes = 4 + Requested Load (NFS V3 operations/second) = 1240 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + + +SPEC SFS 2008 Benchmark, Creation - 1 February 2008 +Tue Mar 30 09:18:22 2010 Sending DONE-TEST message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:18:22 2010 Completed. +Tue Mar 30 09:18:22 2010 Waiting on MOVE-DATA message from Prime Client(c09-44.sysnet.ucsd.edu). + +************************************************************************ +Tue Mar 30 09:18:23 2010 Received. +Tue Mar 30 09:18:23 2010 Sending results to Prime Client(c09-44.sysnet.ucsd.edu) +Tue Mar 30 09:18:23 2010 Completed. +Started on client (c09-44): ../binaries/linux-x86/sfsnfs3 -N 1 -l 1280 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ +NFS V3 Protocol Version +../binaries/linux-x86/sfsnfs3: NFS User ID only supported on Windows client +../binaries/linux-x86/sfsnfs3: NFS Group ID only supported on Windows client + +c09-44: Good clock resolution [ 1.000000 ] Micro seconds. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 + +************************************************************************ + +SFS NFS V3 Benchmark Client Logfile, Tue Mar 30 09:18:25 2010 + Client hostname = c09-44 + Prime Client hostname = c09-44.sysnet.ucsd.edu + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +NFS V3 Protocol +Tue Mar 30 09:18:25 2010 Mounting 4 remote test directories. +Child[000]: NFS negotiated block size 32768 +Child[001]: NFS negotiated block size 32768 +Child[002]: NFS negotiated block size 32768 +Child[003]: NFS negotiated block size 32768 +Tue Mar 30 09:18:36 2010 Completed. +Tue Mar 30 09:18:36 2010 Sending DONE-MOUNT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:18:36 2010 Completed. +Tue Mar 30 09:18:36 2010 Waiting on DO-INIT message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:18:41 2010 Received. + +Tue Mar 30 09:18:41 2010 Initializing test directories. +Tue Mar 30 09:18:41 2010 Child 3 will create 167 directories. +Tue Mar 30 09:18:41 2010 Child 0 will create 167 directories. +Tue Mar 30 09:18:41 2010 Child 1 will create 167 directories. +Tue Mar 30 09:18:41 2010 Child 2 will create 167 directories. +Tue Mar 30 09:18:41 2010 Child 3 finished creating 167 directories. +Tue Mar 30 09:18:41 2010 Child 3 will create 5102 files. +Tue Mar 30 09:18:44 2010 Child 3 verified 5102 files, created 48 +Tue Mar 30 09:18:44 2010 Child 3 will create 6 symlinks. +Tue Mar 30 09:18:44 2010 Child 3 finished creating 6 symlinks. +Tue Mar 30 09:18:52 2010 Child 1 finished creating 167 directories. +Tue Mar 30 09:18:52 2010 Child 1 will create 5102 files. +Tue Mar 30 09:18:55 2010 Child 2 finished creating 167 directories. +Tue Mar 30 09:18:55 2010 Child 2 will create 5102 files. +Tue Mar 30 09:18:56 2010 Child 0 finished creating 167 directories. +Tue Mar 30 09:18:56 2010 Child 0 will create 5102 files. +Tue Mar 30 09:18:56 2010 Child 1 verified 5102 files, created 51 +Tue Mar 30 09:18:56 2010 Child 1 will create 6 symlinks. +Tue Mar 30 09:18:56 2010 Child 1 finished creating 6 symlinks. +Tue Mar 30 09:18:58 2010 Child 2 verified 5102 files, created 50 +Tue Mar 30 09:18:58 2010 Child 2 will create 6 symlinks. +Tue Mar 30 09:18:58 2010 Child 2 finished creating 6 symlinks. +Tue Mar 30 09:18:59 2010 Child 0 verified 5102 files, created 51 +Tue Mar 30 09:18:59 2010 Child 0 will create 6 symlinks. +Tue Mar 30 09:18:59 2010 Child 0 finished creating 6 symlinks. +Tue Mar 30 09:18:59 2010 Completed. +Tue Mar 30 09:18:59 2010 Sending DONE-INIT message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:18:59 2010 Completed. +Tue Mar 30 09:18:59 2010 Waiting on DO-WARMUP message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:19:00 2010 Received. +Tue Mar 30 09:19:00 2010 Performing 300 seconds pretest warmup. +Child 1 - 50 aborted ops +Child 1 - 100 aborted ops +Child 1 - 150 aborted ops +Child 1 - 200 aborted ops +Child 1 - 250 aborted ops +Child 1 - 300 aborted ops +Child 1 - 350 aborted ops +Child 2 - 50 aborted ops +Child 2 - 100 aborted ops +Child 1 - 400 aborted ops +Child 2 - 150 aborted ops +Child 1 - 450 aborted ops +Tue Mar 30 09:24:00 2010 Completed. +Tue Mar 30 09:24:00 2010 Sending READY message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:24:00 2010 Completed. +Tue Mar 30 09:24:00 2010 Waiting on START message from Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:24:01 2010 Received. +Tue Mar 30 09:24:01 2010 Starting 300 seconds test run. +Child 2 - 200 aborted ops +Child 2 - 250 aborted ops +Child 2 - 300 aborted ops +Child 3 - 50 aborted ops +Child 1 - 500 aborted ops +Child 2 - 350 aborted ops +Child 0 - 50 aborted ops +Child 1 - 550 aborted ops +Child 3 - 100 aborted ops +Child 2 - 400 aborted ops +Child 0 - 100 aborted ops +Child 1 - 600 aborted ops +Child 3 - 150 aborted ops +Child 0 - 150 aborted ops +Child 2 - 450 aborted ops +Child 1 - 650 aborted ops +Child 0 - 200 aborted ops +Child 2 - 500 aborted ops +Child 3 - 200 aborted ops +Child 0 - 250 aborted ops +Child 1 - 700 aborted ops +Child 2 - 550 aborted ops +Child 3 - 250 aborted ops +Child 0 - 300 aborted ops +SFS Single Client (c09-44) Results, Tue Mar 30 09:29:11 2010 +-------------------------------------------------------------------------------------- +NFS V3 Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op Logical Logical Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +-------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 72990 72990 0 0.38 3.68 0.01 2.0% +setattr 4.0% 4.0% 11212 11212 0 0.42 4.23 0.04 0.3% +lookup 24.0% 24.0% 67276 67276 0 0.43 4.26 0.02 2.1% +readlink 1.0% 1.0% 2888 2888 0 0.40 3.76 0.07 0.1% +read 18.0% 18.2% 50900 62517 0 12.26 167.79 0.11 45.2% +write 10.0% 10.1% 28310 34437 0 15.64 161.50 0.15 32.1% +create 1.0% 1.0% 2790 2790 0 81.24 578.89 0.89 16.4% +remove 1.0% 0.6% 1750 1750 0 0.49 0.46 0.03 0.1% +readdir 1.0% 1.0% 2736 2736 0 0.55 0.54 0.03 0.1% +fsstat 1.0% 1.0% 2796 2796 0 0.32 0.52 0.03 0.1% +access 11.0% 11.1% 30989 30989 0 0.39 3.98 0.02 0.9% +readdirplus 2.0% 2.0% 5549 5549 0 1.59 5.39 0.06 0.6% +-------------------------------------------------------------------------------------- + + -------------------------------------------------- + | SPEC SFS 2008 SINGLE CLIENT RESULTS SUMMARY | + --------------------------+----------------------- +SFS NFS V3 THROUGHPUT: 940.22 Ops/Sec AVG. RESPONSE TIME: 4.92 Msec/Op +TCP PROTOCOL +FAST CALLS: 0 +NFS V3 MIXFILE: [ SFS Default ] +CLIENT REQUESTED LOAD: 1280 Ops/Sec +TOTAL LOGICAL NFS V3 OPERATIONS: 280186 TEST TIME: 298 Sec +TOTAL PHYSICAL NFS V3 OPERATIONS: 297930 +PHYSICAL NFS V3 THROUGHPUT: 999.76 Ops/Sec +FILE SET SIZE CREATED: 10622124.0 KB +FILE SET SIZE ACCESSED: 3188124.0 - 3506936.0 KB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 09:29:11 2010 Completed. + +Client Test Parameters: + Number of processes = 4 + Requested Load (NFS V3 operations/second) = 1280 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + + +SPEC SFS 2008 Benchmark, Creation - 1 February 2008 +Tue Mar 30 09:29:11 2010 Sending DONE-TEST message to Prime Client(c09-44.sysnet.ucsd.edu). +Tue Mar 30 09:29:11 2010 Completed. +Tue Mar 30 09:29:11 2010 Waiting on MOVE-DATA message from Prime Client(c09-44.sysnet.ucsd.edu). + +************************************************************************ +Tue Mar 30 09:29:12 2010 Received. +Tue Mar 30 09:29:12 2010 Sending results to Prime Client(c09-44.sysnet.ucsd.edu) +Tue Mar 30 09:29:12 2010 Completed. diff --git a/results/bluesky/sfslog.bluesky b/results/bluesky/sfslog.bluesky new file mode 100644 index 0000000..53763c4 --- /dev/null +++ b/results/bluesky/sfslog.bluesky @@ -0,0 +1,3384 @@ +Mon Mar 29 14:44:12 PDT 2010 INVALID RUN: Configuration parameter FILE_COUNT + valid run requires 0 + configuration file specified 20000 +Mon Mar 29 14:44:12 PDT 2010 ERROR: Configuration parameters failed validation + +Mon Mar 29 14:44:12 PDT 2010 ======================================================================== +SFS Benchmark Prime Client Logfile. + Creation Date: Mon Mar 29 14:44:12 PDT 2010 + Prime Client hostname: c09-44.sysnet.ucsd.edu +Mon Mar 29 14:44:17 PDT 2010 Number of Clients: 1 + Client hostname(s): c09-44.sysnet.ucsd.edu + +Mon Mar 29 14:44:17 PDT 2010 SfsManager: Started sfs_syncd on c09-44.sysnet.ucsd.edu +Mon Mar 29 14:44:27 PDT 2010 +************************************************************************ +Mon Mar 29 14:44:27 PDT 2010 Test Run 1 of 20 + +Mon Mar 29 14:44:27 PDT 2010 Mon Mar 29 14:44:27 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 14:44:27 PDT 2010 sfsnfs3 -N 1 -l 40 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 14:44:42 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 14:44:43 2010 Received. +Mon Mar 29 14:44:43 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 14:44:43 2010 Completed. +Mon Mar 29 14:44:43 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). + +../binaries/linux-x86/sfs_prime: Prime Client got too many signals - expected 1 got 1000 + +../binaries/linux-x86/sfs_prime: Unable to perform remote procedure on c09-44.sysnet.ucsd.edu . +Mon Mar 29 14:45:59 PDT 2010 ERROR: SfsManager: sfs_prime returned error code: 51, exiting +Mon Mar 29 14:56:28 PDT 2010 INVALID RUN: Configuration parameter FILE_COUNT + valid run requires 0 + configuration file specified 20000 +Mon Mar 29 14:56:28 PDT 2010 ERROR: Configuration parameters failed validation + +Mon Mar 29 14:56:28 PDT 2010 ======================================================================== +SFS Benchmark Prime Client Logfile. + Creation Date: Mon Mar 29 14:56:28 PDT 2010 + Prime Client hostname: c09-44.sysnet.ucsd.edu +Mon Mar 29 14:56:33 PDT 2010 Number of Clients: 1 + Client hostname(s): c09-44.sysnet.ucsd.edu + +Mon Mar 29 14:56:33 PDT 2010 SfsManager: Started sfs_syncd on c09-44.sysnet.ucsd.edu +Mon Mar 29 14:56:43 PDT 2010 +************************************************************************ +Mon Mar 29 14:56:43 PDT 2010 Test Run 1 of 20 + +Mon Mar 29 14:56:43 PDT 2010 Mon Mar 29 14:56:43 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 14:56:43 PDT 2010 sfsnfs3 -N 1 -l 40 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 14:56:58 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 14:56:59 2010 Received. +Mon Mar 29 14:56:59 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 14:56:59 2010 Completed. +Mon Mar 29 14:56:59 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 15:01:06 2010 Received. +Mon Mar 29 15:01:06 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 15:01:06 2010 Completed. +Mon Mar 29 15:01:06 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 15:06:07 2010 Received. +Mon Mar 29 15:06:07 2010 Sending START message to 1 client(s). +Mon Mar 29 15:06:07 2010 Completed. +Mon Mar 29 15:11:07 2010 Sending STOP message to 1 client(s). +Mon Mar 29 15:11:07 2010 Completed. +Mon Mar 29 15:11:07 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 15:11:18 2010 Received. +Mon Mar 29 15:11:18 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 15:11:18 2010 Completed. +Mon Mar 29 15:11:18 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 15:11:19 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 40 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 40 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:11:19 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 3108 3108 0 0.19 0.04 0.01 7.5% +setattr 4.0% 3.7% 446 446 0 0.19 0.01 0.01 1.1% +lookup 24.0% 23.7% 2846 2846 0 0.20 0.02 0.00 7.1% +readlink 1.0% 0.9% 112 112 0 0.19 0.01 0.02 0.3% +read 18.0% 18.3% 2193 2709 0 1.10 0.62 0.03 30.8% +write 10.0% 9.8% 1180 1432 0 3.00 10.05 0.18 45.0% +create 1.0% 1.2% 146 146 0 0.73 0.05 0.04 1.4% +remove 1.0% 1.1% 136 136 0 0.35 0.02 0.02 0.6% +readdir 1.0% 1.0% 117 117 0 0.38 0.03 0.03 0.6% +fsstat 1.0% 1.0% 118 118 0 0.19 0.01 0.02 0.3% +access 11.0% 11.2% 1348 1348 0 0.19 0.03 0.01 3.3% +readdirplus 2.0% 2.1% 252 252 0 0.68 0.03 0.02 2.2% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 40 Ops/Sec AVG. RESPONSE TIME: 0.6 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 40 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 12002 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 12770 +PHYSICAL NFS IO THROUGHPUT: 42 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3139.3 MB (100.00% to 100.83% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:11:20 PDT 2010 +************************************************************************ +Mon Mar 29 15:11:20 PDT 2010 +************************************************************************ +Mon Mar 29 15:11:20 PDT 2010 Test Run 2 of 20 + +Mon Mar 29 15:11:20 PDT 2010 Mon Mar 29 15:11:20 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 15:11:20 PDT 2010 sfsnfs3 -N 1 -l 80 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 15:11:35 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 15:11:36 2010 Received. +Mon Mar 29 15:11:36 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 15:11:36 2010 Completed. +Mon Mar 29 15:11:36 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 15:11:53 2010 Received. +Mon Mar 29 15:11:53 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 15:11:53 2010 Completed. +Mon Mar 29 15:11:53 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 15:16:54 2010 Received. +Mon Mar 29 15:16:54 2010 Sending START message to 1 client(s). +Mon Mar 29 15:16:54 2010 Completed. +Mon Mar 29 15:21:54 2010 Sending STOP message to 1 client(s). +Mon Mar 29 15:21:54 2010 Completed. +Mon Mar 29 15:21:54 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 15:22:05 2010 Received. +Mon Mar 29 15:22:05 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 15:22:05 2010 Completed. +Mon Mar 29 15:22:05 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 15:22:06 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 80 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 80 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:22:06 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 6232 6232 0 0.19 0.04 0.00 7.2% +setattr 4.0% 4.1% 995 995 0 0.19 0.02 0.01 1.2% +lookup 24.0% 24.3% 5839 5839 0 0.20 0.08 0.01 7.0% +readlink 1.0% 1.0% 244 244 0 0.19 0.02 0.02 0.3% +read 18.0% 18.0% 4327 5381 0 1.40 6.55 0.08 36.7% +write 10.0% 9.7% 2330 2762 0 2.83 9.85 0.13 40.2% +create 1.0% 0.9% 221 221 0 0.81 1.05 0.14 1.1% +remove 1.0% 0.9% 220 220 0 0.35 0.03 0.02 0.5% +readdir 1.0% 0.9% 220 220 0 0.39 0.03 0.02 0.5% +fsstat 1.0% 1.0% 230 230 0 0.19 0.01 0.01 0.3% +access 11.0% 11.1% 2653 2653 0 0.19 0.06 0.01 3.1% +readdirplus 2.0% 2.1% 494 494 0 0.69 0.20 0.04 2.1% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 80 Ops/Sec AVG. RESPONSE TIME: 0.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 80 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 24005 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 25491 +PHYSICAL NFS IO THROUGHPUT: 84 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3164.1 MB (100.00% to 101.63% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:22:07 PDT 2010 +************************************************************************ +Mon Mar 29 15:22:07 PDT 2010 +************************************************************************ +Mon Mar 29 15:22:07 PDT 2010 Test Run 3 of 20 + +Mon Mar 29 15:22:07 PDT 2010 Mon Mar 29 15:22:07 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 15:22:07 PDT 2010 sfsnfs3 -N 1 -l 120 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 15:22:22 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 15:22:23 2010 Received. +Mon Mar 29 15:22:23 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 15:22:23 2010 Completed. +Mon Mar 29 15:22:23 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 15:22:35 2010 Received. +Mon Mar 29 15:22:35 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 15:22:35 2010 Completed. +Mon Mar 29 15:22:35 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 15:27:36 2010 Received. +Mon Mar 29 15:27:36 2010 Sending START message to 1 client(s). +Mon Mar 29 15:27:36 2010 Completed. +Mon Mar 29 15:32:36 2010 Sending STOP message to 1 client(s). +Mon Mar 29 15:32:36 2010 Completed. +Mon Mar 29 15:32:36 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 15:32:47 2010 Received. +Mon Mar 29 15:32:47 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 15:32:47 2010 Completed. +Mon Mar 29 15:32:47 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 15:32:48 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 120 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 120 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:32:48 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 9346 9346 0 0.19 0.07 0.01 5.4% +setattr 4.0% 4.0% 1438 1438 0 0.19 0.07 0.01 0.8% +lookup 24.0% 24.3% 8743 8743 0 0.20 0.11 0.01 5.2% +readlink 1.0% 0.9% 330 330 0 0.19 0.02 0.01 0.2% +read 18.0% 17.9% 6456 7950 0 1.74 14.23 0.09 34.0% +write 10.0% 9.9% 3554 4281 0 4.48 14.65 0.13 48.3% +create 1.0% 1.0% 352 352 0 1.11 5.07 0.24 1.2% +remove 1.0% 0.9% 336 336 0 0.35 0.03 0.02 0.4% +readdir 1.0% 1.0% 351 351 0 0.39 0.12 0.04 0.4% +fsstat 1.0% 1.0% 375 375 0 0.19 0.05 0.02 0.2% +access 11.0% 11.3% 4061 4061 0 0.19 0.09 0.01 2.4% +readdirplus 2.0% 1.9% 698 698 0 0.70 0.26 0.04 1.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 120 Ops/Sec AVG. RESPONSE TIME: 0.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 120 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 36040 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 38261 +PHYSICAL NFS IO THROUGHPUT: 127 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3199.4 MB (100.00% to 102.76% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:32:49 PDT 2010 +************************************************************************ +Mon Mar 29 15:32:49 PDT 2010 +************************************************************************ +Mon Mar 29 15:32:49 PDT 2010 Test Run 4 of 20 + +Mon Mar 29 15:32:49 PDT 2010 Mon Mar 29 15:32:49 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 15:32:49 PDT 2010 sfsnfs3 -N 1 -l 160 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 15:33:04 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 15:33:05 2010 Received. +Mon Mar 29 15:33:05 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 15:33:05 2010 Completed. +Mon Mar 29 15:33:05 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 15:33:21 2010 Received. +Mon Mar 29 15:33:21 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 15:33:21 2010 Completed. +Mon Mar 29 15:33:21 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 15:38:22 2010 Received. +Mon Mar 29 15:38:22 2010 Sending START message to 1 client(s). +Mon Mar 29 15:38:22 2010 Completed. +Mon Mar 29 15:43:22 2010 Sending STOP message to 1 client(s). +Mon Mar 29 15:43:22 2010 Completed. +Mon Mar 29 15:43:22 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 15:43:33 2010 Received. +Mon Mar 29 15:43:33 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 15:43:33 2010 Completed. +Mon Mar 29 15:43:33 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 15:43:34 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 160 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 160 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:43:34 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 12588 12588 0 0.19 0.08 0.00 5.4% +setattr 4.0% 3.9% 1875 1875 0 0.20 0.04 0.01 0.8% +lookup 24.0% 24.3% 11660 11660 0 0.20 0.08 0.01 5.1% +readlink 1.0% 1.0% 481 481 0 0.19 0.06 0.02 0.2% +read 18.0% 18.0% 8653 10644 0 1.63 7.39 0.06 31.3% +write 10.0% 10.0% 4789 5882 0 4.78 12.85 0.10 51.0% +create 1.0% 0.9% 446 446 0 1.61 9.72 0.29 1.6% +remove 1.0% 1.0% 501 501 0 0.36 0.11 0.03 0.4% +readdir 1.0% 1.0% 476 476 0 0.39 0.08 0.03 0.4% +fsstat 1.0% 1.0% 473 473 0 0.19 0.06 0.02 0.2% +access 11.0% 10.8% 5195 5195 0 0.19 0.11 0.01 2.2% +readdirplus 2.0% 1.8% 884 884 0 0.70 0.35 0.04 1.4% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 161 Ops/Sec AVG. RESPONSE TIME: 0.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 160 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 48021 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 51105 +PHYSICAL NFS IO THROUGHPUT: 170 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3227.0 MB (100.00% to 103.65% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:43:35 PDT 2010 +************************************************************************ +Mon Mar 29 15:43:35 PDT 2010 +************************************************************************ +Mon Mar 29 15:43:35 PDT 2010 Test Run 5 of 20 + +Mon Mar 29 15:43:35 PDT 2010 Mon Mar 29 15:43:35 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 15:43:35 PDT 2010 sfsnfs3 -N 1 -l 200 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 15:43:50 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 15:43:51 2010 Received. +Mon Mar 29 15:43:51 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 15:43:51 2010 Completed. +Mon Mar 29 15:43:51 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 15:44:10 2010 Received. +Mon Mar 29 15:44:10 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 15:44:10 2010 Completed. +Mon Mar 29 15:44:10 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 15:49:11 2010 Received. +Mon Mar 29 15:49:11 2010 Sending START message to 1 client(s). +Mon Mar 29 15:49:11 2010 Completed. +Mon Mar 29 15:54:11 2010 Sending STOP message to 1 client(s). +Mon Mar 29 15:54:11 2010 Completed. +Mon Mar 29 15:54:11 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 15:54:22 2010 Received. +Mon Mar 29 15:54:22 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 15:54:22 2010 Completed. +Mon Mar 29 15:54:22 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 15:54:23 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 200 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 200 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:54:23 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 15762 15762 0 0.20 0.11 0.01 5.6% +setattr 4.0% 4.0% 2410 2410 0 0.20 0.10 0.01 0.9% +lookup 24.0% 23.7% 14277 14277 0 0.20 0.09 0.00 5.2% +readlink 1.0% 1.0% 608 608 0 0.20 0.16 0.03 0.2% +read 18.0% 18.0% 10841 13329 0 1.52 2.24 0.03 30.1% +write 10.0% 10.0% 6006 7220 0 4.74 11.96 0.09 52.0% +create 1.0% 1.1% 648 648 0 0.91 1.86 0.11 1.1% +remove 1.0% 1.0% 622 622 0 0.37 0.17 0.03 0.4% +readdir 1.0% 1.0% 592 592 0 0.40 0.13 0.03 0.4% +fsstat 1.0% 1.0% 581 581 0 0.20 0.11 0.03 0.2% +access 11.0% 10.9% 6577 6577 0 0.19 0.09 0.01 2.3% +readdirplus 2.0% 2.0% 1190 1190 0 0.71 0.30 0.03 1.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 200 Ops/Sec AVG. RESPONSE TIME: 0.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 200 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 60114 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 63816 +PHYSICAL NFS IO THROUGHPUT: 212 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3249.7 MB (100.00% to 104.38% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:54:24 PDT 2010 +************************************************************************ +Mon Mar 29 15:54:24 PDT 2010 +************************************************************************ +Mon Mar 29 15:54:24 PDT 2010 Test Run 6 of 20 + +Mon Mar 29 15:54:24 PDT 2010 Mon Mar 29 15:54:24 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 15:54:24 PDT 2010 sfsnfs3 -N 1 -l 240 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 15:54:39 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 15:54:40 2010 Received. +Mon Mar 29 15:54:40 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 15:54:40 2010 Completed. +Mon Mar 29 15:54:40 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 15:54:58 2010 Received. +Mon Mar 29 15:54:58 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 15:54:58 2010 Completed. +Mon Mar 29 15:54:58 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 15:59:59 2010 Received. +Mon Mar 29 15:59:59 2010 Sending START message to 1 client(s). +Mon Mar 29 15:59:59 2010 Completed. +Mon Mar 29 16:04:59 2010 Sending STOP message to 1 client(s). +Mon Mar 29 16:04:59 2010 Completed. +Mon Mar 29 16:04:59 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 16:05:10 2010 Received. +Mon Mar 29 16:05:10 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 16:05:10 2010 Completed. +Mon Mar 29 16:05:10 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 16:05:11 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 240 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 240 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:05:11 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 18882 18882 0 0.21 1.63 0.02 5.6% +setattr 4.0% 4.0% 2910 2910 0 0.20 0.11 0.01 0.8% +lookup 24.0% 24.2% 17428 17428 0 0.22 1.78 0.02 5.4% +readlink 1.0% 1.0% 695 695 0 0.20 0.10 0.02 0.2% +read 18.0% 17.8% 12868 15853 0 1.61 4.20 0.04 29.6% +write 10.0% 9.8% 7070 8547 0 5.16 15.55 0.09 52.1% +create 1.0% 1.0% 733 733 0 1.47 10.25 0.23 1.5% +remove 1.0% 1.1% 773 773 0 0.36 0.11 0.02 0.4% +readdir 1.0% 0.9% 683 683 0 0.39 0.07 0.02 0.4% +fsstat 1.0% 1.0% 716 716 0 0.19 0.05 0.02 0.2% +access 11.0% 11.0% 7954 7954 0 0.20 0.12 0.01 2.2% +readdirplus 2.0% 1.9% 1401 1401 0 0.75 0.69 0.04 1.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 240 Ops/Sec AVG. RESPONSE TIME: 1.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 240 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 72113 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 76575 +PHYSICAL NFS IO THROUGHPUT: 255 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3273.5 MB (100.00% to 105.14% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:05:12 PDT 2010 +************************************************************************ +Mon Mar 29 16:05:12 PDT 2010 +************************************************************************ +Mon Mar 29 16:05:12 PDT 2010 Test Run 7 of 20 + +Mon Mar 29 16:05:12 PDT 2010 Mon Mar 29 16:05:12 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 16:05:12 PDT 2010 sfsnfs3 -N 1 -l 280 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 16:05:27 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 16:05:28 2010 Received. +Mon Mar 29 16:05:28 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 16:05:28 2010 Completed. +Mon Mar 29 16:05:28 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 16:05:43 2010 Received. +Mon Mar 29 16:05:43 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 16:05:43 2010 Completed. +Mon Mar 29 16:05:43 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 16:10:44 2010 Received. +Mon Mar 29 16:10:44 2010 Sending START message to 1 client(s). +Mon Mar 29 16:10:44 2010 Completed. +Mon Mar 29 16:15:44 2010 Sending STOP message to 1 client(s). +Mon Mar 29 16:15:44 2010 Completed. +Mon Mar 29 16:15:44 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 16:15:55 2010 Received. +Mon Mar 29 16:15:55 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 16:15:55 2010 Completed. +Mon Mar 29 16:15:55 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 16:15:56 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 280 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 280 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:15:56 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 21918 21918 0 0.21 0.20 0.01 5.3% +setattr 4.0% 4.0% 3330 3330 0 0.22 0.23 0.02 0.8% +lookup 24.0% 24.2% 20349 20349 0 0.22 0.20 0.01 5.1% +readlink 1.0% 1.0% 866 866 0 0.23 0.26 0.03 0.2% +read 18.0% 17.9% 15077 18496 0 1.83 5.98 0.04 31.3% +write 10.0% 10.0% 8449 10272 0 5.29 16.30 0.09 50.7% +create 1.0% 1.0% 822 822 0 1.62 6.74 0.18 1.5% +remove 1.0% 1.0% 842 842 0 0.40 0.29 0.04 0.4% +readdir 1.0% 0.9% 800 800 0 0.42 0.25 0.03 0.4% +fsstat 1.0% 1.0% 821 821 0 0.22 0.24 0.03 0.2% +access 11.0% 11.0% 9279 9279 0 0.21 0.19 0.01 2.2% +readdirplus 2.0% 2.0% 1694 1694 0 0.94 1.80 0.06 1.8% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 281 Ops/Sec AVG. RESPONSE TIME: 1.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 280 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 84247 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 89489 +PHYSICAL NFS IO THROUGHPUT: 298 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3309.9 MB (100.00% to 106.31% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:15:57 PDT 2010 +************************************************************************ +Mon Mar 29 16:15:57 PDT 2010 +************************************************************************ +Mon Mar 29 16:15:57 PDT 2010 Test Run 8 of 20 + +Mon Mar 29 16:15:57 PDT 2010 Mon Mar 29 16:15:57 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 16:15:57 PDT 2010 sfsnfs3 -N 1 -l 320 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 16:16:12 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 16:16:13 2010 Received. +Mon Mar 29 16:16:13 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 16:16:13 2010 Completed. +Mon Mar 29 16:16:13 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 16:16:34 2010 Received. +Mon Mar 29 16:16:34 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 16:16:34 2010 Completed. +Mon Mar 29 16:16:34 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 16:21:35 2010 Received. +Mon Mar 29 16:21:35 2010 Sending START message to 1 client(s). +Mon Mar 29 16:21:35 2010 Completed. +Mon Mar 29 16:26:35 2010 Sending STOP message to 1 client(s). +Mon Mar 29 16:26:35 2010 Completed. +Mon Mar 29 16:26:35 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 16:26:46 2010 Received. +Mon Mar 29 16:26:46 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 16:26:46 2010 Completed. +Mon Mar 29 16:26:46 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 16:26:47 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 320 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 320 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:26:47 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 24847 24847 0 0.24 1.29 0.01 5.6% +setattr 4.0% 4.0% 3869 3869 0 0.25 0.35 0.02 0.9% +lookup 24.0% 24.2% 23183 23183 0 0.26 1.99 0.02 5.7% +readlink 1.0% 1.0% 949 949 0 0.23 0.26 0.03 0.2% +read 18.0% 18.1% 17338 21254 0 2.02 6.90 0.04 32.7% +write 10.0% 9.9% 9459 11335 0 5.39 16.43 0.08 47.6% +create 1.0% 1.0% 960 960 0 2.03 9.26 0.19 1.8% +remove 1.0% 1.0% 954 954 0 0.40 0.24 0.03 0.4% +readdir 1.0% 1.0% 946 946 0 0.44 0.37 0.04 0.4% +fsstat 1.0% 1.0% 953 953 0 0.24 0.31 0.04 0.2% +access 11.0% 11.1% 10613 10613 0 0.23 0.28 0.01 2.3% +readdirplus 2.0% 2.0% 1909 1909 0 1.27 3.02 0.08 2.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 320 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 320 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 95980 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 101772 +PHYSICAL NFS IO THROUGHPUT: 339 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3331.6 MB (100.00% to 107.01% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:26:48 PDT 2010 +************************************************************************ +Mon Mar 29 16:26:48 PDT 2010 +************************************************************************ +Mon Mar 29 16:26:48 PDT 2010 Test Run 9 of 20 + +Mon Mar 29 16:26:48 PDT 2010 Mon Mar 29 16:26:48 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 16:26:48 PDT 2010 sfsnfs3 -N 1 -l 360 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 16:27:03 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 16:27:04 2010 Received. +Mon Mar 29 16:27:04 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 16:27:04 2010 Completed. +Mon Mar 29 16:27:04 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 16:27:25 2010 Received. +Mon Mar 29 16:27:25 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 16:27:25 2010 Completed. +Mon Mar 29 16:27:25 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 16:32:26 2010 Received. +Mon Mar 29 16:32:26 2010 Sending START message to 1 client(s). +Mon Mar 29 16:32:26 2010 Completed. +Mon Mar 29 16:37:26 2010 Sending STOP message to 1 client(s). +Mon Mar 29 16:37:26 2010 Completed. +Mon Mar 29 16:37:26 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 16:37:37 2010 Received. +Mon Mar 29 16:37:37 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 16:37:37 2010 Completed. +Mon Mar 29 16:37:37 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 16:37:38 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 360 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 360 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:37:38 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 28146 28146 0 0.24 0.30 0.01 4.8% +setattr 4.0% 4.1% 4447 4447 0 0.25 0.34 0.02 0.8% +lookup 24.0% 23.9% 25827 25827 0 0.25 1.29 0.01 4.8% +readlink 1.0% 0.9% 1026 1026 0 0.25 0.32 0.03 0.2% +read 18.0% 18.1% 19612 23964 0 2.40 11.68 0.05 34.1% +write 10.0% 10.1% 10941 13274 0 5.95 18.23 0.08 47.2% +create 1.0% 1.0% 1072 1072 0 4.21 27.05 0.31 3.3% +remove 1.0% 1.0% 1055 1055 0 0.44 0.40 0.04 0.3% +readdir 1.0% 1.0% 1094 1094 0 0.43 0.23 0.03 0.3% +fsstat 1.0% 1.0% 1129 1129 0 0.23 0.28 0.03 0.2% +access 11.0% 10.9% 11774 11774 0 0.24 0.32 0.01 2.1% +readdirplus 2.0% 2.0% 2146 2146 0 1.23 3.20 0.08 1.9% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 361 Ops/Sec AVG. RESPONSE TIME: 1.3 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 360 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 108269 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 114954 +PHYSICAL NFS IO THROUGHPUT: 383 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3360.4 MB (100.00% to 107.93% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:37:39 PDT 2010 +************************************************************************ +Mon Mar 29 16:37:39 PDT 2010 +************************************************************************ +Mon Mar 29 16:37:39 PDT 2010 Test Run 10 of 20 + +Mon Mar 29 16:37:39 PDT 2010 Mon Mar 29 16:37:39 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 16:37:39 PDT 2010 sfsnfs3 -N 1 -l 400 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 16:37:54 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 16:37:55 2010 Received. +Mon Mar 29 16:37:55 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 16:37:55 2010 Completed. +Mon Mar 29 16:37:55 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 16:38:12 2010 Received. +Mon Mar 29 16:38:12 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 16:38:12 2010 Completed. +Mon Mar 29 16:38:12 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 16:43:13 2010 Received. +Mon Mar 29 16:43:13 2010 Sending START message to 1 client(s). +Mon Mar 29 16:43:13 2010 Completed. +Mon Mar 29 16:48:13 2010 Sending STOP message to 1 client(s). +Mon Mar 29 16:48:13 2010 Completed. +Mon Mar 29 16:48:13 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 16:48:24 2010 Received. +Mon Mar 29 16:48:24 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 16:48:24 2010 Completed. +Mon Mar 29 16:48:24 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 16:48:25 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 400 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 400 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:48:25 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 31328 31328 0 0.24 0.32 0.01 5.2% +setattr 4.0% 4.0% 4837 4837 0 0.25 0.32 0.02 0.8% +lookup 24.0% 24.0% 28917 28917 0 0.25 0.33 0.01 4.9% +readlink 1.0% 1.0% 1175 1175 0 0.24 0.32 0.03 0.2% +read 18.0% 17.9% 21541 26282 0 2.29 9.41 0.04 33.9% +write 10.0% 9.9% 11917 14324 0 5.75 15.73 0.07 47.0% +create 1.0% 1.0% 1197 1197 0 3.07 15.70 0.22 2.5% +remove 1.0% 1.0% 1167 1167 0 0.45 0.44 0.04 0.4% +readdir 1.0% 0.9% 1136 1136 0 0.47 0.48 0.04 0.4% +fsstat 1.0% 1.0% 1219 1219 0 0.23 0.32 0.03 0.2% +access 11.0% 11.2% 13475 13475 0 0.24 0.30 0.01 2.2% +readdirplus 2.0% 2.1% 2492 2492 0 1.34 3.30 0.07 2.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 401 Ops/Sec AVG. RESPONSE TIME: 1.2 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 400 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 120401 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 127549 +PHYSICAL NFS IO THROUGHPUT: 425 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3375.7 MB (100.00% to 108.43% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:48:26 PDT 2010 +************************************************************************ +Mon Mar 29 16:48:26 PDT 2010 +************************************************************************ +Mon Mar 29 16:48:26 PDT 2010 Test Run 11 of 20 + +Mon Mar 29 16:48:26 PDT 2010 Mon Mar 29 16:48:26 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 16:48:26 PDT 2010 sfsnfs3 -N 1 -l 440 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 16:48:41 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 16:48:42 2010 Received. +Mon Mar 29 16:48:42 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 16:48:42 2010 Completed. +Mon Mar 29 16:48:42 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 16:49:02 2010 Received. +Mon Mar 29 16:49:02 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 16:49:02 2010 Completed. +Mon Mar 29 16:49:02 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 16:54:03 2010 Received. +Mon Mar 29 16:54:03 2010 Sending START message to 1 client(s). +Mon Mar 29 16:54:03 2010 Completed. +Mon Mar 29 16:59:03 2010 Sending STOP message to 1 client(s). +Mon Mar 29 16:59:03 2010 Completed. +Mon Mar 29 16:59:03 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 16:59:14 2010 Received. +Mon Mar 29 16:59:14 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 16:59:14 2010 Completed. +Mon Mar 29 16:59:14 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 16:59:15 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 440 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 440 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:59:15 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 34698 34698 0 0.24 0.31 0.01 4.7% +setattr 4.0% 4.0% 5311 5311 0 0.25 0.30 0.01 0.7% +lookup 24.0% 23.8% 31619 31619 0 0.25 0.31 0.01 4.4% +readlink 1.0% 0.9% 1219 1219 0 0.25 0.33 0.03 0.2% +read 18.0% 18.1% 23965 29344 0 2.70 13.94 0.05 36.0% +write 10.0% 10.0% 13311 16095 0 6.26 21.04 0.08 46.3% +create 1.0% 1.0% 1301 1301 0 4.11 22.42 0.26 3.0% +remove 1.0% 1.0% 1317 1317 0 0.42 0.43 0.04 0.3% +readdir 1.0% 1.0% 1345 1345 0 0.44 0.26 0.03 0.3% +fsstat 1.0% 1.0% 1277 1277 0 0.23 0.23 0.03 0.2% +access 11.0% 11.0% 14539 14539 0 0.24 0.31 0.01 2.0% +readdirplus 2.0% 2.0% 2688 2688 0 1.32 3.06 0.07 2.0% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 443 Ops/Sec AVG. RESPONSE TIME: 1.4 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 440 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 132590 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 140753 +PHYSICAL NFS IO THROUGHPUT: 470 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3414.4 MB (100.00% to 109.67% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:59:16 PDT 2010 +************************************************************************ +Mon Mar 29 16:59:16 PDT 2010 +************************************************************************ +Mon Mar 29 16:59:16 PDT 2010 Test Run 12 of 20 + +Mon Mar 29 16:59:16 PDT 2010 Mon Mar 29 16:59:16 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 16:59:16 PDT 2010 sfsnfs3 -N 1 -l 480 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 16:59:31 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 16:59:32 2010 Received. +Mon Mar 29 16:59:32 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 16:59:32 2010 Completed. +Mon Mar 29 16:59:32 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 16:59:51 2010 Received. +Mon Mar 29 16:59:51 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 16:59:51 2010 Completed. +Mon Mar 29 16:59:51 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 17:04:52 2010 Received. +Mon Mar 29 17:04:52 2010 Sending START message to 1 client(s). +Mon Mar 29 17:04:52 2010 Completed. +Mon Mar 29 17:09:52 2010 Sending STOP message to 1 client(s). +Mon Mar 29 17:09:52 2010 Completed. +Mon Mar 29 17:09:52 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 17:10:03 2010 Received. +Mon Mar 29 17:10:03 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 17:10:03 2010 Completed. +Mon Mar 29 17:10:03 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 17:10:04 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 480 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 480 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:10:04 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 37800 37800 0 0.25 0.33 0.01 4.4% +setattr 4.0% 4.0% 5730 5730 0 0.26 0.35 0.02 0.7% +lookup 24.0% 24.0% 34832 34832 0 0.28 1.55 0.01 4.4% +readlink 1.0% 1.0% 1427 1427 0 0.26 0.34 0.03 0.2% +read 18.0% 18.0% 26094 32073 0 2.91 14.97 0.05 35.2% +write 10.0% 10.0% 14537 17448 0 6.84 27.57 0.09 46.0% +create 1.0% 1.0% 1401 1401 0 6.99 52.86 0.38 4.5% +remove 1.0% 1.0% 1390 1390 0 0.44 0.41 0.03 0.3% +readdir 1.0% 1.0% 1501 1501 0 0.46 0.39 0.03 0.3% +fsstat 1.0% 1.0% 1481 1481 0 0.25 0.31 0.03 0.2% +access 11.0% 10.9% 15804 15804 0 0.25 0.36 0.01 1.9% +readdirplus 2.0% 2.0% 2907 2907 0 1.48 3.65 0.07 2.0% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 483 Ops/Sec AVG. RESPONSE TIME: 1.5 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 480 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 144904 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 153794 +PHYSICAL NFS IO THROUGHPUT: 512 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3425.5 MB (100.00% to 110.02% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:10:05 PDT 2010 +************************************************************************ +Mon Mar 29 17:10:05 PDT 2010 +************************************************************************ +Mon Mar 29 17:10:05 PDT 2010 Test Run 13 of 20 + +Mon Mar 29 17:10:05 PDT 2010 Mon Mar 29 17:10:05 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 17:10:05 PDT 2010 sfsnfs3 -N 1 -l 520 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 17:10:20 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 17:10:21 2010 Received. +Mon Mar 29 17:10:21 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 17:10:21 2010 Completed. +Mon Mar 29 17:10:21 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 17:10:40 2010 Received. +Mon Mar 29 17:10:40 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 17:10:40 2010 Completed. +Mon Mar 29 17:10:40 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 17:15:41 2010 Received. +Mon Mar 29 17:15:41 2010 Sending START message to 1 client(s). +Mon Mar 29 17:15:41 2010 Completed. +Mon Mar 29 17:20:41 2010 Sending STOP message to 1 client(s). +Mon Mar 29 17:20:41 2010 Completed. +Mon Mar 29 17:20:41 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 17:20:52 2010 Received. +Mon Mar 29 17:20:52 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 17:20:52 2010 Completed. +Mon Mar 29 17:20:52 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 17:20:53 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 520 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 520 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:20:53 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 40669 40669 0 0.27 1.25 0.01 4.0% +setattr 4.0% 4.0% 6254 6254 0 0.36 4.71 0.05 0.8% +lookup 24.0% 24.0% 37722 37722 0 0.29 2.08 0.01 4.0% +readlink 1.0% 1.0% 1533 1533 0 0.26 0.37 0.03 0.1% +read 18.0% 18.1% 28517 35182 0 3.68 21.15 0.05 38.5% +write 10.0% 10.1% 15858 19120 0 7.65 27.43 0.08 44.5% +create 1.0% 1.0% 1579 1579 0 6.85 34.88 0.29 4.0% +remove 1.0% 1.0% 1517 1517 0 0.47 0.48 0.04 0.3% +readdir 1.0% 0.9% 1492 1492 0 0.46 0.36 0.03 0.3% +fsstat 1.0% 0.9% 1490 1490 0 0.26 0.32 0.03 0.1% +access 11.0% 11.1% 17477 17477 0 0.27 1.84 0.02 1.7% +readdirplus 2.0% 2.0% 3151 3151 0 1.43 3.24 0.06 1.7% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 524 Ops/Sec AVG. RESPONSE TIME: 1.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 520 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 157259 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 167186 +PHYSICAL NFS IO THROUGHPUT: 557 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3426.7 MB (100.00% to 110.06% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:20:54 PDT 2010 +************************************************************************ +Mon Mar 29 17:20:54 PDT 2010 +************************************************************************ +Mon Mar 29 17:20:54 PDT 2010 Test Run 14 of 20 + +Mon Mar 29 17:20:54 PDT 2010 Mon Mar 29 17:20:54 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 17:20:54 PDT 2010 sfsnfs3 -N 1 -l 560 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 17:21:09 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 17:21:10 2010 Received. +Mon Mar 29 17:21:10 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 17:21:10 2010 Completed. +Mon Mar 29 17:21:10 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 17:21:31 2010 Received. +Mon Mar 29 17:21:31 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 17:21:31 2010 Completed. +Mon Mar 29 17:21:31 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 17:26:32 2010 Received. +Mon Mar 29 17:26:32 2010 Sending START message to 1 client(s). +Mon Mar 29 17:26:32 2010 Completed. +Mon Mar 29 17:31:32 2010 Sending STOP message to 1 client(s). +Mon Mar 29 17:31:32 2010 Completed. +Mon Mar 29 17:31:32 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 17:31:43 2010 Received. +Mon Mar 29 17:31:43 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 17:31:43 2010 Completed. +Mon Mar 29 17:31:43 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 17:31:44 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 560 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 560 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:31:44 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 3.8% 6397 6397 133153 0.25 0.34 0.01 3.7% +setattr 4.0% 0.6% 991 991 20189 0.27 0.43 0.04 0.6% +lookup 24.0% 3.7% 6241 6241 122440 0.27 0.37 0.02 3.8% +readlink 1.0% 0.1% 243 243 5098 0.25 0.27 0.07 0.1% +read 18.0% 57.4% 96850 5665 1 0.17 4.01 0.01 37.5% +write 10.0% 31.8% 53743 3302 0 0.36 4.96 0.02 44.8% +create 1.0% 0.2% 255 255 10981 7.87 32.61 0.70 4.6% +remove 1.0% 0.1% 251 251 4999 0.46 0.54 0.09 0.3% +readdir 1.0% 0.1% 233 233 5221 0.51 0.46 0.09 0.3% +fsstat 1.0% 0.2% 293 293 5185 0.24 0.30 0.06 0.2% +access 11.0% 1.7% 2786 2786 56037 0.32 3.80 0.07 2.0% +readdirplus 2.0% 0.3% 499 499 10357 1.80 4.89 0.19 2.1% +------------------------------------------------------------------------------------- +INVALID RUN reported for Client 1 (c09-44.sysnet.ucsd.edu). +INVALID RUN, Op mix missed + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 564 Ops/Sec AVG. RESPONSE TIME: 0.2 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 560 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 168782 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 27156 +PHYSICAL NFS IO THROUGHPUT: 90 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:31:46 PDT 2010 +************************************************************************ +Mon Mar 29 17:31:46 PDT 2010 +************************************************************************ +Mon Mar 29 17:31:46 PDT 2010 Test Run 15 of 20 + +Mon Mar 29 17:31:46 PDT 2010 Mon Mar 29 17:31:46 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 17:31:46 PDT 2010 sfsnfs3 -N 1 -l 600 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 17:32:01 2010 Waiting on DONE-MOUNT message from 1 client(s). + +../binaries/linux-x86/sfs_prime: Prime Client got too many signals - expected 1 got 1000 + +../binaries/linux-x86/sfs_prime: Unable to perform remote procedure on c09-44.sysnet.ucsd.edu . +Mon Mar 29 17:32:23 PDT 2010 ERROR: SfsManager: sfs_prime returned error code: 51, exiting +Mon Mar 29 17:35:30 PDT 2010 INVALID RUN: Configuration parameter FILE_COUNT + valid run requires 0 + configuration file specified 20000 +Mon Mar 29 17:35:30 PDT 2010 ERROR: Configuration parameters failed validation + +Mon Mar 29 17:35:30 PDT 2010 ======================================================================== +SFS Benchmark Prime Client Logfile. + Creation Date: Mon Mar 29 17:35:30 PDT 2010 + Prime Client hostname: c09-44.sysnet.ucsd.edu +Mon Mar 29 17:35:35 PDT 2010 Number of Clients: 1 + Client hostname(s): c09-44.sysnet.ucsd.edu + +Mon Mar 29 17:35:35 PDT 2010 SfsManager: Started sfs_syncd on c09-44.sysnet.ucsd.edu +Mon Mar 29 17:35:45 PDT 2010 +************************************************************************ +Mon Mar 29 17:35:45 PDT 2010 Test Run 1 of 10 + +Mon Mar 29 17:35:45 PDT 2010 Mon Mar 29 17:35:45 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 17:35:45 PDT 2010 sfsnfs3 -N 1 -l 560 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 17:36:00 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 17:36:01 2010 Received. +Mon Mar 29 17:36:01 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 17:36:01 2010 Completed. +Mon Mar 29 17:36:01 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 17:36:28 2010 Received. +Mon Mar 29 17:36:28 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 17:36:28 2010 Completed. +Mon Mar 29 17:36:28 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 17:41:29 2010 Received. +Mon Mar 29 17:41:29 2010 Sending START message to 1 client(s). +Mon Mar 29 17:41:29 2010 Completed. +Mon Mar 29 17:46:29 2010 Sending STOP message to 1 client(s). +Mon Mar 29 17:46:29 2010 Completed. +Mon Mar 29 17:46:29 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 17:46:40 2010 Received. +Mon Mar 29 17:46:40 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 17:46:40 2010 Completed. +Mon Mar 29 17:46:40 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 17:46:41 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 560 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 560 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:46:41 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 44225 44225 0 0.20 1.13 0.01 4.2% +setattr 4.0% 4.0% 6829 6829 0 0.20 0.12 0.01 0.7% +lookup 24.0% 23.8% 40336 40336 0 0.21 1.53 0.01 4.1% +readlink 1.0% 1.0% 1644 1644 0 0.20 0.15 0.02 0.2% +read 18.0% 18.1% 30699 37594 0 2.30 20.37 0.05 33.2% +write 10.0% 10.0% 16981 20521 0 6.22 30.91 0.08 49.5% +create 1.0% 1.0% 1721 1721 0 5.49 31.17 0.26 4.4% +remove 1.0% 0.9% 1588 1588 0 0.34 0.09 0.02 0.3% +readdir 1.0% 1.0% 1660 1660 0 0.39 0.10 0.01 0.3% +fsstat 1.0% 1.0% 1679 1679 0 0.32 4.86 0.11 0.3% +access 11.0% 11.0% 18711 18711 0 0.20 0.11 0.00 1.7% +readdirplus 2.0% 2.0% 3455 3455 0 0.77 0.73 0.03 1.2% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 565 Ops/Sec AVG. RESPONSE TIME: 1.2 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 560 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 169528 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 179963 +PHYSICAL NFS IO THROUGHPUT: 599 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3426.1 MB (100.00% to 110.04% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:46:42 PDT 2010 +************************************************************************ +Mon Mar 29 17:46:42 PDT 2010 +************************************************************************ +Mon Mar 29 17:46:42 PDT 2010 Test Run 2 of 10 + +Mon Mar 29 17:46:42 PDT 2010 Mon Mar 29 17:46:42 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 17:46:42 PDT 2010 sfsnfs3 -N 1 -l 600 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 17:46:57 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 17:46:58 2010 Received. +Mon Mar 29 17:46:58 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 17:46:58 2010 Completed. +Mon Mar 29 17:46:58 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 17:47:16 2010 Received. +Mon Mar 29 17:47:16 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 17:47:16 2010 Completed. +Mon Mar 29 17:47:16 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 17:52:17 2010 Received. +Mon Mar 29 17:52:17 2010 Sending START message to 1 client(s). +Mon Mar 29 17:52:17 2010 Completed. +Mon Mar 29 17:57:17 2010 Sending STOP message to 1 client(s). +Mon Mar 29 17:57:17 2010 Completed. +Mon Mar 29 17:57:17 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 17:57:28 2010 Received. +Mon Mar 29 17:57:28 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 17:57:28 2010 Completed. +Mon Mar 29 17:57:28 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 17:57:29 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 600 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 600 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:57:29 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 47519 47519 0 0.22 1.96 0.01 3.4% +setattr 4.0% 4.1% 7429 7429 0 0.24 3.20 0.04 0.6% +lookup 24.0% 23.9% 43374 43374 0 0.21 0.99 0.01 3.1% +readlink 1.0% 1.0% 1804 1804 0 0.20 0.08 0.01 0.1% +read 18.0% 17.9% 32509 39899 0 3.63 23.76 0.05 38.9% +write 10.0% 10.0% 18210 22056 0 7.33 26.49 0.07 44.1% +create 1.0% 1.1% 1925 1925 0 10.86 48.22 0.31 6.9% +remove 1.0% 0.9% 1649 1649 0 0.34 0.08 0.01 0.2% +readdir 1.0% 1.0% 1831 1831 0 0.40 0.11 0.02 0.2% +fsstat 1.0% 1.0% 1806 1806 0 0.20 0.11 0.02 0.1% +access 11.0% 11.0% 19887 19887 0 0.21 1.44 0.02 1.4% +readdirplus 2.0% 2.0% 3647 3647 0 0.80 0.90 0.03 1.0% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 605 Ops/Sec AVG. RESPONSE TIME: 1.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 600 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 181590 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 192826 +PHYSICAL NFS IO THROUGHPUT: 642 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3430.3 MB (100.00% to 110.18% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:57:30 PDT 2010 +************************************************************************ +Mon Mar 29 17:57:30 PDT 2010 +************************************************************************ +Mon Mar 29 17:57:30 PDT 2010 Test Run 3 of 10 + +Mon Mar 29 17:57:30 PDT 2010 Mon Mar 29 17:57:30 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 17:57:30 PDT 2010 sfsnfs3 -N 1 -l 640 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 17:57:45 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 17:57:46 2010 Received. +Mon Mar 29 17:57:46 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 17:57:46 2010 Completed. +Mon Mar 29 17:57:46 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 17:58:07 2010 Received. +Mon Mar 29 17:58:07 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 17:58:07 2010 Completed. +Mon Mar 29 17:58:07 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 18:03:08 2010 Received. +Mon Mar 29 18:03:08 2010 Sending START message to 1 client(s). +Mon Mar 29 18:03:08 2010 Completed. +Mon Mar 29 18:08:08 2010 Sending STOP message to 1 client(s). +Mon Mar 29 18:08:08 2010 Completed. +Mon Mar 29 18:08:08 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 18:08:19 2010 Received. +Mon Mar 29 18:08:19 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 18:08:19 2010 Completed. +Mon Mar 29 18:08:19 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 18:08:20 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 640 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 640 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 18:08:20 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 6.3% 12132 12132 135138 0.22 0.41 0.01 4.2% +setattr 4.0% 1.0% 1881 1881 20931 0.22 0.20 0.02 0.6% +lookup 24.0% 5.8% 11150 11150 125250 0.23 0.41 0.01 4.0% +readlink 1.0% 0.3% 501 501 5229 0.21 0.13 0.03 0.2% +read 18.0% 53.0% 102407 10308 0 0.24 4.72 0.01 38.9% +write 10.0% 29.6% 57190 5584 0 0.48 5.44 0.02 43.1% +create 1.0% 0.2% 441 441 11631 7.49 32.24 0.53 5.2% +remove 1.0% 0.3% 501 501 5379 0.37 0.32 0.05 0.3% +readdir 1.0% 0.2% 481 481 5174 0.41 0.21 0.04 0.3% +fsstat 1.0% 0.2% 473 473 5230 0.21 0.15 0.03 0.2% +access 11.0% 2.6% 5059 5059 57679 0.22 0.25 0.01 1.8% +readdirplus 2.0% 0.5% 899 899 10464 0.89 1.24 0.07 1.2% +------------------------------------------------------------------------------------- +INVALID RUN reported for Client 1 (c09-44.sysnet.ucsd.edu). +INVALID RUN, Op mix missed + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 646 Ops/Sec AVG. RESPONSE TIME: 0.3 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 640 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 193115 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 49410 +PHYSICAL NFS IO THROUGHPUT: 165 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 18:08:21 PDT 2010 +************************************************************************ +Mon Mar 29 18:08:21 PDT 2010 +************************************************************************ +Mon Mar 29 18:08:21 PDT 2010 Test Run 4 of 10 + +Mon Mar 29 18:08:21 PDT 2010 Mon Mar 29 18:08:21 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 18:08:21 PDT 2010 sfsnfs3 -N 1 -l 680 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 18:08:36 2010 Waiting on DONE-MOUNT message from 1 client(s). + +../binaries/linux-x86/sfs_prime: Prime Client got too many signals - expected 1 got 1000 + +../binaries/linux-x86/sfs_prime: Unable to perform remote procedure on c09-44.sysnet.ucsd.edu . +Mon Mar 29 18:08:58 PDT 2010 ERROR: SfsManager: sfs_prime returned error code: 51, exiting +Mon Mar 29 21:56:36 PDT 2010 INVALID RUN: Configuration parameter FILE_COUNT + valid run requires 0 + configuration file specified 20000 +Mon Mar 29 21:56:36 PDT 2010 ERROR: Configuration parameters failed validation + +Mon Mar 29 21:56:36 PDT 2010 ======================================================================== +SFS Benchmark Prime Client Logfile. + Creation Date: Mon Mar 29 21:56:36 PDT 2010 + Prime Client hostname: c09-44.sysnet.ucsd.edu +Mon Mar 29 21:56:41 PDT 2010 Number of Clients: 1 + Client hostname(s): c09-44.sysnet.ucsd.edu + +Mon Mar 29 21:56:41 PDT 2010 SfsManager: Started sfs_syncd on c09-44.sysnet.ucsd.edu +Mon Mar 29 21:56:51 PDT 2010 +************************************************************************ +Mon Mar 29 21:56:51 PDT 2010 Test Run 1 of 8 + +Mon Mar 29 21:56:51 PDT 2010 Mon Mar 29 21:56:51 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 21:56:51 PDT 2010 sfsnfs3 -N 1 -l 640 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 21:57:06 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 21:57:07 2010 Received. +Mon Mar 29 21:57:07 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 21:57:07 2010 Completed. +Mon Mar 29 21:57:07 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 22:01:10 2010 Received. +Mon Mar 29 22:01:10 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 22:01:10 2010 Completed. +Mon Mar 29 22:01:10 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 22:06:11 2010 Received. +Mon Mar 29 22:06:11 2010 Sending START message to 1 client(s). +Mon Mar 29 22:06:11 2010 Completed. +Mon Mar 29 22:11:11 2010 Sending STOP message to 1 client(s). +Mon Mar 29 22:11:11 2010 Completed. +Mon Mar 29 22:11:11 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 22:11:22 2010 Received. +Mon Mar 29 22:11:22 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 22:11:22 2010 Completed. +Mon Mar 29 22:11:22 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 22:11:23 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 640 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 640 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:11:23 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 50412 50412 0 0.19 0.88 0.01 5.0% +setattr 4.0% 4.0% 7720 7720 0 0.19 0.13 0.01 0.8% +lookup 24.0% 24.1% 46730 46730 0 0.20 0.14 0.00 4.7% +readlink 1.0% 1.0% 1958 1958 0 0.20 0.24 0.02 0.2% +read 18.0% 17.9% 34767 42650 0 1.76 10.88 0.03 31.3% +write 10.0% 10.1% 19558 23716 0 4.96 15.92 0.06 49.5% +create 1.0% 1.0% 1916 1916 0 4.13 22.25 0.21 4.0% +remove 1.0% 0.7% 1420 1420 0 0.34 0.15 0.02 0.2% +readdir 1.0% 1.0% 1882 1882 0 0.39 0.17 0.02 0.4% +fsstat 1.0% 1.0% 2024 2024 0 0.20 0.16 0.02 0.2% +access 11.0% 11.1% 21430 21430 0 0.20 1.36 0.02 2.2% +readdirplus 2.0% 2.0% 3885 3885 0 0.72 1.09 0.03 1.4% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 648 Ops/Sec AVG. RESPONSE TIME: 1.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 640 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 193702 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 205743 +PHYSICAL NFS IO THROUGHPUT: 688 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3425.0 MB (100.00% to 110.01% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:11:24 PDT 2010 +************************************************************************ +Mon Mar 29 22:11:24 PDT 2010 +************************************************************************ +Mon Mar 29 22:11:24 PDT 2010 Test Run 2 of 8 + +Mon Mar 29 22:11:24 PDT 2010 Mon Mar 29 22:11:24 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 22:11:24 PDT 2010 sfsnfs3 -N 1 -l 680 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 22:11:39 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 22:11:40 2010 Received. +Mon Mar 29 22:11:40 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 22:11:40 2010 Completed. +Mon Mar 29 22:11:40 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 22:12:00 2010 Received. +Mon Mar 29 22:12:00 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 22:12:00 2010 Completed. +Mon Mar 29 22:12:00 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 22:17:01 2010 Received. +Mon Mar 29 22:17:01 2010 Sending START message to 1 client(s). +Mon Mar 29 22:17:01 2010 Completed. +Mon Mar 29 22:22:01 2010 Sending STOP message to 1 client(s). +Mon Mar 29 22:22:01 2010 Completed. +Mon Mar 29 22:22:01 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 22:22:12 2010 Received. +Mon Mar 29 22:22:12 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 22:22:12 2010 Completed. +Mon Mar 29 22:22:12 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 22:22:13 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 680 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 680 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:22:13 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 53651 53651 0 0.20 1.09 0.01 4.1% +setattr 4.0% 4.0% 8298 8298 0 0.20 0.19 0.01 0.6% +lookup 24.0% 24.1% 49849 49849 0 0.22 1.45 0.01 4.1% +readlink 1.0% 1.0% 2074 2074 0 0.20 0.17 0.02 0.2% +read 18.0% 18.0% 37238 45680 0 2.55 16.95 0.04 36.5% +write 10.0% 10.1% 20852 25251 0 5.81 21.56 0.06 46.6% +create 1.0% 1.0% 2119 2119 0 4.87 28.98 0.23 4.0% +remove 1.0% 0.8% 1586 1586 0 0.36 0.22 0.02 0.2% +readdir 1.0% 1.0% 2030 2030 0 0.40 0.18 0.02 0.3% +fsstat 1.0% 1.0% 2121 2121 0 0.20 0.15 0.02 0.2% +access 11.0% 11.1% 22875 22875 0 0.22 1.87 0.02 1.9% +readdirplus 2.0% 2.0% 4186 4186 0 0.80 1.39 0.04 1.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 690 Ops/Sec AVG. RESPONSE TIME: 1.2 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 680 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 206879 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 219720 +PHYSICAL NFS IO THROUGHPUT: 732 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3427.5 MB (100.00% to 110.09% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:22:14 PDT 2010 +************************************************************************ +Mon Mar 29 22:22:14 PDT 2010 +************************************************************************ +Mon Mar 29 22:22:14 PDT 2010 Test Run 3 of 8 + +Mon Mar 29 22:22:14 PDT 2010 Mon Mar 29 22:22:14 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 22:22:14 PDT 2010 sfsnfs3 -N 1 -l 720 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 22:22:29 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 22:22:30 2010 Received. +Mon Mar 29 22:22:30 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 22:22:30 2010 Completed. +Mon Mar 29 22:22:30 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 22:22:42 2010 Received. +Mon Mar 29 22:22:42 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 22:22:42 2010 Completed. +Mon Mar 29 22:22:42 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 22:27:43 2010 Received. +Mon Mar 29 22:27:43 2010 Sending START message to 1 client(s). +Mon Mar 29 22:27:43 2010 Completed. +Mon Mar 29 22:32:43 2010 Sending STOP message to 1 client(s). +Mon Mar 29 22:32:43 2010 Completed. +Mon Mar 29 22:32:43 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 22:32:54 2010 Received. +Mon Mar 29 22:32:54 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 22:32:54 2010 Completed. +Mon Mar 29 22:32:54 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 22:32:55 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 720 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 720 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:32:55 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 57201 57201 0 0.25 1.94 0.01 6.2% +setattr 4.0% 4.0% 8799 8799 0 0.27 2.56 0.03 1.0% +lookup 24.0% 24.1% 52813 52813 0 0.27 2.37 0.01 6.1% +readlink 1.0% 1.0% 2195 2195 0 0.23 0.26 0.02 0.2% +read 18.0% 18.2% 39838 48943 0 1.85 7.61 0.03 31.6% +write 10.0% 9.9% 21703 26233 0 5.03 14.07 0.05 46.9% +create 1.0% 1.0% 2152 2152 0 2.58 14.15 0.16 2.4% +remove 1.0% 0.7% 1452 1452 0 0.39 0.37 0.03 0.2% +readdir 1.0% 1.0% 2201 2201 0 0.56 5.04 0.09 0.5% +fsstat 1.0% 1.0% 2194 2194 0 0.24 0.31 0.02 0.2% +access 11.0% 11.0% 23991 23991 0 0.24 1.47 0.02 2.5% +readdirplus 2.0% 2.0% 4362 4362 0 1.10 2.40 0.05 2.1% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 730 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 720 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 218901 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 232536 +PHYSICAL NFS IO THROUGHPUT: 775 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3425.4 MB (100.00% to 110.02% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:32:56 PDT 2010 +************************************************************************ +Mon Mar 29 22:32:56 PDT 2010 +************************************************************************ +Mon Mar 29 22:32:56 PDT 2010 Test Run 4 of 8 + +Mon Mar 29 22:32:56 PDT 2010 Mon Mar 29 22:32:56 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 22:32:56 PDT 2010 sfsnfs3 -N 1 -l 760 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 22:33:11 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 22:33:12 2010 Received. +Mon Mar 29 22:33:12 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 22:33:12 2010 Completed. +Mon Mar 29 22:33:12 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 22:33:32 2010 Received. +Mon Mar 29 22:33:32 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 22:33:32 2010 Completed. +Mon Mar 29 22:33:32 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 22:38:33 2010 Received. +Mon Mar 29 22:38:33 2010 Sending START message to 1 client(s). +Mon Mar 29 22:38:33 2010 Completed. +Mon Mar 29 22:43:33 2010 Sending STOP message to 1 client(s). +Mon Mar 29 22:43:33 2010 Completed. +Mon Mar 29 22:43:33 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 22:43:44 2010 Received. +Mon Mar 29 22:43:44 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 22:43:44 2010 Completed. +Mon Mar 29 22:43:44 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 22:43:45 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 760 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 760 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:43:45 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 60390 60390 0 0.26 1.71 0.01 4.6% +setattr 4.0% 3.9% 8954 8954 0 0.28 2.60 0.03 0.8% +lookup 24.0% 24.1% 55605 55605 0 0.26 0.94 0.01 4.4% +readlink 1.0% 1.0% 2300 2300 0 0.35 4.97 0.09 0.2% +read 18.0% 18.0% 41448 51036 0 3.17 22.46 0.05 39.0% +write 10.0% 10.0% 23006 27867 0 6.24 25.74 0.07 42.6% +create 1.0% 1.0% 2364 2364 0 5.67 31.37 0.23 4.0% +remove 1.0% 0.7% 1625 1625 0 0.41 0.40 0.03 0.2% +readdir 1.0% 1.0% 2301 2301 0 0.44 0.32 0.02 0.3% +fsstat 1.0% 1.0% 2327 2327 0 0.24 0.33 0.02 0.2% +access 11.0% 11.1% 25490 25490 0 0.25 1.26 0.01 1.9% +readdirplus 2.0% 2.0% 4655 4655 0 1.34 5.53 0.07 1.9% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 768 Ops/Sec AVG. RESPONSE TIME: 1.5 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 760 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 230465 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 244914 +PHYSICAL NFS IO THROUGHPUT: 816 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3425.3 MB (100.00% to 110.02% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:43:46 PDT 2010 +************************************************************************ +Mon Mar 29 22:43:46 PDT 2010 +************************************************************************ +Mon Mar 29 22:43:46 PDT 2010 Test Run 5 of 8 + +Mon Mar 29 22:43:46 PDT 2010 Mon Mar 29 22:43:46 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 22:43:46 PDT 2010 sfsnfs3 -N 1 -l 800 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 22:44:01 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 22:44:02 2010 Received. +Mon Mar 29 22:44:02 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 22:44:02 2010 Completed. +Mon Mar 29 22:44:02 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 22:44:23 2010 Received. +Mon Mar 29 22:44:23 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 22:44:23 2010 Completed. +Mon Mar 29 22:44:23 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 22:49:24 2010 Received. +Mon Mar 29 22:49:24 2010 Sending START message to 1 client(s). +Mon Mar 29 22:49:24 2010 Completed. +Mon Mar 29 22:54:24 2010 Sending STOP message to 1 client(s). +Mon Mar 29 22:54:24 2010 Completed. +Mon Mar 29 22:54:24 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 22:54:35 2010 Received. +Mon Mar 29 22:54:35 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 22:54:35 2010 Completed. +Mon Mar 29 22:54:35 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 22:54:36 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 800 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 800 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:54:36 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 63316 63316 0 0.27 1.87 0.01 4.5% +setattr 4.0% 4.0% 9680 9680 0 0.26 0.41 0.01 0.7% +lookup 24.0% 24.1% 58485 58485 0 0.27 1.09 0.01 4.3% +readlink 1.0% 1.0% 2397 2397 0 0.47 7.37 0.11 0.3% +read 18.0% 18.1% 43767 53444 0 3.24 23.09 0.05 38.1% +write 10.0% 10.0% 24244 29478 0 6.50 24.46 0.06 42.4% +create 1.0% 1.0% 2493 2493 0 7.90 43.64 0.26 5.3% +remove 1.0% 0.6% 1502 1502 0 0.40 0.40 0.03 0.2% +readdir 1.0% 1.0% 2438 2438 0 0.57 4.94 0.09 0.4% +fsstat 1.0% 1.0% 2439 2439 0 0.24 0.27 0.02 0.2% +access 11.0% 11.0% 26706 26706 0 0.28 2.74 0.02 2.0% +readdirplus 2.0% 2.0% 4900 4900 0 1.21 2.75 0.05 1.6% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 811 Ops/Sec AVG. RESPONSE TIME: 1.5 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 800 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 242367 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 257278 +PHYSICAL NFS IO THROUGHPUT: 860 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3428.1 MB (100.00% to 110.11% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:54:37 PDT 2010 +************************************************************************ +Mon Mar 29 22:54:37 PDT 2010 +************************************************************************ +Mon Mar 29 22:54:37 PDT 2010 Test Run 6 of 8 + +Mon Mar 29 22:54:37 PDT 2010 Mon Mar 29 22:54:37 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 22:54:37 PDT 2010 sfsnfs3 -N 1 -l 840 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 22:54:52 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 22:54:53 2010 Received. +Mon Mar 29 22:54:53 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 22:54:53 2010 Completed. +Mon Mar 29 22:54:53 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 22:55:07 2010 Received. +Mon Mar 29 22:55:07 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 22:55:07 2010 Completed. +Mon Mar 29 22:55:07 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 23:00:08 2010 Received. +Mon Mar 29 23:00:08 2010 Sending START message to 1 client(s). +Mon Mar 29 23:00:08 2010 Completed. +Mon Mar 29 23:05:08 2010 Sending STOP message to 1 client(s). +Mon Mar 29 23:05:08 2010 Completed. +Mon Mar 29 23:05:08 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 23:05:19 2010 Received. +Mon Mar 29 23:05:19 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 23:05:19 2010 Completed. +Mon Mar 29 23:05:19 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 23:05:20 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 840 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 840 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 23:05:20 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 69832 69832 0 0.38 4.11 0.02 2.1% +setattr 4.0% 4.0% 10865 10865 0 0.41 4.55 0.04 0.3% +lookup 24.0% 24.0% 64416 64416 0 0.42 4.57 0.02 2.1% +readlink 1.0% 1.0% 2677 2677 0 0.31 0.47 0.03 0.1% +read 18.0% 18.1% 48718 59765 0 13.51 179.14 0.12 51.0% +write 10.0% 10.1% 27015 32868 0 13.42 151.28 0.15 28.1% +create 1.0% 1.0% 2696 2696 0 68.21 517.34 0.86 14.3% +remove 1.0% 0.6% 1652 1652 0 0.61 5.02 0.11 0.1% +readdir 1.0% 1.0% 2636 2636 0 0.53 0.46 0.03 0.1% +fsstat 1.0% 1.0% 2668 2668 0 0.40 4.77 0.08 0.1% +access 11.0% 11.1% 29931 29931 0 0.39 4.49 0.02 0.9% +readdirplus 2.0% 2.0% 5438 5438 0 1.92 9.42 0.08 0.8% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 898 Ops/Sec AVG. RESPONSE TIME: 4.8 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 840 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 268544 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 285444 +PHYSICAL NFS IO THROUGHPUT: 954 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3440.6 MB (100.00% to 110.51% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 23:05:21 PDT 2010 +************************************************************************ +Mon Mar 29 23:05:21 PDT 2010 +************************************************************************ +Mon Mar 29 23:05:21 PDT 2010 Test Run 7 of 8 + +Mon Mar 29 23:05:21 PDT 2010 Mon Mar 29 23:05:21 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 23:05:21 PDT 2010 sfsnfs3 -N 1 -l 880 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 23:05:36 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 23:05:37 2010 Received. +Mon Mar 29 23:05:37 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 23:05:37 2010 Completed. +Mon Mar 29 23:05:37 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 23:05:55 2010 Received. +Mon Mar 29 23:05:55 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 23:05:55 2010 Completed. +Mon Mar 29 23:05:55 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 23:10:56 2010 Received. +Mon Mar 29 23:10:56 2010 Sending START message to 1 client(s). +Mon Mar 29 23:10:56 2010 Completed. +Mon Mar 29 23:15:56 2010 Sending STOP message to 1 client(s). +Mon Mar 29 23:15:56 2010 Completed. +Mon Mar 29 23:15:56 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 23:16:07 2010 Received. +Mon Mar 29 23:16:07 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 23:16:07 2010 Completed. +Mon Mar 29 23:16:07 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 23:16:08 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 880 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 880 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 23:16:08 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.3% 71998 71998 0 0.39 4.03 0.01 2.4% +setattr 4.0% 4.0% 10931 10931 0 0.37 3.04 0.03 0.3% +lookup 24.0% 24.1% 66024 66024 0 0.41 3.74 0.01 2.3% +readlink 1.0% 1.0% 2716 2716 0 0.32 0.52 0.03 0.1% +read 18.0% 17.8% 48807 59917 0 11.11 178.08 0.12 46.2% +write 10.0% 10.1% 27547 33314 0 14.56 165.36 0.15 34.2% +create 1.0% 1.0% 2813 2813 0 51.65 427.72 0.76 12.4% +remove 1.0% 0.7% 1902 1902 0 0.53 0.65 0.04 0.1% +readdir 1.0% 1.0% 2789 2789 0 0.63 4.13 0.08 0.1% +fsstat 1.0% 1.0% 2806 2806 0 0.31 0.44 0.02 0.1% +access 11.0% 11.0% 30212 30212 0 0.38 3.80 0.02 1.0% +readdirplus 2.0% 2.0% 5489 5489 0 1.75 5.91 0.06 0.8% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 916 Ops/Sec AVG. RESPONSE TIME: 4.3 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 880 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 274034 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 290911 +PHYSICAL NFS IO THROUGHPUT: 972 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3435.5 MB (100.00% to 110.35% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 23:16:09 PDT 2010 +************************************************************************ +Mon Mar 29 23:16:09 PDT 2010 +************************************************************************ +Mon Mar 29 23:16:09 PDT 2010 Test Run 8 of 8 + +Mon Mar 29 23:16:09 PDT 2010 Mon Mar 29 23:16:09 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 23:16:09 PDT 2010 sfsnfs3 -N 1 -l 920 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 23:16:24 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 23:16:25 2010 Received. +Mon Mar 29 23:16:25 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 23:16:25 2010 Completed. +Mon Mar 29 23:16:25 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 23:16:43 2010 Received. +Mon Mar 29 23:16:43 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 23:16:43 2010 Completed. +Mon Mar 29 23:16:43 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 23:21:44 2010 Received. +Mon Mar 29 23:21:44 2010 Sending START message to 1 client(s). +Mon Mar 29 23:21:44 2010 Completed. +Mon Mar 29 23:26:44 2010 Sending STOP message to 1 client(s). +Mon Mar 29 23:26:44 2010 Completed. +Mon Mar 29 23:26:44 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 23:26:55 2010 Received. +Mon Mar 29 23:26:55 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 23:26:55 2010 Completed. +Mon Mar 29 23:26:55 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 23:26:56 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 920 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 920 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 23:26:56 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 0.0% 0 0 256992 0.00 0.00 0.00 0.0% +setattr 4.0% 0.0% 0 0 39733 0.00 0.00 0.00 0.0% +lookup 24.0% 0.0% 0 0 237161 0.00 0.00 0.00 0.0% +readlink 1.0% 0.0% 0 0 9945 0.00 0.00 0.00 0.0% +read 18.0% 64.3% 178196 178196 0 0.00 0.00 0.00 0.0% +write 10.0% 35.7% 98915 98915 0 0.00 0.00 0.00 0.0% +create 1.0% 0.0% 0 0 23905 0.00 0.00 0.00 0.0% +remove 1.0% 0.0% 0 0 9821 0.00 0.00 0.00 0.0% +readdir 1.0% 0.0% 0 0 9849 0.00 0.00 0.00 0.0% +fsstat 1.0% 0.0% 0 0 9998 0.00 0.00 0.00 0.0% +access 11.0% 0.0% 0 0 108769 0.00 0.00 0.00 0.0% +readdirplus 2.0% 0.0% 0 0 19641 0.00 0.00 0.00 0.0% +------------------------------------------------------------------------------------- +INVALID RUN reported for Client 1 (c09-44.sysnet.ucsd.edu). +INVALID RUN, Op mix missed + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 924 Ops/Sec AVG. RESPONSE TIME: 0.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 920 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 277111 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 277111 +PHYSICAL NFS IO THROUGHPUT: 923 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 23:26:57 PDT 2010 +************************************************************************ +Mon Mar 29 23:26:58 PDT 2010 ======================================================================== +Mon Mar 29 23:27:50 PDT 2010 INVALID RUN: Configuration parameter FILE_COUNT + valid run requires 0 + configuration file specified 20000 +Mon Mar 29 23:27:50 PDT 2010 ERROR: Configuration parameters failed validation + +Mon Mar 29 23:27:50 PDT 2010 ======================================================================== +SFS Benchmark Prime Client Logfile. + Creation Date: Mon Mar 29 23:27:50 PDT 2010 + Prime Client hostname: c09-44.sysnet.ucsd.edu +Mon Mar 29 23:27:55 PDT 2010 Number of Clients: 1 + Client hostname(s): c09-44.sysnet.ucsd.edu + +Mon Mar 29 23:27:55 PDT 2010 SfsManager: Started sfs_syncd on c09-44.sysnet.ucsd.edu +Mon Mar 29 23:37:47 PDT 2010 INVALID RUN: Configuration parameter FILE_COUNT + valid run requires 0 + configuration file specified 20000 +Mon Mar 29 23:37:47 PDT 2010 ERROR: Configuration parameters failed validation + +Mon Mar 29 23:37:47 PDT 2010 ======================================================================== +SFS Benchmark Prime Client Logfile. + Creation Date: Mon Mar 29 23:37:47 PDT 2010 + Prime Client hostname: c09-44.sysnet.ucsd.edu +Mon Mar 29 23:37:52 PDT 2010 Number of Clients: 1 + Client hostname(s): c09-44.sysnet.ucsd.edu + +Mon Mar 29 23:37:52 PDT 2010 SfsManager: Started sfs_syncd on c09-44.sysnet.ucsd.edu +Mon Mar 29 23:38:02 PDT 2010 +************************************************************************ +Mon Mar 29 23:38:02 PDT 2010 Test Run 1 of 15 + +Mon Mar 29 23:38:02 PDT 2010 Mon Mar 29 23:38:02 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 23:38:02 PDT 2010 sfsnfs3 -N 1 -l 920 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 23:38:17 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 23:38:18 2010 Received. +Mon Mar 29 23:38:18 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 23:38:18 2010 Completed. +Mon Mar 29 23:38:18 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 23:42:26 2010 Received. +Mon Mar 29 23:42:26 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 23:42:26 2010 Completed. +Mon Mar 29 23:42:26 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 23:47:27 2010 Received. +Mon Mar 29 23:47:27 2010 Sending START message to 1 client(s). +Mon Mar 29 23:47:27 2010 Completed. +Mon Mar 29 23:52:27 2010 Sending STOP message to 1 client(s). +Mon Mar 29 23:52:27 2010 Completed. +Mon Mar 29 23:52:27 2010 Waiting on DONE-TEST message from 1 client(s). +Mon Mar 29 23:52:38 2010 Received. +Mon Mar 29 23:52:38 2010 Sending MOVE-DATA message to 1 client(s). +Mon Mar 29 23:52:38 2010 Completed. +Mon Mar 29 23:52:38 2010 Waiting on SEND-DATA message from 1 client(s). +Mon Mar 29 23:52:39 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 920 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 920 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 23:52:39 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 72952 72952 0 0.22 2.26 0.01 5.1% +setattr 4.0% 4.0% 11260 11260 0 0.20 0.18 0.01 0.7% +lookup 24.0% 24.2% 67871 67871 0 0.21 1.11 0.01 4.5% +readlink 1.0% 1.0% 2742 2742 0 0.20 0.12 0.01 0.2% +read 18.0% 18.0% 50501 62343 0 2.17 15.17 0.03 34.6% +write 10.0% 9.9% 27776 33731 0 5.32 18.46 0.05 46.6% +create 1.0% 1.0% 2738 2738 0 4.85 29.06 0.20 4.2% +remove 1.0% 0.6% 1634 1634 0 0.34 0.12 0.02 0.2% +readdir 1.0% 1.0% 2758 2758 0 0.40 0.19 0.02 0.4% +fsstat 1.0% 1.0% 2863 2863 0 0.20 0.14 0.01 0.2% +access 11.0% 11.1% 31142 31142 0 0.21 1.35 0.01 2.0% +readdirplus 2.0% 2.0% 5688 5688 0 0.74 0.89 0.02 1.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 936 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 920 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 279925 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 297722 +PHYSICAL NFS IO THROUGHPUT: 995 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3426.9 MB (100.00% to 110.07% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 23:52:40 PDT 2010 +************************************************************************ +Mon Mar 29 23:52:40 PDT 2010 +************************************************************************ +Mon Mar 29 23:52:40 PDT 2010 Test Run 2 of 15 + +Mon Mar 29 23:52:40 PDT 2010 Mon Mar 29 23:52:40 PDT 2010 c09-44.sysnet.ucsd.edu start: +Mon Mar 29 23:52:40 PDT 2010 sfsnfs3 -N 1 -l 960 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Mon Mar 29 23:52:55 2010 Waiting on DONE-MOUNT message from 1 client(s). +Mon Mar 29 23:52:56 2010 Received. +Mon Mar 29 23:52:56 2010 Sending DO-INIT message to 1 client(s). +Mon Mar 29 23:52:56 2010 Completed. +Mon Mar 29 23:52:56 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Mon Mar 29 23:53:12 2010 Received. +Mon Mar 29 23:53:12 2010 Sending DO-WARMUP message to 1 client(s). +Mon Mar 29 23:53:12 2010 Completed. +Mon Mar 29 23:53:12 2010 Waiting on READY message from 1 client(s). +Mon Mar 29 23:58:13 2010 Received. +Mon Mar 29 23:58:13 2010 Sending START message to 1 client(s). +Mon Mar 29 23:58:13 2010 Completed. +Tue Mar 30 00:03:13 2010 Sending STOP message to 1 client(s). +Tue Mar 30 00:03:13 2010 Completed. +Tue Mar 30 00:03:13 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 00:03:24 2010 Received. +Tue Mar 30 00:03:24 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 00:03:24 2010 Completed. +Tue Mar 30 00:03:24 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 00:03:25 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 960 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 960 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:03:25 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 76392 76392 0 0.23 2.18 0.01 5.5% +setattr 4.0% 4.0% 11585 11585 0 0.24 2.19 0.03 0.8% +lookup 24.0% 24.1% 70617 70617 0 0.24 2.01 0.01 5.1% +readlink 1.0% 1.0% 2947 2947 0 0.22 0.28 0.02 0.2% +read 18.0% 18.1% 52986 65123 0 2.05 10.30 0.03 33.6% +write 10.0% 10.0% 29355 35392 0 5.09 15.59 0.05 46.2% +create 1.0% 1.0% 2968 2968 0 4.31 23.45 0.17 3.9% +remove 1.0% 0.5% 1575 1575 0 0.35 0.23 0.02 0.2% +readdir 1.0% 1.0% 3038 3038 0 0.42 0.28 0.02 0.4% +fsstat 1.0% 1.0% 3033 3033 0 0.28 3.57 0.07 0.3% +access 11.0% 11.1% 32432 32432 0 0.22 1.73 0.01 2.3% +readdirplus 2.0% 2.0% 5947 5947 0 0.82 1.38 0.03 1.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 980 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 960 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 292875 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 311049 +PHYSICAL NFS IO THROUGHPUT: 1040 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3426.2 MB (100.00% to 110.05% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:03:26 PDT 2010 +************************************************************************ +Tue Mar 30 00:03:26 PDT 2010 +************************************************************************ +Tue Mar 30 00:03:26 PDT 2010 Test Run 3 of 15 + +Tue Mar 30 00:03:26 PDT 2010 Tue Mar 30 00:03:26 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 00:03:26 PDT 2010 sfsnfs3 -N 1 -l 1000 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 00:03:41 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 00:03:42 2010 Received. +Tue Mar 30 00:03:42 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 00:03:42 2010 Completed. +Tue Mar 30 00:03:42 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 00:04:04 2010 Received. +Tue Mar 30 00:04:04 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 00:04:04 2010 Completed. +Tue Mar 30 00:04:04 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 00:09:05 2010 Received. +Tue Mar 30 00:09:05 2010 Sending START message to 1 client(s). +Tue Mar 30 00:09:05 2010 Completed. +Tue Mar 30 00:14:05 2010 Sending STOP message to 1 client(s). +Tue Mar 30 00:14:05 2010 Completed. +Tue Mar 30 00:14:05 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 00:14:17 2010 Received. +Tue Mar 30 00:14:17 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 00:14:17 2010 Completed. +Tue Mar 30 00:14:17 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 00:14:18 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1000 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1000 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:14:18 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 80437 80437 0 0.27 2.70 0.01 4.1% +setattr 4.0% 4.0% 12295 12295 0 0.25 0.36 0.01 0.6% +lookup 24.0% 23.9% 73347 73347 0 0.28 2.73 0.01 3.9% +readlink 1.0% 1.0% 3021 3021 0 0.24 0.31 0.02 0.1% +read 18.0% 18.1% 55481 68428 0 3.74 27.63 0.04 39.7% +write 10.0% 10.1% 30868 37425 0 7.08 30.32 0.06 41.7% +create 1.0% 1.0% 3091 3091 0 10.44 59.33 0.27 6.2% +remove 1.0% 0.5% 1597 1597 0 0.55 6.00 0.12 0.2% +readdir 1.0% 1.0% 3097 3097 0 0.52 4.36 0.07 0.3% +fsstat 1.0% 1.0% 3105 3105 0 0.31 3.60 0.07 0.2% +access 11.0% 11.1% 33956 33956 0 0.26 2.52 0.02 1.7% +readdirplus 2.0% 2.1% 6302 6302 0 1.07 4.23 0.05 1.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1025 Ops/Sec AVG. RESPONSE TIME: 1.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1000 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 306597 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 326101 +PHYSICAL NFS IO THROUGHPUT: 1090 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3430.2 MB (100.00% to 110.18% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:14:19 PDT 2010 +************************************************************************ +Tue Mar 30 00:14:19 PDT 2010 +************************************************************************ +Tue Mar 30 00:14:19 PDT 2010 Test Run 4 of 15 + +Tue Mar 30 00:14:19 PDT 2010 Tue Mar 30 00:14:19 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 00:14:19 PDT 2010 sfsnfs3 -N 1 -l 1040 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 00:14:34 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 00:14:35 2010 Received. +Tue Mar 30 00:14:35 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 00:14:35 2010 Completed. +Tue Mar 30 00:14:35 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 00:15:05 2010 Received. +Tue Mar 30 00:15:05 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 00:15:05 2010 Completed. +Tue Mar 30 00:15:05 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 00:20:06 2010 Received. +Tue Mar 30 00:20:06 2010 Sending START message to 1 client(s). +Tue Mar 30 00:20:06 2010 Completed. +Tue Mar 30 00:25:06 2010 Sending STOP message to 1 client(s). +Tue Mar 30 00:25:06 2010 Completed. +Tue Mar 30 00:25:06 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 00:25:19 2010 Received. +Tue Mar 30 00:25:19 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 00:25:19 2010 Completed. +Tue Mar 30 00:25:19 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 00:25:20 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1040 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1040 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:25:20 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 71306 71306 0 0.37 4.30 0.02 2.0% +setattr 4.0% 4.1% 11208 11208 0 0.41 5.10 0.04 0.3% +lookup 24.0% 24.1% 66091 66091 0 0.38 4.07 0.02 1.9% +readlink 1.0% 1.0% 2749 2749 0 0.36 3.87 0.07 0.1% +read 18.0% 18.0% 49342 60698 0 12.09 206.58 0.13 44.9% +write 10.0% 10.0% 27441 33165 0 15.07 169.12 0.15 31.1% +create 1.0% 1.0% 2773 2773 0 87.30 731.35 1.01 18.2% +remove 1.0% 0.7% 1910 1910 0 0.49 0.54 0.03 0.1% +readdir 1.0% 1.0% 2700 2700 0 0.53 0.47 0.03 0.1% +fsstat 1.0% 1.0% 2748 2748 0 0.52 7.37 0.10 0.1% +access 11.0% 11.1% 30322 30322 0 0.30 1.32 0.01 0.7% +readdirplus 2.0% 2.0% 5470 5470 0 1.31 3.55 0.05 0.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 914 Ops/Sec AVG. RESPONSE TIME: 4.8 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1040 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 274060 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 291140 +PHYSICAL NFS IO THROUGHPUT: 970 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:25:21 PDT 2010 +************************************************************************ +Tue Mar 30 00:25:21 PDT 2010 +************************************************************************ +Tue Mar 30 00:25:21 PDT 2010 Test Run 5 of 15 + +Tue Mar 30 00:25:21 PDT 2010 Tue Mar 30 00:25:21 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 00:25:21 PDT 2010 sfsnfs3 -N 1 -l 1080 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 00:25:36 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 00:25:37 2010 Received. +Tue Mar 30 00:25:37 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 00:25:37 2010 Completed. +Tue Mar 30 00:25:37 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 00:25:59 2010 Received. +Tue Mar 30 00:25:59 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 00:25:59 2010 Completed. +Tue Mar 30 00:25:59 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 00:31:00 2010 Received. +Tue Mar 30 00:31:00 2010 Sending START message to 1 client(s). +Tue Mar 30 00:31:00 2010 Completed. +Tue Mar 30 00:36:00 2010 Sending STOP message to 1 client(s). +Tue Mar 30 00:36:00 2010 Completed. +Tue Mar 30 00:36:00 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 00:36:11 2010 Received. +Tue Mar 30 00:36:11 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 00:36:11 2010 Completed. +Tue Mar 30 00:36:11 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 00:36:12 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1080 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1080 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:36:12 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 87341 87341 0 0.32 2.63 0.01 4.9% +setattr 4.0% 4.1% 13648 13648 0 0.34 2.97 0.03 0.8% +lookup 24.0% 24.0% 80255 80255 0 0.33 2.52 0.01 4.6% +readlink 1.0% 1.0% 3431 3431 0 0.28 0.47 0.02 0.2% +read 18.0% 18.1% 60394 74145 0 3.45 25.63 0.04 36.7% +write 10.0% 10.0% 33545 40578 0 7.03 28.44 0.06 41.5% +create 1.0% 1.0% 3277 3277 0 11.53 79.51 0.31 6.6% +remove 1.0% 0.5% 1814 1814 0 0.46 0.58 0.04 0.1% +readdir 1.0% 1.0% 3369 3369 0 0.50 0.49 0.02 0.3% +fsstat 1.0% 1.0% 3478 3478 0 0.36 4.24 0.07 0.2% +access 11.0% 11.0% 36630 36630 0 0.37 4.35 0.02 2.4% +readdirplus 2.0% 2.0% 6771 6771 0 1.43 3.95 0.05 1.7% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1117 Ops/Sec AVG. RESPONSE TIME: 1.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1080 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 333953 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 354737 +PHYSICAL NFS IO THROUGHPUT: 1186 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3430.5 MB (100.00% to 110.18% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:36:13 PDT 2010 +************************************************************************ +Tue Mar 30 00:36:13 PDT 2010 +************************************************************************ +Tue Mar 30 00:36:13 PDT 2010 Test Run 6 of 15 + +Tue Mar 30 00:36:13 PDT 2010 Tue Mar 30 00:36:13 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 00:36:13 PDT 2010 sfsnfs3 -N 1 -l 1120 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 00:36:28 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 00:36:29 2010 Received. +Tue Mar 30 00:36:29 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 00:36:29 2010 Completed. +Tue Mar 30 00:36:29 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 00:36:49 2010 Received. +Tue Mar 30 00:36:49 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 00:36:49 2010 Completed. +Tue Mar 30 00:36:49 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 00:41:50 2010 Received. +Tue Mar 30 00:41:50 2010 Sending START message to 1 client(s). +Tue Mar 30 00:41:50 2010 Completed. +Tue Mar 30 00:46:50 2010 Sending STOP message to 1 client(s). +Tue Mar 30 00:46:50 2010 Completed. +Tue Mar 30 00:46:50 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 00:47:10 2010 Received. +Tue Mar 30 00:47:10 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 00:47:10 2010 Completed. +Tue Mar 30 00:47:10 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 00:47:11 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1120 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1120 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:47:11 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 60035 60035 0 0.42 4.44 0.02 1.8% +setattr 4.0% 4.0% 9171 9171 0 0.47 5.32 0.05 0.3% +lookup 24.0% 24.0% 55030 55030 0 0.46 4.83 0.02 1.9% +readlink 1.0% 1.0% 2347 2347 0 0.46 5.96 0.10 0.1% +read 18.0% 18.1% 41512 51143 0 15.67 202.86 0.14 47.3% +write 10.0% 9.9% 22748 27675 0 20.40 223.15 0.19 33.8% +create 1.0% 1.0% 2309 2309 0 78.08 534.33 0.94 13.1% +remove 1.0% 0.7% 1675 1675 0 0.53 0.65 0.04 0.1% +readdir 1.0% 1.0% 2349 2349 0 0.71 5.28 0.09 0.1% +fsstat 1.0% 1.0% 2307 2307 0 0.60 8.09 0.12 0.1% +access 11.0% 11.0% 25195 25195 0 0.44 4.77 0.03 0.8% +readdirplus 2.0% 2.0% 4549 4549 0 1.79 6.79 0.08 0.6% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 762 Ops/Sec AVG. RESPONSE TIME: 6.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1120 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 229227 TEST TIME: 301 Sec +TOTAL PHYSICAL NFS OPERATIONS: 243785 +PHYSICAL NFS IO THROUGHPUT: 809 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:47:12 PDT 2010 +************************************************************************ +Tue Mar 30 00:47:12 PDT 2010 +************************************************************************ +Tue Mar 30 00:47:12 PDT 2010 Test Run 7 of 15 + +Tue Mar 30 00:47:12 PDT 2010 Tue Mar 30 00:47:12 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 00:47:12 PDT 2010 sfsnfs3 -N 1 -l 1160 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 00:47:27 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 00:47:28 2010 Received. +Tue Mar 30 00:47:28 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 00:47:28 2010 Completed. +Tue Mar 30 00:47:28 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 00:47:49 2010 Received. +Tue Mar 30 00:47:49 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 00:47:49 2010 Completed. +Tue Mar 30 00:47:49 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 00:52:50 2010 Received. +Tue Mar 30 00:52:50 2010 Sending START message to 1 client(s). +Tue Mar 30 00:52:50 2010 Completed. +Tue Mar 30 00:57:50 2010 Sending STOP message to 1 client(s). +Tue Mar 30 00:57:50 2010 Completed. +Tue Mar 30 00:57:50 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 00:59:01 2010 Received. +Tue Mar 30 00:59:01 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 00:59:01 2010 Completed. +Tue Mar 30 00:59:01 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 00:59:02 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1160 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1160 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:59:02 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 0.0% 0 0 3 0.00 0.00 0.00 0.0% +setattr 4.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +lookup 24.0% 0.0% 0 0 5 0.00 0.00 0.00 0.0% +readlink 1.0% 0.0% 0 0 1 0.00 0.00 0.00 0.0% +read 18.0% 0.0% 0 0 3 0.00 0.00 0.00 0.0% +write 10.0% 0.0% 0 0 2 0.00 0.00 0.00 0.0% +create 1.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +remove 1.0% 0.0% 0 0 1 0.00 0.00 0.00 0.0% +readdir 1.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +fsstat 1.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +access 11.0% 0.0% 0 0 2 0.00 0.00 0.00 0.0% +readdirplus 2.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +------------------------------------------------------------------------------------- +INVALID RUN reported for Client 1 (c09-44.sysnet.ucsd.edu). +INVALID RUN, Op mix missed + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 0 Ops/Sec AVG. RESPONSE TIME: 0.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1160 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 0 TEST TIME: 314 Sec +TOTAL PHYSICAL NFS OPERATIONS: 0 +PHYSICAL NFS IO THROUGHPUT: 0 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3113.5 MB (100.00% to 100.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:59:03 PDT 2010 +************************************************************************ +Tue Mar 30 00:59:03 PDT 2010 +************************************************************************ +Tue Mar 30 00:59:03 PDT 2010 Test Run 8 of 15 + +Tue Mar 30 00:59:03 PDT 2010 Tue Mar 30 00:59:03 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 00:59:03 PDT 2010 sfsnfs3 -N 1 -l 1200 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 00:59:18 2010 Waiting on DONE-MOUNT message from 1 client(s). + +../binaries/linux-x86/sfs_prime: Prime Client got too many signals - expected 1 got 1000 + +../binaries/linux-x86/sfs_prime: Unable to perform remote procedure on c09-44.sysnet.ucsd.edu . +Tue Mar 30 00:59:40 PDT 2010 ERROR: SfsManager: sfs_prime returned error code: 51, exiting +Tue Mar 30 08:31:01 PDT 2010 INVALID RUN: Configuration parameter FILE_COUNT + valid run requires 0 + configuration file specified 20000 +Tue Mar 30 08:31:01 PDT 2010 ERROR: Configuration parameters failed validation + +Tue Mar 30 08:31:01 PDT 2010 ======================================================================== +SFS Benchmark Prime Client Logfile. + Creation Date: Tue Mar 30 08:31:01 PDT 2010 + Prime Client hostname: c09-44.sysnet.ucsd.edu +Tue Mar 30 08:31:06 PDT 2010 Number of Clients: 1 + Client hostname(s): c09-44.sysnet.ucsd.edu + +Tue Mar 30 08:31:06 PDT 2010 SfsManager: Started sfs_syncd on c09-44.sysnet.ucsd.edu +Tue Mar 30 08:31:16 PDT 2010 +************************************************************************ +Tue Mar 30 08:31:16 PDT 2010 Test Run 1 of 5 + +Tue Mar 30 08:31:16 PDT 2010 Tue Mar 30 08:31:16 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 08:31:16 PDT 2010 sfsnfs3 -N 1 -l 1120 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 08:31:31 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 08:31:32 2010 Received. +Tue Mar 30 08:31:32 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 08:31:32 2010 Completed. +Tue Mar 30 08:31:32 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 08:35:37 2010 Received. +Tue Mar 30 08:35:37 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 08:35:37 2010 Completed. +Tue Mar 30 08:35:37 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 08:40:38 2010 Received. +Tue Mar 30 08:40:38 2010 Sending START message to 1 client(s). +Tue Mar 30 08:40:38 2010 Completed. +Tue Mar 30 08:45:38 2010 Sending STOP message to 1 client(s). +Tue Mar 30 08:45:38 2010 Completed. +Tue Mar 30 08:45:38 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 08:45:49 2010 Received. +Tue Mar 30 08:45:49 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 08:45:49 2010 Completed. +Tue Mar 30 08:45:49 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 08:45:50 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1120 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1120 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 08:45:50 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 89922 89922 0 0.21 1.43 0.01 5.2% +setattr 4.0% 4.1% 13927 13927 0 0.21 0.17 0.01 0.8% +lookup 24.0% 24.1% 82499 82499 0 0.22 1.50 0.01 5.0% +readlink 1.0% 1.0% 3328 3328 0 0.21 0.20 0.02 0.2% +read 18.0% 18.1% 62082 76576 0 1.92 10.71 0.03 32.6% +write 10.0% 10.0% 34266 41400 0 4.98 16.14 0.04 46.7% +create 1.0% 1.0% 3397 3397 0 5.32 28.43 0.18 5.0% +remove 1.0% 0.5% 1726 1726 0 0.35 0.22 0.02 0.2% +readdir 1.0% 1.0% 3411 3411 0 0.41 0.20 0.02 0.4% +fsstat 1.0% 1.0% 3477 3477 0 0.20 0.12 0.01 0.2% +access 11.0% 11.1% 37916 37916 0 0.23 2.49 0.02 2.4% +readdirplus 2.0% 2.0% 6943 6943 0 0.74 0.99 0.02 1.4% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1143 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1120 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 342894 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 364522 +PHYSICAL NFS IO THROUGHPUT: 1215 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3430.7 MB (100.00% to 110.19% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 08:45:51 PDT 2010 +************************************************************************ +Tue Mar 30 08:45:51 PDT 2010 +************************************************************************ +Tue Mar 30 08:45:51 PDT 2010 Test Run 2 of 5 + +Tue Mar 30 08:45:51 PDT 2010 Tue Mar 30 08:45:51 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 08:45:51 PDT 2010 sfsnfs3 -N 1 -l 1160 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 08:46:06 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 08:46:07 2010 Received. +Tue Mar 30 08:46:07 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 08:46:07 2010 Completed. +Tue Mar 30 08:46:07 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 08:46:28 2010 Received. +Tue Mar 30 08:46:28 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 08:46:28 2010 Completed. +Tue Mar 30 08:46:28 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 08:51:29 2010 Received. +Tue Mar 30 08:51:29 2010 Sending START message to 1 client(s). +Tue Mar 30 08:51:29 2010 Completed. +Tue Mar 30 08:56:29 2010 Sending STOP message to 1 client(s). +Tue Mar 30 08:56:29 2010 Completed. +Tue Mar 30 08:56:29 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 08:56:40 2010 Received. +Tue Mar 30 08:56:40 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 08:56:40 2010 Completed. +Tue Mar 30 08:56:40 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 08:56:41 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1160 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1160 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 08:56:41 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 93713 93713 0 0.27 2.75 0.01 5.1% +setattr 4.0% 4.0% 14480 14480 0 0.24 0.39 0.01 0.7% +lookup 24.0% 24.1% 86404 86404 0 0.27 2.43 0.01 4.8% +readlink 1.0% 1.0% 3565 3565 0 0.23 0.27 0.02 0.2% +read 18.0% 18.1% 64879 79766 0 2.72 20.35 0.03 36.3% +write 10.0% 10.0% 35960 43551 0 5.90 24.92 0.05 43.7% +create 1.0% 1.0% 3533 3533 0 6.85 44.01 0.22 5.0% +remove 1.0% 0.5% 1756 1756 0 0.38 0.31 0.03 0.1% +readdir 1.0% 1.0% 3641 3641 0 0.45 0.39 0.02 0.3% +fsstat 1.0% 1.0% 3627 3627 0 0.24 0.33 0.02 0.2% +access 11.0% 11.1% 39667 39667 0 0.26 2.52 0.02 2.1% +readdirplus 2.0% 2.0% 7119 7119 0 0.98 2.05 0.03 1.4% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1194 Ops/Sec AVG. RESPONSE TIME: 1.4 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1160 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 358344 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 380822 +PHYSICAL NFS IO THROUGHPUT: 1269 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3435.1 MB (100.00% to 110.33% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 08:56:42 PDT 2010 +************************************************************************ +Tue Mar 30 08:56:42 PDT 2010 +************************************************************************ +Tue Mar 30 08:56:42 PDT 2010 Test Run 3 of 5 + +Tue Mar 30 08:56:42 PDT 2010 Tue Mar 30 08:56:42 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 08:56:42 PDT 2010 sfsnfs3 -N 1 -l 1200 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 08:56:57 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 08:56:58 2010 Received. +Tue Mar 30 08:56:58 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 08:56:58 2010 Completed. +Tue Mar 30 08:56:58 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 08:57:19 2010 Received. +Tue Mar 30 08:57:19 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 08:57:19 2010 Completed. +Tue Mar 30 08:57:19 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 09:02:20 2010 Received. +Tue Mar 30 09:02:20 2010 Sending START message to 1 client(s). +Tue Mar 30 09:02:20 2010 Completed. +Tue Mar 30 09:07:20 2010 Sending STOP message to 1 client(s). +Tue Mar 30 09:07:20 2010 Completed. +Tue Mar 30 09:07:20 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 09:07:33 2010 Received. +Tue Mar 30 09:07:33 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 09:07:33 2010 Completed. +Tue Mar 30 09:07:33 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 09:07:34 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1200 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1200 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 09:07:34 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 89394 89394 0 0.35 3.77 0.01 2.3% +setattr 4.0% 4.0% 13755 13755 0 0.37 4.15 0.03 0.4% +lookup 24.0% 24.0% 82255 82255 0 0.36 3.66 0.01 2.2% +readlink 1.0% 1.0% 3503 3503 0 0.36 4.86 0.07 0.1% +read 18.0% 18.1% 61841 75603 0 9.64 130.30 0.09 44.8% +write 10.0% 9.9% 34024 41146 0 12.15 126.00 0.12 31.1% +create 1.0% 1.0% 3521 3521 0 64.38 464.63 0.71 17.0% +remove 1.0% 0.6% 2217 2217 0 0.58 5.09 0.09 0.1% +readdir 1.0% 1.0% 3449 3449 0 0.57 3.45 0.06 0.1% +fsstat 1.0% 1.0% 3433 3433 0 0.37 3.58 0.06 0.1% +access 11.0% 11.0% 37704 37704 0 0.34 3.66 0.02 1.0% +readdirplus 2.0% 2.0% 6937 6937 0 1.31 4.74 0.05 0.7% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1144 Ops/Sec AVG. RESPONSE TIME: 3.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1200 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 342033 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 362917 +PHYSICAL NFS IO THROUGHPUT: 1213 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 09:07:35 PDT 2010 +************************************************************************ +Tue Mar 30 09:07:35 PDT 2010 +************************************************************************ +Tue Mar 30 09:07:35 PDT 2010 Test Run 4 of 5 + +Tue Mar 30 09:07:35 PDT 2010 Tue Mar 30 09:07:35 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 09:07:35 PDT 2010 sfsnfs3 -N 1 -l 1240 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 09:07:50 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 09:07:51 2010 Received. +Tue Mar 30 09:07:51 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 09:07:51 2010 Completed. +Tue Mar 30 09:07:51 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 09:08:09 2010 Received. +Tue Mar 30 09:08:09 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 09:08:09 2010 Completed. +Tue Mar 30 09:08:09 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 09:13:10 2010 Received. +Tue Mar 30 09:13:10 2010 Sending START message to 1 client(s). +Tue Mar 30 09:13:10 2010 Completed. +Tue Mar 30 09:18:10 2010 Sending STOP message to 1 client(s). +Tue Mar 30 09:18:10 2010 Completed. +Tue Mar 30 09:18:10 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 09:18:23 2010 Received. +Tue Mar 30 09:18:23 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 09:18:23 2010 Completed. +Tue Mar 30 09:18:23 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 09:18:24 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1240 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1240 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 09:18:24 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 72208 72208 0 0.38 4.01 0.01 2.0% +setattr 4.0% 4.0% 11038 11038 0 0.41 4.23 0.04 0.3% +lookup 24.0% 24.1% 66776 66776 0 0.45 5.05 0.02 2.2% +readlink 1.0% 1.0% 2804 2804 0 0.54 7.51 0.10 0.1% +read 18.0% 18.1% 50192 61819 0 13.93 178.22 0.12 50.2% +write 10.0% 10.1% 27927 33607 0 14.86 151.62 0.14 29.8% +create 1.0% 1.0% 2839 2839 0 66.52 460.37 0.79 13.6% +remove 1.0% 0.6% 1619 1619 0 0.66 6.02 0.12 0.1% +readdir 1.0% 1.0% 2811 2811 0 0.61 4.04 0.07 0.1% +fsstat 1.0% 1.0% 2813 2813 0 0.43 5.51 0.09 0.1% +access 11.0% 11.0% 30589 30589 0 0.43 5.10 0.03 0.9% +readdirplus 2.0% 2.0% 5595 5595 0 1.46 4.62 0.06 0.6% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 927 Ops/Sec AVG. RESPONSE TIME: 5.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1240 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 277211 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 294518 +PHYSICAL NFS IO THROUGHPUT: 985 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 09:18:25 PDT 2010 +************************************************************************ +Tue Mar 30 09:18:25 PDT 2010 +************************************************************************ +Tue Mar 30 09:18:25 PDT 2010 Test Run 5 of 5 + +Tue Mar 30 09:18:25 PDT 2010 Tue Mar 30 09:18:25 PDT 2010 c09-44.sysnet.ucsd.edu start: +Tue Mar 30 09:18:25 PDT 2010 sfsnfs3 -N 1 -l 1280 -t 300 -a 30 -A 70 -R 2 -W 2 -D 30 -F 20000 -S 20 -Q -p 4 -w 300 -U 500 -g 500 -M c09-44.sysnet.ucsd.edu c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ c09-40.sysnet.ucsd.edu:/ + +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Executing SFS Benchmark on 1 Client(s). +Tue Mar 30 09:18:40 2010 Waiting on DONE-MOUNT message from 1 client(s). +Tue Mar 30 09:18:41 2010 Received. +Tue Mar 30 09:18:41 2010 Sending DO-INIT message to 1 client(s). +Tue Mar 30 09:18:41 2010 Completed. +Tue Mar 30 09:18:41 2010 Waiting on DONE-INIT message from 1 client(s) (timeout is 8000 seconds). +Tue Mar 30 09:19:00 2010 Received. +Tue Mar 30 09:19:00 2010 Sending DO-WARMUP message to 1 client(s). +Tue Mar 30 09:19:00 2010 Completed. +Tue Mar 30 09:19:00 2010 Waiting on READY message from 1 client(s). +Tue Mar 30 09:24:01 2010 Received. +Tue Mar 30 09:24:01 2010 Sending START message to 1 client(s). +Tue Mar 30 09:24:01 2010 Completed. +Tue Mar 30 09:29:01 2010 Sending STOP message to 1 client(s). +Tue Mar 30 09:29:01 2010 Completed. +Tue Mar 30 09:29:01 2010 Waiting on DONE-TEST message from 1 client(s). +Tue Mar 30 09:29:12 2010 Received. +Tue Mar 30 09:29:12 2010 Sending MOVE-DATA message to 1 client(s). +Tue Mar 30 09:29:12 2010 Completed. +Tue Mar 30 09:29:12 2010 Waiting on SEND-DATA message from 1 client(s). +Tue Mar 30 09:29:13 2010 Received. +SPEC SFS Benchmark Version 2008, Creation - 1 February 2008 +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1280 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1280 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 09:29:13 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 72990 72990 0 0.38 3.68 0.01 2.0% +setattr 4.0% 4.0% 11212 11212 0 0.42 4.23 0.04 0.3% +lookup 24.0% 24.0% 67276 67276 0 0.43 4.26 0.02 2.1% +readlink 1.0% 1.0% 2888 2888 0 0.40 3.76 0.07 0.1% +read 18.0% 18.2% 50900 62517 0 12.26 167.79 0.11 45.2% +write 10.0% 10.1% 28310 34437 0 15.64 161.50 0.15 32.1% +create 1.0% 1.0% 2790 2790 0 81.24 578.89 0.89 16.4% +remove 1.0% 0.6% 1750 1750 0 0.49 0.46 0.03 0.1% +readdir 1.0% 1.0% 2736 2736 0 0.55 0.54 0.03 0.1% +fsstat 1.0% 1.0% 2796 2796 0 0.32 0.52 0.03 0.1% +access 11.0% 11.1% 30989 30989 0 0.39 3.98 0.02 0.9% +readdirplus 2.0% 2.0% 5549 5549 0 1.59 5.39 0.06 0.6% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 940 Ops/Sec AVG. RESPONSE TIME: 4.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1280 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 280186 TEST TIME: 298 Sec +TOTAL PHYSICAL NFS OPERATIONS: 297930 +PHYSICAL NFS IO THROUGHPUT: 999 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 09:29:14 PDT 2010 +************************************************************************ +Tue Mar 30 09:29:14 PDT 2010 ======================================================================== diff --git a/results/bluesky/sfsres.bluesky b/results/bluesky/sfsres.bluesky new file mode 100644 index 0000000..2593fdd --- /dev/null +++ b/results/bluesky/sfsres.bluesky @@ -0,0 +1,2121 @@ +Mon Mar 29 14:44:27 PDT 2010 ************************************************************************ +Mon Mar 29 14:56:43 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 40 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 40 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:11:19 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 3108 3108 0 0.19 0.04 0.01 7.5% +setattr 4.0% 3.7% 446 446 0 0.19 0.01 0.01 1.1% +lookup 24.0% 23.7% 2846 2846 0 0.20 0.02 0.00 7.1% +readlink 1.0% 0.9% 112 112 0 0.19 0.01 0.02 0.3% +read 18.0% 18.3% 2193 2709 0 1.10 0.62 0.03 30.8% +write 10.0% 9.8% 1180 1432 0 3.00 10.05 0.18 45.0% +create 1.0% 1.2% 146 146 0 0.73 0.05 0.04 1.4% +remove 1.0% 1.1% 136 136 0 0.35 0.02 0.02 0.6% +readdir 1.0% 1.0% 117 117 0 0.38 0.03 0.03 0.6% +fsstat 1.0% 1.0% 118 118 0 0.19 0.01 0.02 0.3% +access 11.0% 11.2% 1348 1348 0 0.19 0.03 0.01 3.3% +readdirplus 2.0% 2.1% 252 252 0 0.68 0.03 0.02 2.2% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 40 Ops/Sec AVG. RESPONSE TIME: 0.6 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 40 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 12002 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 12770 +PHYSICAL NFS IO THROUGHPUT: 42 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3139.3 MB (100.00% to 100.83% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:11:20 PDT 2010 ************************************************************************ +Mon Mar 29 15:11:20 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 80 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 80 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:22:06 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 6232 6232 0 0.19 0.04 0.00 7.2% +setattr 4.0% 4.1% 995 995 0 0.19 0.02 0.01 1.2% +lookup 24.0% 24.3% 5839 5839 0 0.20 0.08 0.01 7.0% +readlink 1.0% 1.0% 244 244 0 0.19 0.02 0.02 0.3% +read 18.0% 18.0% 4327 5381 0 1.40 6.55 0.08 36.7% +write 10.0% 9.7% 2330 2762 0 2.83 9.85 0.13 40.2% +create 1.0% 0.9% 221 221 0 0.81 1.05 0.14 1.1% +remove 1.0% 0.9% 220 220 0 0.35 0.03 0.02 0.5% +readdir 1.0% 0.9% 220 220 0 0.39 0.03 0.02 0.5% +fsstat 1.0% 1.0% 230 230 0 0.19 0.01 0.01 0.3% +access 11.0% 11.1% 2653 2653 0 0.19 0.06 0.01 3.1% +readdirplus 2.0% 2.1% 494 494 0 0.69 0.20 0.04 2.1% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 80 Ops/Sec AVG. RESPONSE TIME: 0.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 80 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 24005 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 25491 +PHYSICAL NFS IO THROUGHPUT: 84 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3164.1 MB (100.00% to 101.63% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:22:07 PDT 2010 ************************************************************************ +Mon Mar 29 15:22:07 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 120 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 120 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:32:48 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 9346 9346 0 0.19 0.07 0.01 5.4% +setattr 4.0% 4.0% 1438 1438 0 0.19 0.07 0.01 0.8% +lookup 24.0% 24.3% 8743 8743 0 0.20 0.11 0.01 5.2% +readlink 1.0% 0.9% 330 330 0 0.19 0.02 0.01 0.2% +read 18.0% 17.9% 6456 7950 0 1.74 14.23 0.09 34.0% +write 10.0% 9.9% 3554 4281 0 4.48 14.65 0.13 48.3% +create 1.0% 1.0% 352 352 0 1.11 5.07 0.24 1.2% +remove 1.0% 0.9% 336 336 0 0.35 0.03 0.02 0.4% +readdir 1.0% 1.0% 351 351 0 0.39 0.12 0.04 0.4% +fsstat 1.0% 1.0% 375 375 0 0.19 0.05 0.02 0.2% +access 11.0% 11.3% 4061 4061 0 0.19 0.09 0.01 2.4% +readdirplus 2.0% 1.9% 698 698 0 0.70 0.26 0.04 1.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 120 Ops/Sec AVG. RESPONSE TIME: 0.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 120 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 36040 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 38261 +PHYSICAL NFS IO THROUGHPUT: 127 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3199.4 MB (100.00% to 102.76% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:32:49 PDT 2010 ************************************************************************ +Mon Mar 29 15:32:49 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 160 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 160 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:43:34 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 12588 12588 0 0.19 0.08 0.00 5.4% +setattr 4.0% 3.9% 1875 1875 0 0.20 0.04 0.01 0.8% +lookup 24.0% 24.3% 11660 11660 0 0.20 0.08 0.01 5.1% +readlink 1.0% 1.0% 481 481 0 0.19 0.06 0.02 0.2% +read 18.0% 18.0% 8653 10644 0 1.63 7.39 0.06 31.3% +write 10.0% 10.0% 4789 5882 0 4.78 12.85 0.10 51.0% +create 1.0% 0.9% 446 446 0 1.61 9.72 0.29 1.6% +remove 1.0% 1.0% 501 501 0 0.36 0.11 0.03 0.4% +readdir 1.0% 1.0% 476 476 0 0.39 0.08 0.03 0.4% +fsstat 1.0% 1.0% 473 473 0 0.19 0.06 0.02 0.2% +access 11.0% 10.8% 5195 5195 0 0.19 0.11 0.01 2.2% +readdirplus 2.0% 1.8% 884 884 0 0.70 0.35 0.04 1.4% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 161 Ops/Sec AVG. RESPONSE TIME: 0.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 160 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 48021 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 51105 +PHYSICAL NFS IO THROUGHPUT: 170 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3227.0 MB (100.00% to 103.65% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:43:35 PDT 2010 ************************************************************************ +Mon Mar 29 15:43:35 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 200 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 200 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 15:54:23 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 15762 15762 0 0.20 0.11 0.01 5.6% +setattr 4.0% 4.0% 2410 2410 0 0.20 0.10 0.01 0.9% +lookup 24.0% 23.7% 14277 14277 0 0.20 0.09 0.00 5.2% +readlink 1.0% 1.0% 608 608 0 0.20 0.16 0.03 0.2% +read 18.0% 18.0% 10841 13329 0 1.52 2.24 0.03 30.1% +write 10.0% 10.0% 6006 7220 0 4.74 11.96 0.09 52.0% +create 1.0% 1.1% 648 648 0 0.91 1.86 0.11 1.1% +remove 1.0% 1.0% 622 622 0 0.37 0.17 0.03 0.4% +readdir 1.0% 1.0% 592 592 0 0.40 0.13 0.03 0.4% +fsstat 1.0% 1.0% 581 581 0 0.20 0.11 0.03 0.2% +access 11.0% 10.9% 6577 6577 0 0.19 0.09 0.01 2.3% +readdirplus 2.0% 2.0% 1190 1190 0 0.71 0.30 0.03 1.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 200 Ops/Sec AVG. RESPONSE TIME: 0.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 200 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 60114 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 63816 +PHYSICAL NFS IO THROUGHPUT: 212 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3249.7 MB (100.00% to 104.38% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 15:54:24 PDT 2010 ************************************************************************ +Mon Mar 29 15:54:24 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 240 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 240 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:05:11 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 18882 18882 0 0.21 1.63 0.02 5.6% +setattr 4.0% 4.0% 2910 2910 0 0.20 0.11 0.01 0.8% +lookup 24.0% 24.2% 17428 17428 0 0.22 1.78 0.02 5.4% +readlink 1.0% 1.0% 695 695 0 0.20 0.10 0.02 0.2% +read 18.0% 17.8% 12868 15853 0 1.61 4.20 0.04 29.6% +write 10.0% 9.8% 7070 8547 0 5.16 15.55 0.09 52.1% +create 1.0% 1.0% 733 733 0 1.47 10.25 0.23 1.5% +remove 1.0% 1.1% 773 773 0 0.36 0.11 0.02 0.4% +readdir 1.0% 0.9% 683 683 0 0.39 0.07 0.02 0.4% +fsstat 1.0% 1.0% 716 716 0 0.19 0.05 0.02 0.2% +access 11.0% 11.0% 7954 7954 0 0.20 0.12 0.01 2.2% +readdirplus 2.0% 1.9% 1401 1401 0 0.75 0.69 0.04 1.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 240 Ops/Sec AVG. RESPONSE TIME: 1.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 240 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 72113 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 76575 +PHYSICAL NFS IO THROUGHPUT: 255 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3273.5 MB (100.00% to 105.14% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:05:12 PDT 2010 ************************************************************************ +Mon Mar 29 16:05:12 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 280 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 280 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:15:56 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 21918 21918 0 0.21 0.20 0.01 5.3% +setattr 4.0% 4.0% 3330 3330 0 0.22 0.23 0.02 0.8% +lookup 24.0% 24.2% 20349 20349 0 0.22 0.20 0.01 5.1% +readlink 1.0% 1.0% 866 866 0 0.23 0.26 0.03 0.2% +read 18.0% 17.9% 15077 18496 0 1.83 5.98 0.04 31.3% +write 10.0% 10.0% 8449 10272 0 5.29 16.30 0.09 50.7% +create 1.0% 1.0% 822 822 0 1.62 6.74 0.18 1.5% +remove 1.0% 1.0% 842 842 0 0.40 0.29 0.04 0.4% +readdir 1.0% 0.9% 800 800 0 0.42 0.25 0.03 0.4% +fsstat 1.0% 1.0% 821 821 0 0.22 0.24 0.03 0.2% +access 11.0% 11.0% 9279 9279 0 0.21 0.19 0.01 2.2% +readdirplus 2.0% 2.0% 1694 1694 0 0.94 1.80 0.06 1.8% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 281 Ops/Sec AVG. RESPONSE TIME: 1.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 280 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 84247 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 89489 +PHYSICAL NFS IO THROUGHPUT: 298 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3309.9 MB (100.00% to 106.31% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:15:57 PDT 2010 ************************************************************************ +Mon Mar 29 16:15:57 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 320 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 320 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:26:47 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 24847 24847 0 0.24 1.29 0.01 5.6% +setattr 4.0% 4.0% 3869 3869 0 0.25 0.35 0.02 0.9% +lookup 24.0% 24.2% 23183 23183 0 0.26 1.99 0.02 5.7% +readlink 1.0% 1.0% 949 949 0 0.23 0.26 0.03 0.2% +read 18.0% 18.1% 17338 21254 0 2.02 6.90 0.04 32.7% +write 10.0% 9.9% 9459 11335 0 5.39 16.43 0.08 47.6% +create 1.0% 1.0% 960 960 0 2.03 9.26 0.19 1.8% +remove 1.0% 1.0% 954 954 0 0.40 0.24 0.03 0.4% +readdir 1.0% 1.0% 946 946 0 0.44 0.37 0.04 0.4% +fsstat 1.0% 1.0% 953 953 0 0.24 0.31 0.04 0.2% +access 11.0% 11.1% 10613 10613 0 0.23 0.28 0.01 2.3% +readdirplus 2.0% 2.0% 1909 1909 0 1.27 3.02 0.08 2.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 320 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 320 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 95980 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 101772 +PHYSICAL NFS IO THROUGHPUT: 339 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3331.6 MB (100.00% to 107.01% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:26:48 PDT 2010 ************************************************************************ +Mon Mar 29 16:26:48 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 360 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 360 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:37:38 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 28146 28146 0 0.24 0.30 0.01 4.8% +setattr 4.0% 4.1% 4447 4447 0 0.25 0.34 0.02 0.8% +lookup 24.0% 23.9% 25827 25827 0 0.25 1.29 0.01 4.8% +readlink 1.0% 0.9% 1026 1026 0 0.25 0.32 0.03 0.2% +read 18.0% 18.1% 19612 23964 0 2.40 11.68 0.05 34.1% +write 10.0% 10.1% 10941 13274 0 5.95 18.23 0.08 47.2% +create 1.0% 1.0% 1072 1072 0 4.21 27.05 0.31 3.3% +remove 1.0% 1.0% 1055 1055 0 0.44 0.40 0.04 0.3% +readdir 1.0% 1.0% 1094 1094 0 0.43 0.23 0.03 0.3% +fsstat 1.0% 1.0% 1129 1129 0 0.23 0.28 0.03 0.2% +access 11.0% 10.9% 11774 11774 0 0.24 0.32 0.01 2.1% +readdirplus 2.0% 2.0% 2146 2146 0 1.23 3.20 0.08 1.9% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 361 Ops/Sec AVG. RESPONSE TIME: 1.3 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 360 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 108269 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 114954 +PHYSICAL NFS IO THROUGHPUT: 383 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3360.4 MB (100.00% to 107.93% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:37:39 PDT 2010 ************************************************************************ +Mon Mar 29 16:37:39 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 400 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 400 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:48:25 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 31328 31328 0 0.24 0.32 0.01 5.2% +setattr 4.0% 4.0% 4837 4837 0 0.25 0.32 0.02 0.8% +lookup 24.0% 24.0% 28917 28917 0 0.25 0.33 0.01 4.9% +readlink 1.0% 1.0% 1175 1175 0 0.24 0.32 0.03 0.2% +read 18.0% 17.9% 21541 26282 0 2.29 9.41 0.04 33.9% +write 10.0% 9.9% 11917 14324 0 5.75 15.73 0.07 47.0% +create 1.0% 1.0% 1197 1197 0 3.07 15.70 0.22 2.5% +remove 1.0% 1.0% 1167 1167 0 0.45 0.44 0.04 0.4% +readdir 1.0% 0.9% 1136 1136 0 0.47 0.48 0.04 0.4% +fsstat 1.0% 1.0% 1219 1219 0 0.23 0.32 0.03 0.2% +access 11.0% 11.2% 13475 13475 0 0.24 0.30 0.01 2.2% +readdirplus 2.0% 2.1% 2492 2492 0 1.34 3.30 0.07 2.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 401 Ops/Sec AVG. RESPONSE TIME: 1.2 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 400 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 120401 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 127549 +PHYSICAL NFS IO THROUGHPUT: 425 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3375.7 MB (100.00% to 108.43% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:48:26 PDT 2010 ************************************************************************ +Mon Mar 29 16:48:26 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 440 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 440 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 16:59:15 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 34698 34698 0 0.24 0.31 0.01 4.7% +setattr 4.0% 4.0% 5311 5311 0 0.25 0.30 0.01 0.7% +lookup 24.0% 23.8% 31619 31619 0 0.25 0.31 0.01 4.4% +readlink 1.0% 0.9% 1219 1219 0 0.25 0.33 0.03 0.2% +read 18.0% 18.1% 23965 29344 0 2.70 13.94 0.05 36.0% +write 10.0% 10.0% 13311 16095 0 6.26 21.04 0.08 46.3% +create 1.0% 1.0% 1301 1301 0 4.11 22.42 0.26 3.0% +remove 1.0% 1.0% 1317 1317 0 0.42 0.43 0.04 0.3% +readdir 1.0% 1.0% 1345 1345 0 0.44 0.26 0.03 0.3% +fsstat 1.0% 1.0% 1277 1277 0 0.23 0.23 0.03 0.2% +access 11.0% 11.0% 14539 14539 0 0.24 0.31 0.01 2.0% +readdirplus 2.0% 2.0% 2688 2688 0 1.32 3.06 0.07 2.0% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 443 Ops/Sec AVG. RESPONSE TIME: 1.4 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 440 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 132590 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 140753 +PHYSICAL NFS IO THROUGHPUT: 470 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3414.4 MB (100.00% to 109.67% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 16:59:16 PDT 2010 ************************************************************************ +Mon Mar 29 16:59:16 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 480 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 480 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:10:04 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 37800 37800 0 0.25 0.33 0.01 4.4% +setattr 4.0% 4.0% 5730 5730 0 0.26 0.35 0.02 0.7% +lookup 24.0% 24.0% 34832 34832 0 0.28 1.55 0.01 4.4% +readlink 1.0% 1.0% 1427 1427 0 0.26 0.34 0.03 0.2% +read 18.0% 18.0% 26094 32073 0 2.91 14.97 0.05 35.2% +write 10.0% 10.0% 14537 17448 0 6.84 27.57 0.09 46.0% +create 1.0% 1.0% 1401 1401 0 6.99 52.86 0.38 4.5% +remove 1.0% 1.0% 1390 1390 0 0.44 0.41 0.03 0.3% +readdir 1.0% 1.0% 1501 1501 0 0.46 0.39 0.03 0.3% +fsstat 1.0% 1.0% 1481 1481 0 0.25 0.31 0.03 0.2% +access 11.0% 10.9% 15804 15804 0 0.25 0.36 0.01 1.9% +readdirplus 2.0% 2.0% 2907 2907 0 1.48 3.65 0.07 2.0% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 483 Ops/Sec AVG. RESPONSE TIME: 1.5 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 480 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 144904 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 153794 +PHYSICAL NFS IO THROUGHPUT: 512 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3425.5 MB (100.00% to 110.02% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:10:05 PDT 2010 ************************************************************************ +Mon Mar 29 17:10:05 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 520 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 520 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:20:53 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 40669 40669 0 0.27 1.25 0.01 4.0% +setattr 4.0% 4.0% 6254 6254 0 0.36 4.71 0.05 0.8% +lookup 24.0% 24.0% 37722 37722 0 0.29 2.08 0.01 4.0% +readlink 1.0% 1.0% 1533 1533 0 0.26 0.37 0.03 0.1% +read 18.0% 18.1% 28517 35182 0 3.68 21.15 0.05 38.5% +write 10.0% 10.1% 15858 19120 0 7.65 27.43 0.08 44.5% +create 1.0% 1.0% 1579 1579 0 6.85 34.88 0.29 4.0% +remove 1.0% 1.0% 1517 1517 0 0.47 0.48 0.04 0.3% +readdir 1.0% 0.9% 1492 1492 0 0.46 0.36 0.03 0.3% +fsstat 1.0% 0.9% 1490 1490 0 0.26 0.32 0.03 0.1% +access 11.0% 11.1% 17477 17477 0 0.27 1.84 0.02 1.7% +readdirplus 2.0% 2.0% 3151 3151 0 1.43 3.24 0.06 1.7% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 524 Ops/Sec AVG. RESPONSE TIME: 1.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 520 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 157259 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 167186 +PHYSICAL NFS IO THROUGHPUT: 557 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3426.7 MB (100.00% to 110.06% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:20:54 PDT 2010 ************************************************************************ +Mon Mar 29 17:20:54 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 560 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 560 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:31:44 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 3.8% 6397 6397 133153 0.25 0.34 0.01 3.7% +setattr 4.0% 0.6% 991 991 20189 0.27 0.43 0.04 0.6% +lookup 24.0% 3.7% 6241 6241 122440 0.27 0.37 0.02 3.8% +readlink 1.0% 0.1% 243 243 5098 0.25 0.27 0.07 0.1% +read 18.0% 57.4% 96850 5665 1 0.17 4.01 0.01 37.5% +write 10.0% 31.8% 53743 3302 0 0.36 4.96 0.02 44.8% +create 1.0% 0.2% 255 255 10981 7.87 32.61 0.70 4.6% +remove 1.0% 0.1% 251 251 4999 0.46 0.54 0.09 0.3% +readdir 1.0% 0.1% 233 233 5221 0.51 0.46 0.09 0.3% +fsstat 1.0% 0.2% 293 293 5185 0.24 0.30 0.06 0.2% +access 11.0% 1.7% 2786 2786 56037 0.32 3.80 0.07 2.0% +readdirplus 2.0% 0.3% 499 499 10357 1.80 4.89 0.19 2.1% +------------------------------------------------------------------------------------- +INVALID RUN reported for Client 1 (c09-44.sysnet.ucsd.edu). +INVALID RUN, Op mix missed + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 564 Ops/Sec AVG. RESPONSE TIME: 0.2 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 560 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 168782 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 27156 +PHYSICAL NFS IO THROUGHPUT: 90 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:31:46 PDT 2010 ************************************************************************ +Mon Mar 29 17:31:46 PDT 2010 ************************************************************************ +Mon Mar 29 17:35:45 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 560 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 560 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:46:41 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 44225 44225 0 0.20 1.13 0.01 4.2% +setattr 4.0% 4.0% 6829 6829 0 0.20 0.12 0.01 0.7% +lookup 24.0% 23.8% 40336 40336 0 0.21 1.53 0.01 4.1% +readlink 1.0% 1.0% 1644 1644 0 0.20 0.15 0.02 0.2% +read 18.0% 18.1% 30699 37594 0 2.30 20.37 0.05 33.2% +write 10.0% 10.0% 16981 20521 0 6.22 30.91 0.08 49.5% +create 1.0% 1.0% 1721 1721 0 5.49 31.17 0.26 4.4% +remove 1.0% 0.9% 1588 1588 0 0.34 0.09 0.02 0.3% +readdir 1.0% 1.0% 1660 1660 0 0.39 0.10 0.01 0.3% +fsstat 1.0% 1.0% 1679 1679 0 0.32 4.86 0.11 0.3% +access 11.0% 11.0% 18711 18711 0 0.20 0.11 0.00 1.7% +readdirplus 2.0% 2.0% 3455 3455 0 0.77 0.73 0.03 1.2% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 565 Ops/Sec AVG. RESPONSE TIME: 1.2 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 560 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 169528 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 179963 +PHYSICAL NFS IO THROUGHPUT: 599 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3426.1 MB (100.00% to 110.04% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:46:42 PDT 2010 ************************************************************************ +Mon Mar 29 17:46:42 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 600 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 600 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 17:57:29 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 47519 47519 0 0.22 1.96 0.01 3.4% +setattr 4.0% 4.1% 7429 7429 0 0.24 3.20 0.04 0.6% +lookup 24.0% 23.9% 43374 43374 0 0.21 0.99 0.01 3.1% +readlink 1.0% 1.0% 1804 1804 0 0.20 0.08 0.01 0.1% +read 18.0% 17.9% 32509 39899 0 3.63 23.76 0.05 38.9% +write 10.0% 10.0% 18210 22056 0 7.33 26.49 0.07 44.1% +create 1.0% 1.1% 1925 1925 0 10.86 48.22 0.31 6.9% +remove 1.0% 0.9% 1649 1649 0 0.34 0.08 0.01 0.2% +readdir 1.0% 1.0% 1831 1831 0 0.40 0.11 0.02 0.2% +fsstat 1.0% 1.0% 1806 1806 0 0.20 0.11 0.02 0.1% +access 11.0% 11.0% 19887 19887 0 0.21 1.44 0.02 1.4% +readdirplus 2.0% 2.0% 3647 3647 0 0.80 0.90 0.03 1.0% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 605 Ops/Sec AVG. RESPONSE TIME: 1.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 600 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 181590 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 192826 +PHYSICAL NFS IO THROUGHPUT: 642 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3430.3 MB (100.00% to 110.18% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 17:57:30 PDT 2010 ************************************************************************ +Mon Mar 29 17:57:30 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 640 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 640 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 18:08:20 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 6.3% 12132 12132 135138 0.22 0.41 0.01 4.2% +setattr 4.0% 1.0% 1881 1881 20931 0.22 0.20 0.02 0.6% +lookup 24.0% 5.8% 11150 11150 125250 0.23 0.41 0.01 4.0% +readlink 1.0% 0.3% 501 501 5229 0.21 0.13 0.03 0.2% +read 18.0% 53.0% 102407 10308 0 0.24 4.72 0.01 38.9% +write 10.0% 29.6% 57190 5584 0 0.48 5.44 0.02 43.1% +create 1.0% 0.2% 441 441 11631 7.49 32.24 0.53 5.2% +remove 1.0% 0.3% 501 501 5379 0.37 0.32 0.05 0.3% +readdir 1.0% 0.2% 481 481 5174 0.41 0.21 0.04 0.3% +fsstat 1.0% 0.2% 473 473 5230 0.21 0.15 0.03 0.2% +access 11.0% 2.6% 5059 5059 57679 0.22 0.25 0.01 1.8% +readdirplus 2.0% 0.5% 899 899 10464 0.89 1.24 0.07 1.2% +------------------------------------------------------------------------------------- +INVALID RUN reported for Client 1 (c09-44.sysnet.ucsd.edu). +INVALID RUN, Op mix missed + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 646 Ops/Sec AVG. RESPONSE TIME: 0.3 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 640 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 193115 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 49410 +PHYSICAL NFS IO THROUGHPUT: 165 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 18:08:21 PDT 2010 ************************************************************************ +Mon Mar 29 18:08:21 PDT 2010 ************************************************************************ +Mon Mar 29 21:56:51 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 640 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 640 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:11:23 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 50412 50412 0 0.19 0.88 0.01 5.0% +setattr 4.0% 4.0% 7720 7720 0 0.19 0.13 0.01 0.8% +lookup 24.0% 24.1% 46730 46730 0 0.20 0.14 0.00 4.7% +readlink 1.0% 1.0% 1958 1958 0 0.20 0.24 0.02 0.2% +read 18.0% 17.9% 34767 42650 0 1.76 10.88 0.03 31.3% +write 10.0% 10.1% 19558 23716 0 4.96 15.92 0.06 49.5% +create 1.0% 1.0% 1916 1916 0 4.13 22.25 0.21 4.0% +remove 1.0% 0.7% 1420 1420 0 0.34 0.15 0.02 0.2% +readdir 1.0% 1.0% 1882 1882 0 0.39 0.17 0.02 0.4% +fsstat 1.0% 1.0% 2024 2024 0 0.20 0.16 0.02 0.2% +access 11.0% 11.1% 21430 21430 0 0.20 1.36 0.02 2.2% +readdirplus 2.0% 2.0% 3885 3885 0 0.72 1.09 0.03 1.4% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 648 Ops/Sec AVG. RESPONSE TIME: 1.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 640 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 193702 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 205743 +PHYSICAL NFS IO THROUGHPUT: 688 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3425.0 MB (100.00% to 110.01% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:11:24 PDT 2010 ************************************************************************ +Mon Mar 29 22:11:24 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 680 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 680 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:22:13 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 25.9% 53651 53651 0 0.20 1.09 0.01 4.1% +setattr 4.0% 4.0% 8298 8298 0 0.20 0.19 0.01 0.6% +lookup 24.0% 24.1% 49849 49849 0 0.22 1.45 0.01 4.1% +readlink 1.0% 1.0% 2074 2074 0 0.20 0.17 0.02 0.2% +read 18.0% 18.0% 37238 45680 0 2.55 16.95 0.04 36.5% +write 10.0% 10.1% 20852 25251 0 5.81 21.56 0.06 46.6% +create 1.0% 1.0% 2119 2119 0 4.87 28.98 0.23 4.0% +remove 1.0% 0.8% 1586 1586 0 0.36 0.22 0.02 0.2% +readdir 1.0% 1.0% 2030 2030 0 0.40 0.18 0.02 0.3% +fsstat 1.0% 1.0% 2121 2121 0 0.20 0.15 0.02 0.2% +access 11.0% 11.1% 22875 22875 0 0.22 1.87 0.02 1.9% +readdirplus 2.0% 2.0% 4186 4186 0 0.80 1.39 0.04 1.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 690 Ops/Sec AVG. RESPONSE TIME: 1.2 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 680 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 206879 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 219720 +PHYSICAL NFS IO THROUGHPUT: 732 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3427.5 MB (100.00% to 110.09% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:22:14 PDT 2010 ************************************************************************ +Mon Mar 29 22:22:14 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 720 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 720 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:32:55 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 57201 57201 0 0.25 1.94 0.01 6.2% +setattr 4.0% 4.0% 8799 8799 0 0.27 2.56 0.03 1.0% +lookup 24.0% 24.1% 52813 52813 0 0.27 2.37 0.01 6.1% +readlink 1.0% 1.0% 2195 2195 0 0.23 0.26 0.02 0.2% +read 18.0% 18.2% 39838 48943 0 1.85 7.61 0.03 31.6% +write 10.0% 9.9% 21703 26233 0 5.03 14.07 0.05 46.9% +create 1.0% 1.0% 2152 2152 0 2.58 14.15 0.16 2.4% +remove 1.0% 0.7% 1452 1452 0 0.39 0.37 0.03 0.2% +readdir 1.0% 1.0% 2201 2201 0 0.56 5.04 0.09 0.5% +fsstat 1.0% 1.0% 2194 2194 0 0.24 0.31 0.02 0.2% +access 11.0% 11.0% 23991 23991 0 0.24 1.47 0.02 2.5% +readdirplus 2.0% 2.0% 4362 4362 0 1.10 2.40 0.05 2.1% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 730 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 720 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 218901 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 232536 +PHYSICAL NFS IO THROUGHPUT: 775 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3425.4 MB (100.00% to 110.02% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:32:56 PDT 2010 ************************************************************************ +Mon Mar 29 22:32:56 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 760 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 760 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:43:45 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 60390 60390 0 0.26 1.71 0.01 4.6% +setattr 4.0% 3.9% 8954 8954 0 0.28 2.60 0.03 0.8% +lookup 24.0% 24.1% 55605 55605 0 0.26 0.94 0.01 4.4% +readlink 1.0% 1.0% 2300 2300 0 0.35 4.97 0.09 0.2% +read 18.0% 18.0% 41448 51036 0 3.17 22.46 0.05 39.0% +write 10.0% 10.0% 23006 27867 0 6.24 25.74 0.07 42.6% +create 1.0% 1.0% 2364 2364 0 5.67 31.37 0.23 4.0% +remove 1.0% 0.7% 1625 1625 0 0.41 0.40 0.03 0.2% +readdir 1.0% 1.0% 2301 2301 0 0.44 0.32 0.02 0.3% +fsstat 1.0% 1.0% 2327 2327 0 0.24 0.33 0.02 0.2% +access 11.0% 11.1% 25490 25490 0 0.25 1.26 0.01 1.9% +readdirplus 2.0% 2.0% 4655 4655 0 1.34 5.53 0.07 1.9% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 768 Ops/Sec AVG. RESPONSE TIME: 1.5 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 760 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 230465 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 244914 +PHYSICAL NFS IO THROUGHPUT: 816 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3425.3 MB (100.00% to 110.02% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:43:46 PDT 2010 ************************************************************************ +Mon Mar 29 22:43:46 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 800 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 800 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 22:54:36 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 63316 63316 0 0.27 1.87 0.01 4.5% +setattr 4.0% 4.0% 9680 9680 0 0.26 0.41 0.01 0.7% +lookup 24.0% 24.1% 58485 58485 0 0.27 1.09 0.01 4.3% +readlink 1.0% 1.0% 2397 2397 0 0.47 7.37 0.11 0.3% +read 18.0% 18.1% 43767 53444 0 3.24 23.09 0.05 38.1% +write 10.0% 10.0% 24244 29478 0 6.50 24.46 0.06 42.4% +create 1.0% 1.0% 2493 2493 0 7.90 43.64 0.26 5.3% +remove 1.0% 0.6% 1502 1502 0 0.40 0.40 0.03 0.2% +readdir 1.0% 1.0% 2438 2438 0 0.57 4.94 0.09 0.4% +fsstat 1.0% 1.0% 2439 2439 0 0.24 0.27 0.02 0.2% +access 11.0% 11.0% 26706 26706 0 0.28 2.74 0.02 2.0% +readdirplus 2.0% 2.0% 4900 4900 0 1.21 2.75 0.05 1.6% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 811 Ops/Sec AVG. RESPONSE TIME: 1.5 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 800 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 242367 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 257278 +PHYSICAL NFS IO THROUGHPUT: 860 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3428.1 MB (100.00% to 110.11% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 22:54:37 PDT 2010 ************************************************************************ +Mon Mar 29 22:54:37 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 840 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 840 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 23:05:20 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 69832 69832 0 0.38 4.11 0.02 2.1% +setattr 4.0% 4.0% 10865 10865 0 0.41 4.55 0.04 0.3% +lookup 24.0% 24.0% 64416 64416 0 0.42 4.57 0.02 2.1% +readlink 1.0% 1.0% 2677 2677 0 0.31 0.47 0.03 0.1% +read 18.0% 18.1% 48718 59765 0 13.51 179.14 0.12 51.0% +write 10.0% 10.1% 27015 32868 0 13.42 151.28 0.15 28.1% +create 1.0% 1.0% 2696 2696 0 68.21 517.34 0.86 14.3% +remove 1.0% 0.6% 1652 1652 0 0.61 5.02 0.11 0.1% +readdir 1.0% 1.0% 2636 2636 0 0.53 0.46 0.03 0.1% +fsstat 1.0% 1.0% 2668 2668 0 0.40 4.77 0.08 0.1% +access 11.0% 11.1% 29931 29931 0 0.39 4.49 0.02 0.9% +readdirplus 2.0% 2.0% 5438 5438 0 1.92 9.42 0.08 0.8% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 898 Ops/Sec AVG. RESPONSE TIME: 4.8 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 840 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 268544 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 285444 +PHYSICAL NFS IO THROUGHPUT: 954 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3440.6 MB (100.00% to 110.51% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 23:05:21 PDT 2010 ************************************************************************ +Mon Mar 29 23:05:21 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 880 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 880 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 23:16:08 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.3% 71998 71998 0 0.39 4.03 0.01 2.4% +setattr 4.0% 4.0% 10931 10931 0 0.37 3.04 0.03 0.3% +lookup 24.0% 24.1% 66024 66024 0 0.41 3.74 0.01 2.3% +readlink 1.0% 1.0% 2716 2716 0 0.32 0.52 0.03 0.1% +read 18.0% 17.8% 48807 59917 0 11.11 178.08 0.12 46.2% +write 10.0% 10.1% 27547 33314 0 14.56 165.36 0.15 34.2% +create 1.0% 1.0% 2813 2813 0 51.65 427.72 0.76 12.4% +remove 1.0% 0.7% 1902 1902 0 0.53 0.65 0.04 0.1% +readdir 1.0% 1.0% 2789 2789 0 0.63 4.13 0.08 0.1% +fsstat 1.0% 1.0% 2806 2806 0 0.31 0.44 0.02 0.1% +access 11.0% 11.0% 30212 30212 0 0.38 3.80 0.02 1.0% +readdirplus 2.0% 2.0% 5489 5489 0 1.75 5.91 0.06 0.8% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 916 Ops/Sec AVG. RESPONSE TIME: 4.3 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 880 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 274034 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 290911 +PHYSICAL NFS IO THROUGHPUT: 972 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3435.5 MB (100.00% to 110.35% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 23:16:09 PDT 2010 ************************************************************************ +Mon Mar 29 23:16:09 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 920 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 920 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 23:26:56 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 0.0% 0 0 256992 0.00 0.00 0.00 0.0% +setattr 4.0% 0.0% 0 0 39733 0.00 0.00 0.00 0.0% +lookup 24.0% 0.0% 0 0 237161 0.00 0.00 0.00 0.0% +readlink 1.0% 0.0% 0 0 9945 0.00 0.00 0.00 0.0% +read 18.0% 64.3% 178196 178196 0 0.00 0.00 0.00 0.0% +write 10.0% 35.7% 98915 98915 0 0.00 0.00 0.00 0.0% +create 1.0% 0.0% 0 0 23905 0.00 0.00 0.00 0.0% +remove 1.0% 0.0% 0 0 9821 0.00 0.00 0.00 0.0% +readdir 1.0% 0.0% 0 0 9849 0.00 0.00 0.00 0.0% +fsstat 1.0% 0.0% 0 0 9998 0.00 0.00 0.00 0.0% +access 11.0% 0.0% 0 0 108769 0.00 0.00 0.00 0.0% +readdirplus 2.0% 0.0% 0 0 19641 0.00 0.00 0.00 0.0% +------------------------------------------------------------------------------------- +INVALID RUN reported for Client 1 (c09-44.sysnet.ucsd.edu). +INVALID RUN, Op mix missed + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 924 Ops/Sec AVG. RESPONSE TIME: 0.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 920 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 277111 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 277111 +PHYSICAL NFS IO THROUGHPUT: 923 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 23:26:57 PDT 2010 ************************************************************************ +Mon Mar 29 23:38:02 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 920 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 920 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Mon Mar 29 23:52:39 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 72952 72952 0 0.22 2.26 0.01 5.1% +setattr 4.0% 4.0% 11260 11260 0 0.20 0.18 0.01 0.7% +lookup 24.0% 24.2% 67871 67871 0 0.21 1.11 0.01 4.5% +readlink 1.0% 1.0% 2742 2742 0 0.20 0.12 0.01 0.2% +read 18.0% 18.0% 50501 62343 0 2.17 15.17 0.03 34.6% +write 10.0% 9.9% 27776 33731 0 5.32 18.46 0.05 46.6% +create 1.0% 1.0% 2738 2738 0 4.85 29.06 0.20 4.2% +remove 1.0% 0.6% 1634 1634 0 0.34 0.12 0.02 0.2% +readdir 1.0% 1.0% 2758 2758 0 0.40 0.19 0.02 0.4% +fsstat 1.0% 1.0% 2863 2863 0 0.20 0.14 0.01 0.2% +access 11.0% 11.1% 31142 31142 0 0.21 1.35 0.01 2.0% +readdirplus 2.0% 2.0% 5688 5688 0 0.74 0.89 0.02 1.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 936 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 920 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 279925 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 297722 +PHYSICAL NFS IO THROUGHPUT: 995 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3426.9 MB (100.00% to 110.07% of Base) + +------------------------------------------------------------------------ + +Mon Mar 29 23:52:40 PDT 2010 ************************************************************************ +Mon Mar 29 23:52:40 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 960 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 960 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:03:25 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 76392 76392 0 0.23 2.18 0.01 5.5% +setattr 4.0% 4.0% 11585 11585 0 0.24 2.19 0.03 0.8% +lookup 24.0% 24.1% 70617 70617 0 0.24 2.01 0.01 5.1% +readlink 1.0% 1.0% 2947 2947 0 0.22 0.28 0.02 0.2% +read 18.0% 18.1% 52986 65123 0 2.05 10.30 0.03 33.6% +write 10.0% 10.0% 29355 35392 0 5.09 15.59 0.05 46.2% +create 1.0% 1.0% 2968 2968 0 4.31 23.45 0.17 3.9% +remove 1.0% 0.5% 1575 1575 0 0.35 0.23 0.02 0.2% +readdir 1.0% 1.0% 3038 3038 0 0.42 0.28 0.02 0.4% +fsstat 1.0% 1.0% 3033 3033 0 0.28 3.57 0.07 0.3% +access 11.0% 11.1% 32432 32432 0 0.22 1.73 0.01 2.3% +readdirplus 2.0% 2.0% 5947 5947 0 0.82 1.38 0.03 1.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 980 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 960 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 292875 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 311049 +PHYSICAL NFS IO THROUGHPUT: 1040 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3426.2 MB (100.00% to 110.05% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:03:26 PDT 2010 ************************************************************************ +Tue Mar 30 00:03:26 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1000 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1000 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:14:18 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 80437 80437 0 0.27 2.70 0.01 4.1% +setattr 4.0% 4.0% 12295 12295 0 0.25 0.36 0.01 0.6% +lookup 24.0% 23.9% 73347 73347 0 0.28 2.73 0.01 3.9% +readlink 1.0% 1.0% 3021 3021 0 0.24 0.31 0.02 0.1% +read 18.0% 18.1% 55481 68428 0 3.74 27.63 0.04 39.7% +write 10.0% 10.1% 30868 37425 0 7.08 30.32 0.06 41.7% +create 1.0% 1.0% 3091 3091 0 10.44 59.33 0.27 6.2% +remove 1.0% 0.5% 1597 1597 0 0.55 6.00 0.12 0.2% +readdir 1.0% 1.0% 3097 3097 0 0.52 4.36 0.07 0.3% +fsstat 1.0% 1.0% 3105 3105 0 0.31 3.60 0.07 0.2% +access 11.0% 11.1% 33956 33956 0 0.26 2.52 0.02 1.7% +readdirplus 2.0% 2.1% 6302 6302 0 1.07 4.23 0.05 1.3% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1025 Ops/Sec AVG. RESPONSE TIME: 1.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1000 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 306597 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 326101 +PHYSICAL NFS IO THROUGHPUT: 1090 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3430.2 MB (100.00% to 110.18% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:14:19 PDT 2010 ************************************************************************ +Tue Mar 30 00:14:19 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1040 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1040 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:25:20 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 71306 71306 0 0.37 4.30 0.02 2.0% +setattr 4.0% 4.1% 11208 11208 0 0.41 5.10 0.04 0.3% +lookup 24.0% 24.1% 66091 66091 0 0.38 4.07 0.02 1.9% +readlink 1.0% 1.0% 2749 2749 0 0.36 3.87 0.07 0.1% +read 18.0% 18.0% 49342 60698 0 12.09 206.58 0.13 44.9% +write 10.0% 10.0% 27441 33165 0 15.07 169.12 0.15 31.1% +create 1.0% 1.0% 2773 2773 0 87.30 731.35 1.01 18.2% +remove 1.0% 0.7% 1910 1910 0 0.49 0.54 0.03 0.1% +readdir 1.0% 1.0% 2700 2700 0 0.53 0.47 0.03 0.1% +fsstat 1.0% 1.0% 2748 2748 0 0.52 7.37 0.10 0.1% +access 11.0% 11.1% 30322 30322 0 0.30 1.32 0.01 0.7% +readdirplus 2.0% 2.0% 5470 5470 0 1.31 3.55 0.05 0.5% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 914 Ops/Sec AVG. RESPONSE TIME: 4.8 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1040 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 274060 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 291140 +PHYSICAL NFS IO THROUGHPUT: 970 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:25:21 PDT 2010 ************************************************************************ +Tue Mar 30 00:25:21 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1080 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1080 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:36:12 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 87341 87341 0 0.32 2.63 0.01 4.9% +setattr 4.0% 4.1% 13648 13648 0 0.34 2.97 0.03 0.8% +lookup 24.0% 24.0% 80255 80255 0 0.33 2.52 0.01 4.6% +readlink 1.0% 1.0% 3431 3431 0 0.28 0.47 0.02 0.2% +read 18.0% 18.1% 60394 74145 0 3.45 25.63 0.04 36.7% +write 10.0% 10.0% 33545 40578 0 7.03 28.44 0.06 41.5% +create 1.0% 1.0% 3277 3277 0 11.53 79.51 0.31 6.6% +remove 1.0% 0.5% 1814 1814 0 0.46 0.58 0.04 0.1% +readdir 1.0% 1.0% 3369 3369 0 0.50 0.49 0.02 0.3% +fsstat 1.0% 1.0% 3478 3478 0 0.36 4.24 0.07 0.2% +access 11.0% 11.0% 36630 36630 0 0.37 4.35 0.02 2.4% +readdirplus 2.0% 2.0% 6771 6771 0 1.43 3.95 0.05 1.7% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1117 Ops/Sec AVG. RESPONSE TIME: 1.7 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1080 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 333953 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 354737 +PHYSICAL NFS IO THROUGHPUT: 1186 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3430.5 MB (100.00% to 110.18% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:36:13 PDT 2010 ************************************************************************ +Tue Mar 30 00:36:13 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1120 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1120 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:47:11 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 60035 60035 0 0.42 4.44 0.02 1.8% +setattr 4.0% 4.0% 9171 9171 0 0.47 5.32 0.05 0.3% +lookup 24.0% 24.0% 55030 55030 0 0.46 4.83 0.02 1.9% +readlink 1.0% 1.0% 2347 2347 0 0.46 5.96 0.10 0.1% +read 18.0% 18.1% 41512 51143 0 15.67 202.86 0.14 47.3% +write 10.0% 9.9% 22748 27675 0 20.40 223.15 0.19 33.8% +create 1.0% 1.0% 2309 2309 0 78.08 534.33 0.94 13.1% +remove 1.0% 0.7% 1675 1675 0 0.53 0.65 0.04 0.1% +readdir 1.0% 1.0% 2349 2349 0 0.71 5.28 0.09 0.1% +fsstat 1.0% 1.0% 2307 2307 0 0.60 8.09 0.12 0.1% +access 11.0% 11.0% 25195 25195 0 0.44 4.77 0.03 0.8% +readdirplus 2.0% 2.0% 4549 4549 0 1.79 6.79 0.08 0.6% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 762 Ops/Sec AVG. RESPONSE TIME: 6.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1120 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 229227 TEST TIME: 301 Sec +TOTAL PHYSICAL NFS OPERATIONS: 243785 +PHYSICAL NFS IO THROUGHPUT: 809 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:47:12 PDT 2010 ************************************************************************ +Tue Mar 30 00:47:12 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1160 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1160 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 00:59:02 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 0.0% 0 0 3 0.00 0.00 0.00 0.0% +setattr 4.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +lookup 24.0% 0.0% 0 0 5 0.00 0.00 0.00 0.0% +readlink 1.0% 0.0% 0 0 1 0.00 0.00 0.00 0.0% +read 18.0% 0.0% 0 0 3 0.00 0.00 0.00 0.0% +write 10.0% 0.0% 0 0 2 0.00 0.00 0.00 0.0% +create 1.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +remove 1.0% 0.0% 0 0 1 0.00 0.00 0.00 0.0% +readdir 1.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +fsstat 1.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +access 11.0% 0.0% 0 0 2 0.00 0.00 0.00 0.0% +readdirplus 2.0% 0.0% 0 0 0 0.00 0.00 0.00 0.0% +------------------------------------------------------------------------------------- +INVALID RUN reported for Client 1 (c09-44.sysnet.ucsd.edu). +INVALID RUN, Op mix missed + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 0 Ops/Sec AVG. RESPONSE TIME: 0.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1160 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 0 TEST TIME: 314 Sec +TOTAL PHYSICAL NFS OPERATIONS: 0 +PHYSICAL NFS IO THROUGHPUT: 0 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3113.5 MB (100.00% to 100.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 00:59:03 PDT 2010 ************************************************************************ +Tue Mar 30 00:59:03 PDT 2010 ************************************************************************ +Tue Mar 30 08:31:16 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1120 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1120 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 08:45:50 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 89922 89922 0 0.21 1.43 0.01 5.2% +setattr 4.0% 4.1% 13927 13927 0 0.21 0.17 0.01 0.8% +lookup 24.0% 24.1% 82499 82499 0 0.22 1.50 0.01 5.0% +readlink 1.0% 1.0% 3328 3328 0 0.21 0.20 0.02 0.2% +read 18.0% 18.1% 62082 76576 0 1.92 10.71 0.03 32.6% +write 10.0% 10.0% 34266 41400 0 4.98 16.14 0.04 46.7% +create 1.0% 1.0% 3397 3397 0 5.32 28.43 0.18 5.0% +remove 1.0% 0.5% 1726 1726 0 0.35 0.22 0.02 0.2% +readdir 1.0% 1.0% 3411 3411 0 0.41 0.20 0.02 0.4% +fsstat 1.0% 1.0% 3477 3477 0 0.20 0.12 0.01 0.2% +access 11.0% 11.1% 37916 37916 0 0.23 2.49 0.02 2.4% +readdirplus 2.0% 2.0% 6943 6943 0 0.74 0.99 0.02 1.4% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1143 Ops/Sec AVG. RESPONSE TIME: 1.1 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1120 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 342894 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 364522 +PHYSICAL NFS IO THROUGHPUT: 1215 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3430.7 MB (100.00% to 110.19% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 08:45:51 PDT 2010 ************************************************************************ +Tue Mar 30 08:45:51 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1160 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1160 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 08:56:41 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.2% 93713 93713 0 0.27 2.75 0.01 5.1% +setattr 4.0% 4.0% 14480 14480 0 0.24 0.39 0.01 0.7% +lookup 24.0% 24.1% 86404 86404 0 0.27 2.43 0.01 4.8% +readlink 1.0% 1.0% 3565 3565 0 0.23 0.27 0.02 0.2% +read 18.0% 18.1% 64879 79766 0 2.72 20.35 0.03 36.3% +write 10.0% 10.0% 35960 43551 0 5.90 24.92 0.05 43.7% +create 1.0% 1.0% 3533 3533 0 6.85 44.01 0.22 5.0% +remove 1.0% 0.5% 1756 1756 0 0.38 0.31 0.03 0.1% +readdir 1.0% 1.0% 3641 3641 0 0.45 0.39 0.02 0.3% +fsstat 1.0% 1.0% 3627 3627 0 0.24 0.33 0.02 0.2% +access 11.0% 11.1% 39667 39667 0 0.26 2.52 0.02 2.1% +readdirplus 2.0% 2.0% 7119 7119 0 0.98 2.05 0.03 1.4% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1194 Ops/Sec AVG. RESPONSE TIME: 1.4 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1160 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 358344 TEST TIME: 300 Sec +TOTAL PHYSICAL NFS OPERATIONS: 380822 +PHYSICAL NFS IO THROUGHPUT: 1269 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3435.1 MB (100.00% to 110.33% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 08:56:42 PDT 2010 ************************************************************************ +Tue Mar 30 08:56:42 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1200 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1200 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 09:07:34 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 89394 89394 0 0.35 3.77 0.01 2.3% +setattr 4.0% 4.0% 13755 13755 0 0.37 4.15 0.03 0.4% +lookup 24.0% 24.0% 82255 82255 0 0.36 3.66 0.01 2.2% +readlink 1.0% 1.0% 3503 3503 0 0.36 4.86 0.07 0.1% +read 18.0% 18.1% 61841 75603 0 9.64 130.30 0.09 44.8% +write 10.0% 9.9% 34024 41146 0 12.15 126.00 0.12 31.1% +create 1.0% 1.0% 3521 3521 0 64.38 464.63 0.71 17.0% +remove 1.0% 0.6% 2217 2217 0 0.58 5.09 0.09 0.1% +readdir 1.0% 1.0% 3449 3449 0 0.57 3.45 0.06 0.1% +fsstat 1.0% 1.0% 3433 3433 0 0.37 3.58 0.06 0.1% +access 11.0% 11.0% 37704 37704 0 0.34 3.66 0.02 1.0% +readdirplus 2.0% 2.0% 6937 6937 0 1.31 4.74 0.05 0.7% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 1144 Ops/Sec AVG. RESPONSE TIME: 3.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1200 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 342033 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 362917 +PHYSICAL NFS IO THROUGHPUT: 1213 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 09:07:35 PDT 2010 ************************************************************************ +Tue Mar 30 09:07:35 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1240 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1240 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 09:18:24 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.0% 72208 72208 0 0.38 4.01 0.01 2.0% +setattr 4.0% 4.0% 11038 11038 0 0.41 4.23 0.04 0.3% +lookup 24.0% 24.1% 66776 66776 0 0.45 5.05 0.02 2.2% +readlink 1.0% 1.0% 2804 2804 0 0.54 7.51 0.10 0.1% +read 18.0% 18.1% 50192 61819 0 13.93 178.22 0.12 50.2% +write 10.0% 10.1% 27927 33607 0 14.86 151.62 0.14 29.8% +create 1.0% 1.0% 2839 2839 0 66.52 460.37 0.79 13.6% +remove 1.0% 0.6% 1619 1619 0 0.66 6.02 0.12 0.1% +readdir 1.0% 1.0% 2811 2811 0 0.61 4.04 0.07 0.1% +fsstat 1.0% 1.0% 2813 2813 0 0.43 5.51 0.09 0.1% +access 11.0% 11.0% 30589 30589 0 0.43 5.10 0.03 0.9% +readdirplus 2.0% 2.0% 5595 5595 0 1.46 4.62 0.06 0.6% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 927 Ops/Sec AVG. RESPONSE TIME: 5.0 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1240 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 277211 TEST TIME: 299 Sec +TOTAL PHYSICAL NFS OPERATIONS: 294518 +PHYSICAL NFS IO THROUGHPUT: 985 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 09:18:25 PDT 2010 ************************************************************************ +Tue Mar 30 09:18:25 PDT 2010 ************************************************************************ +Started on client (c09-44): ../binaries/linux-x86/sfs_prime -l 1280 -C ../result/sfssum.bluesky -t 300 -a 30 -A 70 -R 2 -W 2 -Q -p 4 -w 300 -X 8000 c09-44.sysnet.ucsd.edu + +Aggregate Test Parameters: + Number of processes = 4 + Requested Load (NFS operations/second) = 1280 + Maximum number of outstanding biod writes = 2 + Maximum number of outstanding biod reads = 2 + Warm-up time (seconds) = 300 + Run time (seconds) = 300 + File Set = 20004 Files created for I/O operations + 6000 Files accessed for I/O operations + 404 Files for non-I/O operations + 24 Symlinks + 664 Directories + Additional non-I/O files created as necessary + +SFS Aggregate Results for 1 Client(s), Tue Mar 30 09:29:13 2010 +NFS Protocol Version 3 + +------------------------------------------------------------------------------------- +NFS Target Actual NFS Op NFS Op NFS Mean Std Dev Std Error Pcnt +Op NFS NFS Logical Physical Op Response Response of Mean, of +Type Mix Mix Success Success Error Time Time 95% Conf Total + Pcnt Pcnt Count Count Count Msec/Op Msec/Op +-Msec/Op Time +------------------------------------------------------------------------------------- +getattr 26.0% 26.1% 72990 72990 0 0.38 3.68 0.01 2.0% +setattr 4.0% 4.0% 11212 11212 0 0.42 4.23 0.04 0.3% +lookup 24.0% 24.0% 67276 67276 0 0.43 4.26 0.02 2.1% +readlink 1.0% 1.0% 2888 2888 0 0.40 3.76 0.07 0.1% +read 18.0% 18.2% 50900 62517 0 12.26 167.79 0.11 45.2% +write 10.0% 10.1% 28310 34437 0 15.64 161.50 0.15 32.1% +create 1.0% 1.0% 2790 2790 0 81.24 578.89 0.89 16.4% +remove 1.0% 0.6% 1750 1750 0 0.49 0.46 0.03 0.1% +readdir 1.0% 1.0% 2736 2736 0 0.55 0.54 0.03 0.1% +fsstat 1.0% 1.0% 2796 2796 0 0.32 0.52 0.03 0.1% +access 11.0% 11.1% 30989 30989 0 0.39 3.98 0.02 0.9% +readdirplus 2.0% 2.0% 5549 5549 0 1.59 5.39 0.06 0.6% +------------------------------------------------------------------------------------- + + --------------------------------------------- + | SPEC SFS 2008 AGGREGATE RESULTS SUMMARY | + --------------------------------------------- +SFS NFS THROUGHPUT: 940 Ops/Sec AVG. RESPONSE TIME: 4.9 Msec/Op +TCP PROTOCOL (IPv4) +NFS MIXFILE: [ SFS default ] +AGGREGATE REQUESTED LOAD: 1280 Ops/Sec +TOTAL LOGICAL NFS OPERATIONS: 280186 TEST TIME: 298 Sec +TOTAL PHYSICAL NFS OPERATIONS: 297930 +PHYSICAL NFS IO THROUGHPUT: 999 Ops/sec +NUMBER OF SFS CLIENTS: 1 +TOTAL FILE SET SIZE CREATED: 10373.2 MB +TOTAL FILE SET SIZE ACCESSED: 3113.4 - 3424.7 MB (100.00% to 110.00% of Base) + +------------------------------------------------------------------------ + +Tue Mar 30 09:29:14 PDT 2010 ************************************************************************ diff --git a/results/bluesky/sfsrmisrvc001.bluesky b/results/bluesky/sfsrmisrvc001.bluesky new file mode 100644 index 0000000..e69de29 diff --git a/results/bluesky/sfssum.bluesky b/results/bluesky/sfssum.bluesky new file mode 100644 index 0000000..2463b2f --- /dev/null +++ b/results/bluesky/sfssum.bluesky @@ -0,0 +1,37 @@ + 40 40 0.6 12002 300 NFS3 T 4 10622124 1 4 2 2 2008 + 80 80 0.7 24005 300 NFS3 T 4 10622124 1 4 2 2 2008 + 120 120 0.9 36040 300 NFS3 T 4 10622124 1 4 2 2 2008 + 160 161 0.9 48021 299 NFS3 T 4 10622124 1 4 2 2 2008 + 200 200 0.9 60114 300 NFS3 T 4 10622124 1 4 2 2 2008 + 240 240 1.0 72113 300 NFS3 T 4 10622124 1 4 2 2 2008 + 280 281 1.0 84247 300 NFS3 T 4 10622124 1 4 2 2 2008 + 320 320 1.1 95980 300 NFS3 T 4 10622124 1 4 2 2 2008 + 360 361 1.3 108269 300 NFS3 T 4 10622124 1 4 2 2 2008 + 400 401 1.2 120401 300 NFS3 T 4 10622124 1 4 2 2 2008 + 440 443 1.4 132590 299 NFS3 T 4 10622124 1 4 2 2 2008 + 480 483 1.5 144904 300 NFS3 T 4 10622124 1 4 2 2 2008 + 520 524 1.7 157259 300 NFS3 T 4 10622124 1 4 2 2 2008 +INVALID 560 564 0.2 168782 299 NFS3 T 4 10622124 1 4 2 2 2008 + 560 565 1.2 169528 300 NFS3 T 4 10622124 1 4 2 2 2008 + 600 605 1.7 181590 300 NFS3 T 4 10622124 1 4 2 2 2008 +INVALID 640 646 0.3 193115 299 NFS3 T 4 10622124 1 4 2 2 2008 + 640 648 1.0 193702 299 NFS3 T 4 10622124 1 4 2 2 2008 + 680 690 1.2 206879 300 NFS3 T 4 10622124 1 4 2 2 2008 + 720 730 1.1 218901 300 NFS3 T 4 10622124 1 4 2 2 2008 + 760 768 1.5 230465 300 NFS3 T 4 10622124 1 4 2 2 2008 + 800 811 1.5 242367 299 NFS3 T 4 10622124 1 4 2 2 2008 + 840 898 4.8 268544 299 NFS3 T 4 10622124 1 4 2 2 2008 + 880 916 4.3 274034 299 NFS3 T 4 10622124 1 4 2 2 2008 +INVALID 920 924 0.0 277111 300 NFS3 T 4 10622124 1 4 2 2 2008 + 920 936 1.1 279925 299 NFS3 T 4 10622124 1 4 2 2 2008 + 960 980 1.1 292875 299 NFS3 T 4 10622124 1 4 2 2 2008 + 1000 1025 1.7 306597 299 NFS3 T 4 10622124 1 4 2 2 2008 + 1040 914 4.8 274060 300 NFS3 T 4 10622124 1 4 2 2 2008 + 1080 1117 1.7 333953 299 NFS3 T 4 10622124 1 4 2 2 2008 + 1120 762 6.0 229227 301 NFS3 T 4 10622124 1 4 2 2 2008 +INVALID 1160 0 0.0 0 314 NFS3 T 4 10622124 1 4 2 2 2008 + 1120 1143 1.1 342894 300 NFS3 T 4 10622124 1 4 2 2 2008 + 1160 1194 1.4 358344 300 NFS3 T 4 10622124 1 4 2 2 2008 + 1200 1144 3.9 342033 299 NFS3 T 4 10622124 1 4 2 2 2008 + 1240 927 5.0 277211 299 NFS3 T 4 10622124 1 4 2 2 2008 + 1280 940 4.9 280186 298 NFS3 T 4 10622124 1 4 2 2 2008 diff --git a/results/bluesky/syncd_c001.bluesky b/results/bluesky/syncd_c001.bluesky new file mode 100644 index 0000000..aec9f93 --- /dev/null +++ b/results/bluesky/syncd_c001.bluesky @@ -0,0 +1,584 @@ +Started on client (c09-44): ../binaries/linux-x86/sfs_syncd +-------------------- +Start of sfs run. +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got CLIENT_STOP - 1_2 +sfs_syncd: sending Pid 4989 Signal 2 +Started on client (c09-44): ../binaries/linux-x86/sfs_syncd +-------------------- +Start of sfs run. +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got CLIENT_STOP - 1_1 +sfs_syncd: sending Pid 5308 Signal 2 +Started on client (c09-44): ../binaries/linux-x86/sfs_syncd +-------------------- +Start of sfs run. +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got CLIENT_STOP - 1_1 +sfs_syncd: sending Pid 5419 Signal 2 +Started on client (c09-44): ../binaries/linux-x86/sfs_syncd +-------------------- +Start of sfs run. +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +Started on client (c09-44): ../binaries/linux-x86/sfs_syncd +-------------------- +Start of sfs run. +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got CLIENT_STOP - 1_1 +sfs_syncd: sending Pid 6434 Signal 2 +Started on client (c09-44): ../binaries/linux-x86/sfs_syncd +-------------------- +Start of sfs run. +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5 +sfs_syncd: Got Client_SIGNAL - 1_1 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_1 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_2 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_2 + Sent SIGUSR1 +sfs_syncd: Got Client_SIGNAL - 1_3 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_3 + Sent SIGUSR1 +sfs_syncd: Got PRIME_ALARM(SIGALRM) - Prime_4 + Sent SIGALRM +sfs_syncd: Got Client_SIGNAL - 1_4 +sfs_syncd: Got PRIME_SIGNAL(SIGUSR1) - Prime_5 + Sent SIGUSR1 +sfs_syncd: Got Client_DATA - 1_5