I've been doing performance evaluation of derby for a potential project (using dtrace on osx and sun) and noticed that recovery is still run after doing what I thought was a clean shutdown. I've stepped through derby10.4 (svn rev 751303) with java 6 and can see that recovery is being run and the three operations being applied are: start tx, checkpoint, then endtx.
Attached is a test program and copy of the dtrace output (showing file operations). The test program: 1) opens a connection to the db then closes it. 2) shuts down the db by opening a connection with ";shutdown=true" added to the url. 3) prompts for input (to add spacing to dtrace output/ start tracing) 4) repeats steps 1 & 2 -- starts on line 236 of attached dtrace output. Is there a way to close the DB to avoid the subsequent recovery actions on open? Not so much the recovery (i understand it has to check on startup) but the write/fsync of the log, log.ctrl, and logmirror.ctrl. Thanks, -Nick
**** START 1st OPEN/CLOSE *** 0 - open: opened fd=35 ns=20000 flags=0 path '/testDBHome/simpleDerbyTest/service.properties' 0 - read: read of size=851 ns=18000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 1 - read: read of size=0 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 1 - read: read of size=0 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/service.properties' 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - open: opened fd=35 ns=20000 flags=0 path '/testDBHome/simpleDerbyTest/log/log.ctrl' 1 - read: read of size=40 ns=20000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 1 - open: opened fd=35 ns=23000 flags=0 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - read: read of size=1 ns=16000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 0 - open: opened fd=35 ns=21000 flags=0 path '/testDBHome/simpleDerbyTest/service.properties' 0 - read: read of size=851 ns=15000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 0 - read: read of size=0 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 0 - read: read of size=0 ns=8000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 0 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/service.properties' 1 - read: read of size=1 ns=14000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - open: opened fd=35 ns=25000 flags=0 path '/testDBHome/simpleDerbyTest/log/log1.dat' 0 - read: read of size=1 ns=14000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=41000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=8000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=55 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=14000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 0 - read: read of size=1 ns=15000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - open: opened fd=35 ns=20000 flags=0 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=21 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=14000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=107 ns=22000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=20 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=14000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=55 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - open: opened fd=36 ns=24000 flags=514 path '/testDBHome/simpleDerbyTest/log/log.ctrl' 1 - write: write of size=48 ns=22000 to fd 36 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - fsync: fsync ns=1378000 fd=36 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 1 - close: close on fd=36 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 1 - open: opened fd=36 ns=30000 flags=514 path '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 1 - write: write of size=48 ns=30000 to fd 36 - /testDBHome/simpleDerbyTest/log/logmirror.ctrl 1 - fsync: fsync ns=250000 fd=36 - '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 1 - close: close on fd=36 - '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 1 - read: read of size=1 ns=15000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=21 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=33 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=17 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=14000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - open: opened fd=35 ns=22000 flags=514 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - open: opened fd=35 ns=17000 flags=642 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - open: opened fd=35 ns=18000 flags=642 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - open: opened fd=36 ns=22000 flags=514 path '/testDBHome/simpleDerbyTest/seg0/c10.dat' 1 - pread: read of size=204 ns=18000 at offset 0 from fd 36 - /testDBHome/simpleDerbyTest/seg0/c10.dat 0 - pread: read of size=4096 ns=24000 at offset 0 from fd 36 - /testDBHome/simpleDerbyTest/seg0/c10.dat 1 - pread: read of size=4096 ns=41000 at offset 4096 from fd 36 - /testDBHome/simpleDerbyTest/seg0/c10.dat 1 - open: opened fd=38 ns=25000 flags=514 path '/testDBHome/simpleDerbyTest/seg0/cc0.dat' 1 - pread: read of size=204 ns=20000 at offset 0 from fd 38 - /testDBHome/simpleDerbyTest/seg0/cc0.dat 1 - pread: read of size=4096 ns=17000 at offset 0 from fd 38 - /testDBHome/simpleDerbyTest/seg0/cc0.dat 1 - pread: read of size=4096 ns=15000 at offset 4096 from fd 38 - /testDBHome/simpleDerbyTest/seg0/cc0.dat 0 - open: opened fd=39 ns=24000 flags=514 path '/testDBHome/simpleDerbyTest/seg0/cd1.dat' 0 - pread: read of size=204 ns=18000 at offset 0 from fd 39 - /testDBHome/simpleDerbyTest/seg0/cd1.dat 0 - pread: read of size=4096 ns=21000 at offset 0 from fd 39 - /testDBHome/simpleDerbyTest/seg0/cd1.dat 0 - pread: read of size=4096 ns=15000 at offset 4096 from fd 39 - /testDBHome/simpleDerbyTest/seg0/cd1.dat 0 - write: write of size=144 ns=361000 to fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - fsync: fsync ns=216000 fd=40 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 0 - close: close on fd=40 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 0 - open: opened fd=40 ns=32000 flags=514 path '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 1 - open: opened fd=40 ns=27000 flags=514 path '/testDBHome/simpleDerbyTest/log/log.ctrl' 1 - write: write of size=48 ns=19000 to fd 40 - /testDBHome/simpleDerbyTest/log/log.ctrl 1 - write: write of size=48 ns=27000 to fd 40 - /testDBHome/simpleDerbyTest/log/logmirror.ctrl 1 - fsync: fsync ns=208000 fd=40 - '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 1 - close: close on fd=40 - '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 1 - close: close on fd=38 - '/testDBHome/simpleDerbyTest/seg0/cc0.dat' 1 - close: close on fd=39 - '/testDBHome/simpleDerbyTest/seg0/cd1.dat' 1 - close: close on fd=36 - '/testDBHome/simpleDerbyTest/seg0/c10.dat' 1 - open_nocancel: opened fd=36 ns=25000 flags=1048580 path '/testDBHome/simpleDerbyTest/tmp' 1 - close_nocancel: close on fd=36 - '/testDBHome/simpleDerbyTest/tmp' 1 - open_nocancel: opened fd=36 ns=22000 flags=1048580 path '/testDBHome/simpleDerbyTest' 1 - close_nocancel: close on fd=36 - '/testDBHome/simpleDerbyTest' 1 - open_nocancel: opened fd=36 ns=20000 flags=1048580 path '/testDBHome/simpleDerbyTest/seg0' 1 - close_nocancel: close on fd=36 - '/testDBHome/simpleDerbyTest/seg0' 1 - write: write of size=70 ns=256000 to fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - open_nocancel: opened fd=35 ns=21000 flags=1048580 path '/testDBHome/simpleDerbyTest/log' 1 - close_nocancel: close on fd=35 - '/testDBHome/simpleDerbyTest/log' **** START 2ND OPEN/CLOSE *** 0 - read: read of size=0 ns=16000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 1 - open: opened fd=35 ns=36000 flags=0 path '/testDBHome/simpleDerbyTest/service.properties' 1 - read: read of size=851 ns=29000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 0 - read: read of size=0 ns=16000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 0 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/service.properties' 0 - open: opened fd=35 ns=31000 flags=0 path '/testDBHome/simpleDerbyTest/log/log.ctrl' 0 - read: read of size=40 ns=20000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 0 - open: opened fd=35 ns=18000 flags=0 path '/testDBHome/simpleDerbyTest/log/log1.dat' 0 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 0 - read: read of size=0 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 0 - read: read of size=0 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 0 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/service.properties' 1 - open: opened fd=35 ns=19000 flags=0 path '/testDBHome/simpleDerbyTest/service.properties' 1 - read: read of size=851 ns=16000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/service.properties 1 - open: opened fd=35 ns=19000 flags=0 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=47000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=55 ns=33000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=15000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=31000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - open: opened fd=35 ns=18000 flags=0 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=58000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=21 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=107 ns=14000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=106000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=48000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=20 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=41000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=14000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=55 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - open: opened fd=36 ns=67000 flags=514 path '/testDBHome/simpleDerbyTest/log/log.ctrl' 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - write: write of size=48 ns=22000 to fd 36 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - fsync: fsync ns=297000 fd=36 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 0 - close: close on fd=36 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 0 - open: opened fd=36 ns=19000 flags=514 path '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 0 - write: write of size=48 ns=17000 to fd 36 - /testDBHome/simpleDerbyTest/log/logmirror.ctrl 0 - fsync: fsync ns=244000 fd=36 - '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 0 - close: close on fd=36 - '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 0 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=9000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=21 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - read: read of size=33 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=87000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=17 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=33000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=13000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=12000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=11000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - read: read of size=1 ns=10000 at offset -1 from fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - open: opened fd=35 ns=21000 flags=514 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - open: opened fd=35 ns=18000 flags=642 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 0 - open: opened fd=36 ns=19000 flags=514 path '/testDBHome/simpleDerbyTest/seg0/c10.dat' 0 - pread: read of size=204 ns=16000 at offset 0 from fd 36 - /testDBHome/simpleDerbyTest/seg0/c10.dat 0 - pread: read of size=4096 ns=15000 at offset 0 from fd 36 - /testDBHome/simpleDerbyTest/seg0/c10.dat 1 - open: opened fd=35 ns=17000 flags=642 path '/testDBHome/simpleDerbyTest/log/log1.dat' 1 - pread: read of size=4096 ns=16000 at offset 4096 from fd 36 - /testDBHome/simpleDerbyTest/seg0/c10.dat 0 - open: opened fd=38 ns=28000 flags=514 path '/testDBHome/simpleDerbyTest/seg0/cc0.dat' 0 - pread: read of size=204 ns=19000 at offset 0 from fd 38 - /testDBHome/simpleDerbyTest/seg0/cc0.dat 0 - pread: read of size=4096 ns=15000 at offset 0 from fd 38 - /testDBHome/simpleDerbyTest/seg0/cc0.dat 0 - pread: read of size=4096 ns=17000 at offset 4096 from fd 38 - /testDBHome/simpleDerbyTest/seg0/cc0.dat 0 - open: opened fd=39 ns=19000 flags=514 path '/testDBHome/simpleDerbyTest/seg0/cd1.dat' 0 - pread: read of size=204 ns=14000 at offset 0 from fd 39 - /testDBHome/simpleDerbyTest/seg0/cd1.dat 0 - pread: read of size=4096 ns=14000 at offset 0 from fd 39 - /testDBHome/simpleDerbyTest/seg0/cd1.dat 0 - pread: read of size=4096 ns=15000 at offset 4096 from fd 39 - /testDBHome/simpleDerbyTest/seg0/cd1.dat 1 - write: write of size=144 ns=321000 to fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - open: opened fd=40 ns=32000 flags=514 path '/testDBHome/simpleDerbyTest/log/log.ctrl' 0 - write: write of size=48 ns=20000 to fd 40 - /testDBHome/simpleDerbyTest/log/log.ctrl 0 - fsync: fsync ns=168000 fd=40 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 0 - close: close on fd=40 - '/testDBHome/simpleDerbyTest/log/log.ctrl' 0 - open: opened fd=40 ns=21000 flags=514 path '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 0 - write: write of size=48 ns=17000 to fd 40 - /testDBHome/simpleDerbyTest/log/logmirror.ctrl 1 - fsync: fsync ns=190000 fd=40 - '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 1 - close: close on fd=40 - '/testDBHome/simpleDerbyTest/log/logmirror.ctrl' 1 - close: close on fd=39 - '/testDBHome/simpleDerbyTest/seg0/cd1.dat' 1 - close: close on fd=36 - '/testDBHome/simpleDerbyTest/seg0/c10.dat' 1 - open_nocancel: opened fd=36 ns=27000 flags=1048580 path '/testDBHome/simpleDerbyTest/tmp' 1 - close_nocancel: close on fd=36 - '/testDBHome/simpleDerbyTest/tmp' 1 - open_nocancel: opened fd=36 ns=19000 flags=1048580 path '/testDBHome/simpleDerbyTest' 0 - close: close on fd=38 - '/testDBHome/simpleDerbyTest/seg0/cc0.dat' 0 - close_nocancel: close on fd=36 - '/testDBHome/simpleDerbyTest' 0 - open_nocancel: opened fd=36 ns=17000 flags=1048580 path '/testDBHome/simpleDerbyTest/seg0' 0 - close_nocancel: close on fd=36 - '/testDBHome/simpleDerbyTest/seg0' 0 - write: write of size=70 ns=264000 to fd 35 - /testDBHome/simpleDerbyTest/log/log1.dat 0 - close: close on fd=35 - '/testDBHome/simpleDerbyTest/log/log1.dat' 0 - open_nocancel: opened fd=35 ns=21000 flags=1048580 path '/testDBHome/simpleDerbyTest/log' 0 - close_nocancel: close on fd=35 - '/testDBHome/simpleDerbyTest/log'
DerbySimpleOpenClose.java
Description: Binary data
