- 09 Jan, 2002 4 commits
-
-
Leigh B. Stoller authored
-
Robert Ricci authored
all other testbed stuff. rc.d/3.testbed.sh now expects to find capture in @prefix@/etc . Also moved capserver out of the 'all' target in capture/GNUmakefile, so that we don't try to build it on 'tipserv' machines, which won't have the necessary mysql stuff.
-
Robert Ricci authored
and ops email address.
-
Leigh B. Stoller authored
-
- 08 Jan, 2002 16 commits
-
-
Leigh B. Stoller authored
hostname (according to the rules).
-
Robert Ricci authored
fileserver - ie. fs.emulab.net . tmcd and exports_setup now use this variable rather than a hard-coded node name.
-
Mac Newbold authored
-
Mac Newbold authored
-
Christopher Alfeld authored
-
Christopher Alfeld authored
-
Christopher Alfeld authored
-
Christopher Alfeld authored
-
Christopher Alfeld authored
tb-make-weighted-vtype.
-
Christopher Alfeld authored
-
Christopher Alfeld authored
-
Christopher Alfeld authored
-
Christopher Alfeld authored
-
Christopher Alfeld authored
make-vclass A 0.5 pc600 pc850 in the top file. And then have nodes of type A. Assign will try to put them all as either pc600 or pc850. Still need to write all the pre-assign stuff.
-
Leigh B. Stoller authored
not include a year in the output, so I was using the current year to init the tm structure. However, the log file could span from the old year to the new year, and so all the dates could be wrong. Using Mac's suggestion, look at the final time stamp, and if its in the future, reset it back one year. Also add [-a #] option to roll through the specified number of rotation files, to make the job of reinitting all the records easier. I ran it as "genlastlog -a 7", which makes it process logins.7.gz through logins.0.gz, before doing the current log.
-
Leigh B. Stoller authored
idleness is defined as an empty work queue. We still use join/leave messages, but the join message is so that the client can be informed of the number of blocks in the file. The leave message is strictly informational, and includes the elapsed time on the client, so that it can be written to the log file. If that message is lost, no big deal. I ran a 6 node test on this new code, and all the clients ran in 174 to 176 seconds, with frisbeed using 1% CPU on average (typically starts out at about 3%, and quickly drops off to steady state).
-
- 07 Jan, 2002 13 commits
-
-
Kirk Webb authored
Added entry to start "hmcd" - Healthd Master Collection Daemon on bootup. Noticed it wasn't running and recalled the recent machine room downtime - first reboot since hmcd was started up.
-
Robert Ricci authored
-
Robert Ricci authored
-
Robert Ricci authored
-
Robert Ricci authored
-
Robert Ricci authored
-
Leigh B. Stoller authored
requires the linux threads package to give us kernel level pthreads. From: Leigh Stoller <stoller@fast.cs.utah.edu> To: Testbed Operations <testbed-ops@fast.cs.utah.edu> Cc: Jay Lepreau <lepreau@cs.utah.edu> Subject: Frisbee Redux Date: Mon, 7 Jan 2002 12:03:56 -0800 Server: The server is multithreaded. One thread takes in requests from the clients, and adds the request to a work queue. The other thread processes the work queue in fifo order, spitting out the desrired block ranges. A request is a chunk/block/blockcount tuple, and most of the time the clients are requesting complete 1MB chunks. The exception of course is when individual blocks are lost, in which case the clients request just those subranges. The server it totally asynchronous; It maintains a list of who is "connected", but thats just to make sure we can time the server out after a suitable inactive time. The server really only cares about the work queue; As long as the queue si non empty, it spits out data. Client: The client is also multithreaded. One thread receives data packets and stuffs them in a chunkbuffer data structure. This thread also request more data, either to complete chunks with missing blocks, or to request new chunks. Each client can read ahead up 2 chunks, although with multiple clients it might actually be much further ahead as it also receives chunks that other clients requested. I set the number of chunk buffers to 16, although this is probably unnecessary as I will explain below. The other thread waits for chunkbuffers to be marked complete, and then invokes the imagunzip code on that chunk. Meanwhile, the other thread is busily getting more data and requesting/reading ahread, so that by the time the unzip is done, there is another chunk to unzip. In practice, the main thread never goes idle after the first chunk is received; there is always a ready chunk for it. Perfect overlap of I/O! In order to prevent the clients from getting overly synchronized (and causing all the clients to wait until the last client is done!), each client randomizes it block request order. This why we can retain the original frisbee name; clients end up catching random blocks flung out from the server until it has all the blocks. Performance: The single node speed is about 180 seconds for our current full image. Frisbee V1 compares at about 210 seconds. The two node speed was 181 and 174 seconds. The amount of CPU used for the two node run ranged from 1% to 4%, typically averaging about 2% while I watched it with "top." The main problem on the server side is how to keep boss (1GHZ with a Gbit ethernet) from spitting out packets so fast that 1/2 of them get dropped. I eventually settled on a static 1ms delay every 64K of packets sent. Nothing to be proud of, but it works. As mentioned above, the number of chunk buffers is 16, although only a few of them are used in practice. The reason is that the network transfer speed is perhaps 10 times faster than the decompression and raw device write speed. To know for sure, I would have to figure out the per byte transfer rate for 350 MBs via network, via the time to decompress and write the 1.2GB of data to the raw disk. With such a big difference, its only necessary to ensure that you stay 1 or 2 chunks ahead, since you can request 10 chunks in the time it takes to write one of them.
-
Leigh B. Stoller authored
duplicate this code in the frisbee tree, build a version suitable for linking in with frisbee. I also modified the FrisbeeRead interface to pass back pointers instead of copying the data. There is no real performance benefit that I noticed, but it made me feel better not to copy 350 MBs of data another time. There is new initialization function that is called by the frisbee main program to set up a few things.
-
Leigh B. Stoller authored
of start==end==0! This causes the entire disk to compressed a second time!
-
Mac Newbold authored
-
Christopher Alfeld authored
-
Christopher Alfeld authored
pclasses. This involved removing the heuristics, which, for the most part, were not worth the cycles they consumed, and scaled badly.
-
Leigh B. Stoller authored
-
- 04 Jan, 2002 1 commit
-
-
Robert Ricci authored
unixgroup_membershit table from the command line. Runs the appropriate commands to make changes in the 'real world' after the database has been updated. From the usage message: Usage: unixgroups <-h | -p | < <-a | -r> uid gid...> > -h This message -p Print group information -a uid gid... Add a user to one (or more) groups -r uid gid... Remove a user from one (or more) groups
-
- 03 Jan, 2002 6 commits
-
-
Robert Ricci authored
a note about suidperl.
-
Robert Ricci authored
so they'll have an address distinct from the 'classic' testbed lists.
-
Robert Ricci authored
config file.
-
Robert Ricci authored
INSTALL_APACHE_CONF in some places and INSTALL_APACHE_CONFIG in others. Oops.
-
Robert Ricci authored
unchanged to avoid setting up a new testbed-ops list, but this can be changed if it becomes a problem.
-
Robert Ricci authored
needed to build an emulab boss node in one convenient package. The config file gets run through autoconf to get the DocumentRoot, log, and other directories. There is an install target for it, but this is as yet unused by anything else. There is also a new configure option specifiying where the config file should go.
-